nerdexam
Microsoft

MS-700 · Question #141

Your company uses Microsoft Teams. You have a meeting policy named Policy1 that is assigned to a group named Sales. You need to ensure that all the meetings recorded by the Sales group are stored…

This question tests knowledge of configuring Microsoft Teams meeting recording retention via PowerShell. Specifically, it asks how to set recordings from a named meeting policy to be stored indefinitely.

Manage meetings and calling

Question

Your company uses Microsoft Teams. You have a meeting policy named Policy1 that is assigned to a group named Sales. You need to ensure that all the meetings recorded by the Sales group are stored indefinitely. How should you complete the PowerShell cmdlet? To answer, select the appropriate options in the answer area. NOTE: Each correct selection is worth one point.

Explanation

This question tests knowledge of configuring Microsoft Teams meeting recording retention via PowerShell. Specifically, it asks how to set recordings from a named meeting policy to be stored indefinitely.

Approach. The correct PowerShell cmdlet is: Set-CsTeamsMeetingPolicy -Identity Policy1 -MeetingRecordingExpirationDays -1. The cmdlet Set-CsTeamsMeetingPolicy is used to modify an existing Teams meeting policy. The -Identity parameter targets the specific policy (Policy1). The key parameter is -MeetingRecordingExpirationDays, which controls how long meeting recordings are retained before automatic deletion. Setting this value to -1 disables expiration entirely, meaning recordings are stored indefinitely and never automatically deleted.

Concept tested. Microsoft Teams meeting policy administration via PowerShell - specifically the Set-CsTeamsMeetingPolicy cmdlet and the MeetingRecordingExpirationDays parameter. A value of -1 means no expiration (indefinite retention), while any positive integer sets a day-count limit. This is a Teams PowerShell / Microsoft 365 admin skill tested in MS-700 (Managing Microsoft Teams) and related certifications.

Reference. https://learn.microsoft.com/en-us/powershell/module/teams/set-csteamsmeetingpolicy

Topics

#Meeting Policies#Meeting Recordings#Retention#PowerShell

Community Discussion

No community discussion yet for this question.

Full MS-700 Practice