Microsoft Microsoft Certifications MS-700 Questions & Answers
Question 11:
SIMULATION Please wait while the virtual machine loads. Once loaded, you may proceed to the lab section. This may take a few minutes, and the wait time will not be deducted from your overall test time. When the Next button is available, click it to access the lab section. In this section, you will perform a set of tasks in a live environment. While most functionality will be available to you as it would be in a live environment, some functionality
(e.g. copy and paste, ability to navigate to external websites) will not be possible by design.
Scoring is based on the outcome of performing the tasks stated in the lab. In other words, it doesn't matter how you accomplish the task, if you successfully perform it, you will earn credit for that task.
Labs are not timed separately, and this exam may have more than one lab that you must complete. You can use as much time as you would like to complete each lab. But you should manage your time appropriately to ensure that you are
able to complete the lab(s) and all other sections of the exam in the time provided.
Please not that once you submit your work by clicking the Next button within a lab, you will NOT be able to return to the lab.
You may now click next to proceed to the lab.
Username and password.
Use the following login credentials as needed:
To enter your username, place your cursor in the Sign in box and click on the username below.
To enter your password, place your cursor in the Enter password box and click on the password below.
If the Microsoft 365 portal does not load successfully in the browser, press CTRL-K to reload the portal in a new browser tab.
The following information is for technical support purposes only:
Lab Instance: 26178313
Task 2
You need to configure only the Teams meeting invites of Allan Deyoung to first show a dial-in bridge number in Toronto, and then show a dial-in bridge number in Paris in the body of his invites.
To complete this task, sign in to the Microsoft 365 portal.
Correct Answer: Check the answer in explanation.
Teams meeting invites dial-in bridge number
Set or change the default audio conferencing phone number for a meeting organizer or user individually.
Step 1: Log in to the Microsoft Teams admin center.
Step 2: In the left navigation, click Users.
Step 3: Click the user name Allan Deyoung from the list of available users.
Step 4: Next to Audio Conferencing, click Edit.
Step 5: Set the Default conferencing toll number to the Toronto dial-in bridge number.
Step 6: Set Invites from this user can include toll-free number to On, and specify the Paris dial-in bridge number.
Your company uses Teams and deploys the Yammer Communities app to all users.
The communications department at the company needs you to replace the image on the Teams app bar for the Communities app.
Which three actions should you perform in sequence? To answer, drag the appropriate reports to the correct requirements. Each report may be used once, more than once, or not at all.
Select and Place:
Correct Answer:
Question 13:
DRAG DROP
Your company uses Teams.
You need to configure Teams apps to meet the following requirements:
1.
Block members of a team named Sales from installing custom apps.
2.
Pin apps in a specific order on the Teams app bar.
Which settings should you configure to meet each requirement? To answer, drag the appropriate settings options to the correct requirements. Each settings option may be used once, more than once, or not at all. You may need to drag the
split bar between panes or scroll to view content.
NOTE: Each correct selection is worth one point.
Select and Place:
Correct Answer:
Question 14:
DRAG DROP
You have a Microsoft 365 subscription that uses Microsoft Teams.
You need to identify the following information:
1.
The number of chat messages sent during the past 30 days
2.
The number of messages posted in specific channels during the past 90 days
Which reports should use? To answer, drag the appropriate reports to the correct pieces of information. Each report may be used once, more than once, or not at all. You may need to drag the split bar between panes or scroll to view content.
NOTE: Each correct selection is worth one point.
Select and Place:
Correct Answer:
Question 15:
DRAG DROP
Your company uses Teams.
Two users named User1 and User2 use the Teams client for Windows.
The users report the following issues:
1.
User1 reports that when attempting to sign in, the Teams client remains on the sign-in page.
2.
User2 reports receiving an error when attempting to screen share during a Teams meeting.
You need to troubleshoot the issues.
Which client-side log should you review for each user? To answer, drag the appropriate logs to the correct users. Each log may be used once, more than once, or not at all. You may need to drag the split bar between panes or scroll to view
content.
NOTE: Each correct selection is worth one point.
Select and Place:
Correct Answer:
Question 16:
DRAG DROP
You have a Microsoft 365 E5 subscription that uses Microsoft Teams.
You need to ensure that the users in your organization can communicate with external users who use Teams for personal use.
How should you complete the PowerShell cmdlets? To answer, drag the appropriate values to the correct targets. Each value may be used once, more than once, or not at all. You may need to drag the split bar between panes or scroll to view content.
NOTE: Each correct selection is worth one point.
Select and Place:
Correct Answer:
Set-CsTenantFederationConfiguration manages federation configuration settings for your Skype for Business Online tenants. These settings are used to determine which domains (if any) your users are allowed to communicate with.
When set to True (the default value) users will be potentially allowed to communicate with users from other domains. If this property is set to False then users cannot communicate with users from other domains regardless of the values
assigned to the AllowedDomains and BlockedDomains properties.
Box 2: -AllowTeamsConsumer
-AllowTeamsConsumer
Allows federation with people using Teams with an account that's not managed by an organization.
Incorrect:
–AllowedDomains
Function to add allowed domain for Teams federation.
function Enable-TeamsFederationForAllowedDomainsOnly
-AllowPublicUsers
When set to True (the default value) users will be potentially allowed to communicate with users who have accounts on public IM and presence providers such as Windows Live, Yahoo, and AOL. The collection of public providers that users
can actually communicate with is managed by using the Set-CsTenantPublicProvider cmdlet.
You have a Microsoft 365 E5 subscription that contains a Microsoft Teams team named Confidential.
You need to ensure that guest users cannot be added to the Confidential team.
How should you complete the PowerShell script? To answer, drag the appropriate values to the correct targets. Each value may be used once, more than once, or not at all. You may need to drag the split bar between panes or scroll to view content.
NOTE: Each correct selection is worth one point.
Select and Place:
Correct Answer:
Box 1: Get-AzureADDirectorySettingTemplate See step 2 below.
Azure Active Directory cmdlets for configuring group settings Create settings at the directory level These steps create settings at directory level, which apply to all Microsoft 365 groups in the directory. The Get-AzureADDirectorySettingTemplate cmdlet is available only in the Azure AD PowerShell Preview module for Graph.
1.
In the DirectorySettings cmdlets, you must specify the ID of the SettingsTemplate you want to use. If you do not know this ID, this cmdlet returns the list of all settings templates:
Get-AzureADDirectorySettingTemplate
This cmdlet call returns all templates that are available.
2.
To add a usage guideline URL, first you need to get the SettingsTemplate object that defines the usage guideline URL value; that is, the Group.Unified template:
$TemplateId = (Get-AzureADDirectorySettingTemplate | where { $_.DisplayName -eq "Group.Unified" }).Id $Template = Get-AzureADDirectorySettingTemplate | where -Property Id -Value $TemplateId -EQ
3.
Next, create a new settings object based on that template: $Setting = $Template.CreateDirectorySetting()
4.
Then update the settings object with a new value. The two examples below change the usage guideline value and enable sensitivity labels. Set these or any other setting in the template as required:
Example: Configure Guest policy for groups at the directory level
1.
Get all the setting templates:
2.
Get-AzureADDirectorySettingTemplate To set guest policy for groups at the directory level, you need Group.Unified template
$Template = Get-AzureADDirectorySettingTemplate | where -Property Id -Value "62375ab9-6b52-47ed-826b-58e47e0e304b" -EQ
3.
Next, create a new settings object based on that template: $Setting = $template.CreateDirectorySetting()
4.
Then update AllowToAddGuests setting $Setting["AllowToAddGuests"] = $False
5.
Then apply the setting:
Set-AzureADDirectorySetting -Id (Get-AzureADDirectorySetting | where -Property DisplayName -Value "Group.Unified" -EQ).id -DirectorySetting $Setting Example: Configure Guest policy for groups at the directory level Reference: https://learn.microsoft.com/en-us/azure/active-directory/enterprise-users/groups-settings-cmdlets
Question 18:
DRAG DROP
Your company has a trading department and a research department.
The company purchases a Microsoft 365 E5 subscription.
You plan to deploy Microsoft 365 E5 licenses to all users.
You need to block communication between the users in the trading department and the users in the research department.
Which four actions should you perform in sequence? To answer, move the appropriate actions from the list of actions to the answer area and arrange them in the correct order.
Select and Place:
Correct Answer:
Step 1: From the Microsoft Teams admin center, enable scoped directory search.
1: Make sure prerequisites are met Make sure prerequisites are met
Scoped directory search: Before you define your organization's first IB policy, you must enable scoped directory search in Microsoft Teams. Wait at least 24 hours after enabling scoped directory search before you set up or define IB policies. (Step 1)
Step 3: Provide admin consent for the Information Barrier Processor.
Admin consent for IB in Microsoft Teams: When your IB policies are in place, they can remove non-IB compliance users from Groups (for example, Teams channels, which are based on groups). This configuration helps ensure your organization remains compliant with policies and regulations.
Etc.
Step 2: Make a list of segments to define.
2: Segment users in your organization
In this step, you'll determine what IB policies are needed, make a list of segments to define, and define your segments. Defining segments doesn't affect users, it just sets the stage for IB policies to be defined and then applied.
Step 4: Create information barrier policies
3: Create IB policies
When you create your IB policies, you'll determine whether you need to prevent communications between certain segments or limit communications to certain segments. Ideally, you'll use the minimum number of IB policies to ensure your
organization is compliant with internal, legal, and industry requirements.
4: Apply IB policies
IB policies aren't in effect until you set them to active status and apply the policies.
All users are assigned a Microsoft 365 E3 license.
You need to purchase add-on licenses that will enable the following features for the Teams environment:
1.
Microsoft Purview Information Barriers
2.
Data loss prevention (DLP) for Teams chat and channel messages
3.
Safe attachments for Microsoft SharePoint, OneDrive, and Teams
Which add-on license should you purchase for each feature? To answer, drag the appropriate licenses to the correct features. Each license may be used once, more than once, or not at all. You may need to drag the split bar between panes or scroll to view content.
NOTE: Each correct selection is worth one point.
Select and Place:
Correct Answer:
Box 1: Microsoft 365 E5 Compliance
Data loss prevention (DLP) for Teams chat and channel messages
Data loss prevention and Microsoft Teams
If your organization has Microsoft Purview Data Loss Prevention (DLP), you can define policies that prevent people from sharing sensitive information in a Microsoft Teams channel or chat session.
DLP Licensing for Microsoft Teams
Data loss prevention capabilities include Microsoft Teams chat and channel messages, including private channel messages for:
Office 365 E5/A5/G5
Microsoft 365 E5/A5/G5
Microsoft 365 E5/A5/G5 Information Protection and Governance
Microsoft 365 E5/A5/G5/F5 Compliance and F5 Security and Compliance
Office 365 and Microsoft 365 E3 include DLP protection for SharePoint Online, OneDrive, and Exchange Online. This also includes files that are shared through Teams because Teams uses SharePoint Online and OneDrive to share files.
Support for DLP protection in Teams Chat requires E5.
Box 2: Microsoft Defender for Office 365 plan 1
Safe attachments for Microsoft SharePoint, OneDrive, and Teams
Safe Attachments in Microsoft Defender for Office 365
Applies to
Microsoft Defender for Office 365 plan 1 and plan 2
Microsoft 365 Defender
Safe Attachments in Microsoft Defender for Office 365 provides an additional layer of protection for email attachments that have already been scanned by anti-malware protection in Exchange Online Protection (EOP). Specifically, Safe
Attachments uses a virtual environment to check attachments in email messages before they're delivered to recipients (a process known as detonation).
Box 3: Microsoft 365 E5 Compliance,
Microsoft Purview Information Barriers
Which licenses provide the rights for a user to benefit from the service?
Enterprise Mobility + Security E5/A5, Microsoft 365 E5/A5, Microsoft 365 E5/A5/F5 Security and F5 Security and Compliance, and Azure Active Directory Premium Plan 2 provide the rights for a user to benefit from Azure Active Directory Identity
Nowadays, the certification exams become more and more important and required by more and more enterprises when applying for a job. But how to prepare for the exam effectively? How to prepare for the exam in a short time with less efforts? How to get a ideal result and how to find the most reliable resources? Here on Vcedump.com, you will find all the answers. Vcedump.com provide not only Microsoft exam questions, answers and explanations but also complete assistance on your exam preparation and certification application. If you are confused on your MS-700 exam preparations and Microsoft certification application, do not hesitate to visit our Vcedump.com to find your solutions here.