You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: skype/skype-ps/skype/Get-CsTeamsMeetingPolicy.md
+11Lines changed: 11 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -61,6 +61,17 @@ The preceding command returns a collection of all the meeting policies where the
61
61
To do this, Get-CsTeamsMeetingPolicy is first called without any parameters in order to return a collection of all the policies configured for use in the organization.
62
62
This collection is then piped to the Where-Object cmdlet, which selects only those policies where the AllowMeetNow property is equal to True.
63
63
64
+
### -------------------------- Example 4 --------------------------
65
+
```
66
+
Get-CsTeamsMeetingPolicy -Identity Global | fl NewMeetingRecordingExpirationDays
67
+
68
+
NewMeetingRecordingExpirationDays : 60
69
+
```
70
+
71
+
The above command returns expiration date setting currently applied on TMR. Additional details:
0 commit comments