exam questions

Exam MS-300 All Questions

View all questions & answers for the MS-300 exam

Exam MS-300 topic 1 question 16 discussion

Actual exam question from Microsoft's MS-300
Question #: 16
Topic #: 1
[All MS-300 Questions]

HOTSPOT -
You have a Microsoft 365 subscription.
You need to ensure that when users create a site, they can specify the sensitivity of the site.
How should you complete the command? To answer, select the appropriate options in the answer area.
NOTE: Each correct selection is worth one point.
Hot Area:

Show Suggested Answer Hide Answer
Suggested Answer: Explanation
References:
https://docs.microsoft.com/en-us/sharepoint/dev/solution-guidance/modern-experience-site-classification

Comments

Chosen Answer:
This is a voting comment (?). It is better to Upvote an existing comment if you don't have anything to add.
Switch to a voting comment New
Ye
Highly Voted 5 years, 6 months ago
ClassificationList New-AzureAddDirectorySetting
upvoted 11 times
...
navefrite
Most Recent 5 years, 2 months ago
https://docs.microsoft.com/ko-kr/sharepoint/dev/solution-guidance/modern-experience-site-classification # Install the Azure AD Preview Module for PowerShell Install-Module AzureADPreview # Connect to Azure AD Connect-AzureAD # Create new directory setting and set initial values $template = Get-AzureADDirectorySettingTemplate | where { $_.DisplayName -eq "Group.Unified" } $setting = $template.CreateDirectorySetting() $setting["UsageGuidelinesUrl"] = "https://aka.ms/sppnp" $setting["ClassificationList"] = "HBI, MBI, LBI, GDPR" $setting["DefaultClassification"] = "MBI" New-AzureADDirectorySetting -DirectorySetting $setting
upvoted 2 times
...
Community vote distribution
A (35%)
C (25%)
B (20%)
Other
Most Voted
A voting comment increases the vote count for the chosen answer by one.

Upvoting a comment with a selected answer will also increase the vote count towards that answer by one. So if you see a comment that you already agree with, you can upvote it instead of posting a new comment.

SaveCancel
Loading ...