Skip to content

Commit a1e0fb3

Browse files
authored
Merge pull request MicrosoftDocs#8253 from dariomws/patch-245
Added MeetingRecordingExpirationDays to New-CsTeamsMeetingPolicy.md
2 parents 2a2d922 + 56f1023 commit a1e0fb3

File tree

2 files changed

+35
-10
lines changed

2 files changed

+35
-10
lines changed

skype/skype-ps/skype/New-CsTeamsMeetingPolicy.md

Lines changed: 20 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ New-CsTeamsMeetingPolicy [-Tenant <Guid>] [-Description <String>]
3232
[-AllowBreakoutRooms <String] [-TeamsCameraFarEndPTZMode <String>] [-AllowMeetingReactions <Boolean>] [-MeetingChatEnabledType <String>]
3333
[-AllowMeetingRegistration <Boolean>] [-AllowRecordingStorageOutsideRegion <Boolean>] [-AllowScreenContentDigitization <Boolean>]
3434
[-AllowTrackingInReport <Boolean>] [-LiveCaptionsEnabledType <String>] [-RecordingStorageMode <String>] [-RoomAttributeUserOverride <String>]
35-
[-SpeakerAttributionMode <String>] [-WhoCanRegister <Object>]
35+
[-SpeakerAttributionMode <String>] [-WhoCanRegister <Object>] [-MeetingRecordingExpirationDays <Int32>]
3636
[-InMemory] [-Force] [-WhatIf] [-Confirm] [<CommonParameters>]
3737
```
3838

@@ -884,6 +884,25 @@ Accept pipeline input: False
884884
Accept wildcard characters: False
885885
```
886886
887+
### -MeetingRecordingExpirationDays
888+
Specifies the number of days before meeting recordings will expire and move to the recycle bin. Value can be from 1 to 99,999 days.
889+
890+
Note: You may opt to set Meeting Recordings to never expire by entering the value -1.
891+
892+
Note: This parameter isn't yet available to be set. We'll publish an updated message center post when the setting is available for modification. Please refer to the [roadmap (Feature ID: 84580)](https://www.microsoft.com/microsoft-365/roadmap?searchterms=82057&filters=&searchterms=84580) for more information on its delivery date.
893+
894+
```yaml
895+
Type: Int32
896+
Parameter Sets: (All)
897+
Aliases:
898+
899+
Required: False
900+
Position: Named
901+
Default value: None
902+
Accept pipeline input: False
903+
Accept wildcard characters: False
904+
```
905+
887906
## INPUTS
888907
889908
### None

skype/skype-ps/skype/Set-CsTeamsMeetingPolicy.md

Lines changed: 15 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,9 @@ Set-CsTeamsMeetingPolicy [-Tenant <Guid>] [-Description <String>]
3434
[-DesignatedPresenterRoleMode <String>] [-AllowIPAudio <Boolean>] [-AllowOrganizersToOverrideLobbySettings <Boolean>]
3535
[-AllowUserToJoinExternalMeeting <String>] [-EnrollUserOverride <String>] [-StreamingAttendeeMode <String]
3636
[-AllowBreakoutRooms <Boolean>] [-TeamsCameraFarEndPTZMode <String>] [-AllowMeetingReactions <Boolean>]
37-
[-AllowMeetingRegistration <Boolean>] [-AllowScreenContentDigitization <Boolean>] [-AllowTrackingInReport <Boolean>] [-RoomAttributeUserOverride <String>] [-SpeakerAttributionMode <String>] [-WhoCanRegister <String>] [-ChannelRecordingDownload <String>] [-Force] [-WhatIf] [-Confirm] [<CommonParameters>]
37+
[-AllowMeetingRegistration <Boolean>] [-AllowScreenContentDigitization <Boolean>] [-AllowTrackingInReport <Boolean>] [-RoomAttributeUserOverride <String>]
38+
[-SpeakerAttributionMode <String>] [-WhoCanRegister <String>] [-ChannelRecordingDownload <String>] [-MeetingRecordingExpirationDays <Int32>]
39+
[-Force] [-WhatIf] [-Confirm] [<CommonParameters>]
3840
```
3941

4042
### Instance
@@ -55,7 +57,9 @@ Set-CsTeamsMeetingPolicy [-Tenant <Guid>] [-Description <String>]
5557
[-AllowUserToJoinExternalMeeting <String>] [-EnrollUserOverride <String>] [-StreamingAttendeeMode <String]
5658
[-MeetingRecordingExpirationDays <Int32>]
5759
[-AllowBreakoutRooms <Boolean>] [-TeamsCameraFarEndPTZMode <String>] [-AllowMeetingReactions <Boolean>]
58-
[-AllowMeetingRegistration <Boolean>] [-AllowScreenContentDigitization <Boolean>] [-AllowTrackingInReport <Boolean>] [-RoomAttributeUserOverride <String>] [-SpeakerAttributionMode <String>] [-WhoCanRegister <String>] [-ChannelRecordingDownload <String>] [-Force] [-WhatIf] [-Confirm] [<CommonParameters>]
60+
[-AllowMeetingRegistration <Boolean>] [-AllowScreenContentDigitization <Boolean>] [-AllowTrackingInReport <Boolean>] [-RoomAttributeUserOverride <String>]
61+
[-SpeakerAttributionMode <String>] [-WhoCanRegister <String>] [-ChannelRecordingDownload <String>]
62+
[-Force] [-WhatIf] [-Confirm] [<CommonParameters>]
5963
```
6064

6165
## DESCRIPTION
@@ -849,6 +853,7 @@ Possible values:
849853
Type: Boolean
850854
Parameter Sets: (All)
851855
Aliases:
856+
852857
Required: False
853858
Position: Named
854859
Default value: True
@@ -863,6 +868,7 @@ This parameter is reserved for internal Microsoft use.
863868
Type: Boolean
864869
Parameter Sets: (All)
865870
Aliases:
871+
866872
Required: False
867873
Position: Named
868874
Default value: None
@@ -877,6 +883,7 @@ This parameter is reserved for internal Microsoft use.
877883
Type: Boolean
878884
Parameter Sets: (All)
879885
Aliases:
886+
880887
Required: False
881888
Position: Named
882889
Default value: None
@@ -895,6 +902,7 @@ Possible values:
895902
Type: String
896903
Parameter Sets: (All)
897904
Aliases:
905+
898906
Required: False
899907
Position: Named
900908
Default value: None
@@ -912,6 +920,7 @@ Possible values:
912920
Type: String
913921
Parameter Sets: (All)
914922
Aliases:
923+
915924
Required: False
916925
Position: Named
917926
Default value: None
@@ -920,19 +929,18 @@ Accept wildcard characters: False
920929
```
921930
922931
### -WhoCanRegister
923-
924932
Controls the attendees who can attend a webinar meeting. The default is Everyone, meaning that everyone can register. If you want to restrict registration to internal accounts set the value to 'EveryoneInCompany'.
925933
926934
Possible values:
927935
928936
- Everyone
929937
- EveryoneInCompany
930938
931-
932939
```yaml
933940
Type: String
934941
Parameter Sets: (All)
935942
Aliases:
943+
936944
Required: False
937945
Position: Named
938946
Default value: Everyone
@@ -941,17 +949,15 @@ Accept wildcard characters: False
941949
```
942950
943951
### -MeetingRecordingExpirationDays
944-
945952
Specifies the number of days before meeting recordings will expire and move to the recycle bin. Value can be from 1 to 99,999 days.
946953
947-
> [!NOTE]
948-
> You may opt to set Meeting Recordings to never expire by entering the value -1.
949-
954+
Note: This parameter isn't yet available to be set. We'll publish an updated message center post when the setting is available for modification. For more information about its delivery date, see the [roadmap (Feature ID: 84580)](https://www.microsoft.com/microsoft-365/roadmap?searchterms=82057&filters=&searchterms=84580).
950955
951956
```yaml
952957
Type: Int32
953958
Parameter Sets: (All)
954959
Aliases:
960+
955961
Required: False
956962
Position: Named
957963
Default value: None
@@ -961,7 +967,6 @@ Accept wildcard characters: False
961967
962968
963969
### -ChannelRecordingDownload
964-
965970
Controls how channel meeting recordings are saved, permissioned, and who can download them.
966971
967972
Possible values:
@@ -975,6 +980,7 @@ Possible values:
975980
Type: String
976981
Parameter Sets: (All)
977982
Aliases:
983+
978984
Required: False
979985
Position: Named
980986
Default value: Allow

0 commit comments

Comments
 (0)