MS-500 Exam QuestionsBrowse all questions from this exam

MS-500 Exam - Question 270


You have a Microsoft 365 subscription.

You have a team named Team1 in Microsoft Teams.

You plan to place all the content in Team1 on hold.

You need to identify which mailbox and which Microsoft SharePoint site collection are associated to Team1.

Which cmdlet should you use?

Show Answer
Correct Answer: A

To identify the mailbox and SharePoint site collection associated with a team in Microsoft Teams, you should use the Get-UnifiedGroup cmdlet. This cmdlet allows you to retrieve information about Office 365 Groups, which are the underlying structure for teams in Microsoft Teams. The details you can get include the group's email address and the SharePoint site collection URL, which are the items you need to place the content on hold.

Discussion

3 comments
Sign in to comment
kiketxu
Mar 16, 2021

Correct. https://docs.microsoft.com/en-us/powershell/module/exchange/get-unifiedgroup?view=exchange-ps

AjayGadge
Jul 16, 2021

Get-UnifiedGroup -Identity "*Team1*" | Select -ExpandProperty SharePointSiteURL Get-UnifiedGroup -Identity "*Team1*" -ResultSize Unlimited | Select DisplayName,EmailAddresses,Notes,ManagedBy,AccessType

mkoprivnjOption: A
Dec 2, 2021

A is correct!