Skip to content

Commit 5b6f258

Browse files
authored
Merge branch 'master' into patch-356
2 parents 9093a58 + 3e49259 commit 5b6f258

12 files changed

+170
-29
lines changed

exchange/exchange-ps/exchange/Get-ExternalInOutlook.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ ms.reviewer:
1414
## SYNOPSIS
1515
This cmdlet is available only in the cloud-based service.
1616

17-
Use the Get-ExternalInOutlook cmdlet to view the configuration of external sender identification that's available in supported versions of Outlook. Currently, this feature is supported in Outlook on the web and Outlook for iOS and Android.
17+
Use the Get-ExternalInOutlook cmdlet to view the configuration of external sender identification that's available in Outlook, Outlook for Mac, Outlook on the web, and Outlook for iOS and Android.
1818

1919
**Note**: We recommend that you use the Exchange Online PowerShell V2 module to connect to Exchange Online PowerShell. For instructions, see [Connect to Exchange Online PowerShell](https://docs.microsoft.com/powershell/exchange/connect-to-exchange-online-powershell).
2020

exchange/exchange-ps/exchange/New-OrganizationSegment.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ In this example, we defined a segment called NotSales that includes everyone who
5050

5151
### Example 3
5252
```powershell
53-
New-OrganizationSegment -Name "LocalFTE" -UserGroupFilter "Location -eq 'Local'" -and "Position -ne 'Temporary'"
53+
New-OrganizationSegment -Name "LocalFTE" -UserGroupFilter "Location -eq 'Local' -and Position -ne 'Temporary'"
5454
```
5555

5656
In this example, we defined a segment called LocalFTE that includes people who are locally located and whose positions are not listed as Temporary.

exchange/exchange-ps/exchange/Set-ExternalInOutlook.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ ms.reviewer:
1414
## SYNOPSIS
1515
This cmdlet is available only in the cloud-based service.
1616

17-
Use the Set-ExternalInOutlook cmdlet to modify the configuration of external sender identification that's available in supported versions of Outlook. Currently, this feature is supported in Outlook on the web and Outlook for iOS and Android.
17+
Use the Set-ExternalInOutlook cmdlet to modify the configuration of external sender identification that's available in Outlook, Outlook for Mac, Outlook on the web, and Outlook for iOS and Android.
1818

1919
**Note**: We recommend that you use the Exchange Online PowerShell V2 module to connect to Exchange Online PowerShell. For instructions, see [Connect to Exchange Online PowerShell](https://docs.microsoft.com/powershell/exchange/connect-to-exchange-online-powershell).
2020

exchange/exchange-ps/exchange/Set-OrganizationConfig.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -398,7 +398,7 @@ In Exchange Online, this example results in meeting updates being auto-processed
398398
## PARAMETERS
399399

400400
### -ShortenEventScopeDefault
401-
This parameter is available only in the cloud-based service
401+
This parameter is available only in the cloud-based service.
402402

403403
The ShortenEventScopeDefault parameter specifies whether calendar events start late or end early in the organization. Valid values are:
404404

exchange/exchange-ps/exchange/Set-User.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -638,6 +638,8 @@ Accept wildcard characters: False
638638
### -MobilePhone
639639
The MobilePhone parameter specifies the user's primary mobile phone number.
640640

641+
**Note**: In Exchange Online, you can't use this parameter. Instead, use the Mobile parameter on the Set-AzureAdUser cmdlet in Azure AD PowerShell.
642+
641643
```yaml
642644
Type: String
643645
Parameter Sets: (All)
@@ -786,6 +788,8 @@ Accept wildcard characters: False
786788
### -Phone
787789
The Phone parameter specifies the user's office telephone number.
788790

791+
**Note**: In Exchange Online, you can't use this parameter. Instead, use the TelephoneNumber parameter on the Set-AzureAdUser cmdlet in Azure AD PowerShell.
792+
789793
```yaml
790794
Type: String
791795
Parameter Sets: (All)

sharepoint/sharepoint-ps/sharepoint-server/Set-SPWebApplication.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -56,9 +56,10 @@ For permissions and the most current information about Windows PowerShell for Sh
5656

5757
## EXAMPLES
5858

59-
### ------------------EXAMPLE-----------------------
59+
### EXAMPLE
6060
```
61-
Get-SPWebApplication http://somesite | Set-SPWebApplication -Zone "Extranet" -HostHeader "http://www.contoso.com" - AllowAnonymousAccess
61+
$ap = New-SPAuthenticationProvider -AllowAnonymous
62+
Set-SPWebApplication http://somesite -Zone "Extranet" -HostHeader "http://www.contoso.com" -AuthenticationProvider $ap
6263
```
6364

6465
This example sets the HostHeader URL for the Extranet zone of the given Web application as http://www.contoso.com and enables anonymous access.

skype/skype-ps/skype/New-CsOnlineVoicemailPolicy.md

Lines changed: 45 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,20 +13,29 @@ ms.reviewer:
1313
# New-CsOnlineVoicemailPolicy
1414

1515
## SYNOPSIS
16-
Creates a new Online Voicemail policy. Online Voicemail policies determine whether or not voicemail transcription, profanity masking for the voicemail transcriptions, translation for the voicemail transcriptions, and editing call answer rule settings are enabled for a user. The policies also specify voicemail maximum recording length for a user.
16+
Creates a new Online Voicemail policy. Online Voicemail policies determine whether or not voicemail transcription, profanity masking for the voicemail transcriptions, translation for the voicemail transcriptions, and editing call answer rule settings are enabled for a user. The policies also specify voicemail maximum recording length for a user and the primary and secondary voicemail system prompt languages.
1717

1818
## SYNTAX
1919

2020
```
2121
New-CsOnlineVoicemailPolicy -Identity <XdsIdentity> [-Tenant <Guid>] [-EnableTranscription <Boolean>] [-ShareData <String>]
22-
[-EnableTranscriptionProfanityMasking <Boolean>] [-EnableTranscriptionTranslation <Boolean>] [-EnableEditingCallAnswerRulesSetting <Boolean>] [-MaximumRecordingLength <Duration>] [-Force] [-WhatIf] [-Confirm]
22+
[-EnableTranscriptionProfanityMasking <Boolean>] [-EnableTranscriptionTranslation <Boolean>] [-EnableEditingCallAnswerRulesSetting <Boolean>] [-MaximumRecordingLength <Duration>] [-PrimarySystemPromptLanguage <String>] [-SecondarySystemPromptLanguage <String>] [-Force] [-WhatIf] [-Confirm]
2323
[<CommonParameters>]
2424
```
2525

2626
## DESCRIPTION
2727
Online Voicemail service provides organizations with voicemail deposit capabilities for Phone System implementation.
2828

29-
By default, users enabled for Phone System will be enabled for Online Voicemail, and Online Voicemail policy controls whether or not voicemail transcription, profanity masking for the voicemail transcriptions, translation for the voicemail transcriptions, and editing call answer rule settings are enabled for a user. The policies also specify voicemail maximum recording length for a user. Online Voicemail transcription is enabled by default, transcription profanity masking is disabled by default, transcription translation is enabled by default, editing call answer rule settings is enabled by default, and voicemail maximum recording length is set to 5 minutes by default. Tenant admin would be able to create customized online voicemail policy to match the organization's requirements.
29+
By default, users enabled for Phone System will be enabled for Online Voicemail. The Online Voicemail policy controls whether or not voicemail transcription, profanity masking for the voicemail transcriptions, translation for the voicemail transcriptions, and editing call answer rule settings are enabled for a user. The policies also specify the voicemail maximum recording length for a user and the primary and secondary voicemail system prompt languages.
30+
31+
- Online Voicemail transcription is enabled by default
32+
- Transcription profanity masking is disabled by default
33+
- Transcription translation is enabled by default
34+
- Editing call answer rule settings is enabled by default
35+
- Voicemail maximum recording length is set to 5 minutes by default
36+
- Primary and secondary system prompt languages are set to null by default and the user's voicemail language setting is used
37+
38+
Tenant admin would be able to create a customized online voicemail policy to match the organization's requirements.
3039

3140
## EXAMPLES
3241

@@ -136,6 +145,39 @@ Accept pipeline input: False
136145
Accept wildcard characters: False
137146
```
138147
148+
### -PrimarySystemPromptLanguage
149+
The primary (or first) language that voicemail system prompts will be presented in. Must also set SecondarySystemPromptLanguage. When set, this overrides the user language choice. Please see [Set-CsOnlineVoicemailUserSettings](/powershell/module/skype/set-csonlinevoicemailusersettings?view=skype-ps) -PromptLanguage for supported languages.
150+
151+
```yaml
152+
Type: String
153+
Parameter Sets: (All)
154+
Aliases:
155+
Applicable: Skype for Business Online
156+
157+
Required: False
158+
Position: Named
159+
Default value: None
160+
Accept pipeline input: False
161+
Accept wildcard characters: False
162+
```
163+
164+
### -SecondarySystemPromptLanguage
165+
The secondary language that voicemail system prompts will be presented in. Must also set PrimarySystemPromptLanguage and may not be the same value as PrimarySystemPromptanguage. When set, this overrides the user language choice. Please see [Set-CsOnlineVoicemailUserSettings](/powershell/module/skype/set-csonlinevoicemailusersettings?view=skype-ps) -PromptLanguage for supported languages.
166+
167+
```yaml
168+
Type: String
169+
Parameter Sets: (All)
170+
Aliases:
171+
Applicable: Skype for Business Online
172+
173+
Required: False
174+
Position: Named
175+
Default value: None
176+
Accept pipeline input: False
177+
Accept wildcard characters: False
178+
```
179+
180+
139181
### -ShareData
140182
{{ Fill ShareData Description }}
141183

skype/skype-ps/skype/New-CsTrunkConfiguration.md

Lines changed: 19 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ New-CsTrunkConfiguration [-Identity] <XdsIdentity> [-ConcentratedTopology <Boole
2727
[-RTCPActiveCalls <Boolean>] [-RTCPCallsOnHold <Boolean>]
2828
[-SipResponseCodeTranslationRulesList <PSListModifier>] [-SRTPMode <SRTPMode>] [-Force] [-InMemory] [-WhatIf]
2929
[-Confirm] [-Enable3pccRefer <Boolean>] [-EnableFastFailoverTimer <Boolean>] [-EnableOnlineVoice <Boolean>]
30-
[-EnableRTPLatching <Boolean>] [-ForwardCallHistory <Boolean>] [-ForwardPAI <Boolean>]
30+
[-EnableRTPLatching <Boolean>] [-ForwardCallHistory <Boolean>] [-ForwardPAI <Boolean>] [-EnablePAIPassThrough <Boolean>]
3131
[-OutboundCallingNumberTranslationRulesList <PSListModifier>] [-PstnUsages <PSListModifier>]
3232
[-EnableLocationRestriction <Boolean>] [-NetworkSiteID <String>] [<CommonParameters>]
3333
```
@@ -598,6 +598,24 @@ Accept pipeline input: False
598598
Accept wildcard characters: False
599599
```
600600

601+
### -EnablePAIPassThrough
602+
Indicates whether the P-Asserted-Identity (PAI) header will be allowed to pass through Gateway. Gateway would not update PAI.
603+
This helps to capture anonymous call users identity in Call Data Records
604+
The default value is False ($False).
605+
606+
```yaml
607+
Type: Boolean
608+
Parameter Sets: (All)
609+
Aliases:
610+
Applicable: Skype for Business Server 2015, Skype for Business Server 2019
611+
612+
Required: False
613+
Position: Named
614+
Default value: None
615+
Accept pipeline input: False
616+
Accept wildcard characters: False
617+
```
618+
601619
### -OutboundCallingNumberTranslationRulesList
602620
Collection of outbound calling number translation rules assigned to the trunk.
603621
You can retrieve information about the available rules by running this command:

skype/skype-ps/skype/Set-CsOnlineVoicemailPolicy.md

Lines changed: 45 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -13,28 +13,37 @@ ms.reviewer:
1313
# Set-CsOnlineVoicemailPolicy
1414

1515
## SYNOPSIS
16-
Modifies an existing Online Voicemail policy. Online Voicemail policies determine whether or not voicemail transcription, profanity masking for the voicemail transcriptions, translation for the voicemail transcriptions, and editing call answer rule settings are enabled for a user. The policies also specify voicemail maximum recording length for a user.
16+
Modifies an existing Online Voicemail policy. Online Voicemail policies determine whether or not voicemail transcription, profanity masking for the voicemail transcriptions, translation for the voicemail transcriptions, and editing call answer rule settings are enabled for a user. The policies also specify voicemail maximum recording length for a user and the primary and secondary voicemail system prompt languages.
1717

1818
## SYNTAX
1919

2020
### Identity (Default)
2121
```
2222
Set-CsOnlineVoicemailPolicy [-Tenant <Guid>] [-EnableTranscription <Boolean>] [-ShareData <String>]
23-
[-EnableTranscriptionProfanityMasking <Boolean>] [-EnableTranscriptionTranslation <Boolean>] [-EnableEditingCallAnswerRulesSetting <Boolean>] [-MaximumRecordingLength <Duration>] [[-Identity] <XdsIdentity>] [-Force] [-WhatIf] [-Confirm]
23+
[-EnableTranscriptionProfanityMasking <Boolean>] [-EnableTranscriptionTranslation <Boolean>] [-EnableEditingCallAnswerRulesSetting <Boolean>] [-MaximumRecordingLength <Duration>] [-PrimarySystemPromptLanguage <String>] [-SecondarySystemPromptLanguage <String>] [-Force] [[-Identity] <XdsIdentity>] [-WhatIf] [-Confirm]
2424
[<CommonParameters>]
2525
```
2626

2727
### Instance
2828
```
2929
Set-CsOnlineVoicemailPolicy [-Tenant <Guid>] [-EnableTranscription <Boolean>] [-ShareData <String>]
30-
[-EnableTranscriptionProfanityMasking <Boolean>] [-EnableTranscriptionTranslation <Boolean>] [-EnableEditingCallAnswerRulesSetting <Boolean>] [-MaximumRecordingLength <Duration>] [-Instance <PSObject>] [-Force] [-WhatIf] [-Confirm]
30+
[-EnableTranscriptionProfanityMasking <Boolean>] [-EnableTranscriptionTranslation <Boolean>] [-EnableEditingCallAnswerRulesSetting <Boolean>] [-MaximumRecordingLength <Duration>] [-PrimarySystemPromptLanguage <String>] [-SecondarySystemPromptLanguage <String>] [-Force] [-Instance <PSObject>] [-Force] [-WhatIf] [-Confirm]
3131
[<CommonParameters>]
3232
```
3333

3434
## DESCRIPTION
3535
Online Voicemail service provides organizations with voicemail deposit capabilities for Phone System implementation.
3636

37-
By default, users enabled for Phone System will be enabled for Online Voicemail, and Online Voicemail policy controls whether or not voicemail transcription, profanity masking for the voicemail transcriptions, translation for the voicemail transcriptions, and editing call answer rule settings are enabled for a user. The policies also specify voicemail maximum recording length for a user. Online Voicemail transcription is enabled by default, transcription profanity masking is disabled by default, editing call answer rule settings is enabled by default, and voicemail maximum recording length is set to 5 minutes by default. Tenant admin would be able to modify existing policies to match the organization's requirements.
37+
By default, users enabled for Phone System will be enabled for Online Voicemail. The Online Voicemail policy controls whether or not voicemail transcription, profanity masking for the voicemail transcriptions, translation for the voicemail transcriptions, and editing call answer rule settings are enabled for a user. The policies also specify the voicemail maximum recording length for a user and the primary and secondary voicemail system prompt languages.
38+
39+
- Online Voicemail transcription is enabled by default
40+
- Transcription profanity masking is disabled by default
41+
- Transcription translation is enabled by default
42+
- Editing call answer rule settings is enabled by default
43+
- Voicemail maximum recording length is set to 5 minutes by default
44+
- Primary and secondary system prompt languages are set to null by default and the user's voicemail language setting is used
45+
46+
Tenant admin would be able to create a customized online voicemail policy to match the organization's requirements.
3847

3948
## EXAMPLES
4049

@@ -151,6 +160,38 @@ Accept pipeline input: False
151160
Accept wildcard characters: False
152161
```
153162
163+
### -PrimarySystemPromptLanguage
164+
The primary (or first) language that voicemail system prompts will be presented in. Must also set SecondarySystemPromptLanguage. When set, this overrides the user language choice. Please see [Set-CsOnlineVoicemailUserSettings](Set-CsOnlineVoicemailUserSettings.md) -PromptLanguage for supported languages.
165+
166+
```yaml
167+
Type: String
168+
Parameter Sets: (All)
169+
Aliases:
170+
Applicable: Skype for Business Online
171+
172+
Required: False
173+
Position: Named
174+
Default value: None
175+
Accept pipeline input: False
176+
Accept wildcard characters: False
177+
```
178+
179+
### -SecondarySystemPromptLanguage
180+
The secondary language that voicemail system prompts will be presented in. Must also set PrimarySystemPromptLanguage and may not be the same value as PrimarySystemPromptanguage. When set, this overrides the user language choice. Please see [Set-CsOnlineVoicemailUserSettings](Set-CsOnlineVoicemailUserSettings.md) -PromptLanguage for supported languages.
181+
182+
```yaml
183+
Type: String
184+
Parameter Sets: (All)
185+
Aliases:
186+
Applicable: Skype for Business Online
187+
188+
Required: False
189+
Position: Named
190+
Default value: None
191+
Accept pipeline input: False
192+
Accept wildcard characters: False
193+
```
194+
154195
### -ShareData
155196
{{ Fill ShareData Description }}
156197

skype/skype-ps/skype/Set-CsOnlineVoicemailUserSettings.md

Lines changed: 28 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -101,46 +101,63 @@ Accept wildcard characters: False
101101
### -PromptLanguage
102102
The PromptLanguage parameter represents the language that is used to play voicemail prompts.
103103
104-
Now the following languages are supported:
104+
The following languages are supported:
105105
106106
- "ar-EG" (Arabic - Egypt)
107+
- "ar-SA" (Arabic - Saudi Arabia)
108+
- "bg-BG" (Bulgarian - Bulgaria)
107109
- "ca-ES" (Catalan - Catalan)
110+
- "cy-GB" (Welsh - United Kingdom)
111+
- "cs-CZ" (Czech - Czech Republic)
108112
- "da-DK" (Danish - Denmark)
113+
- "de-AT" (German - Austria)
114+
- "de-CH" (German - Switzerland)
109115
- "de-DE" (German - Germany)
116+
- "el-GR" (Greek - Greece)
110117
- "en-AU" (English - Australia)
111118
- "en-CA" (English - Canada)
112119
- "en-GB" (English - United Kingdom)
120+
- "en-IE" (English - Ireland)
113121
- "en-IN" (English - India)
122+
- "en-PH" (English - Philippines)
114123
- "en-US" (English - United States)
124+
- "en-ZA" (English - South Africa)
115125
- "es-ES" (Spanish - Spain)
116126
- "es-MX" (Spanish - Mexico)
127+
- "et-EE" (Estonian - Estonia)
117128
- "fi-FI" (Finnish - Finland)
129+
- "fr-BE" (French - Belgium)
118130
- "fr-CA" (French - Canada)
131+
- "fr-CH" (French - Switzerland)
119132
- "fr-FR" (French - France)
133+
- "he-IL" (Hebrew - Israel)
134+
- "hi-IN" (Hindi - India)
135+
- "hr-HR" (Croatian - Croatia)
136+
- "hu-HU" (Hungarian - Hungary)
137+
- "id-ID" (Indonesian - Indonesia)
120138
- "it-IT" (Italian - Italy)
121139
- "ja-JP" (Japanese - Japan)
122140
- "ko-KR" (Korean - Korea)
141+
- "lt-LT" (Lithuanian - Lithuania)
142+
- "lv-LV" (Latvian - Latvia)
143+
- "nl-BE" (Dutch - Begium)
123144
- "nl-NL" (Dutch - Netherlands)
124145
- "nb-NO" (Norwegian, Bokmål - Norway)
125146
- "pl-PL" (Polish - Poland)
126147
- "pt-BR" (Portuguese - Brazil)
127148
- "pt-PT" (Portuguese - Portugal)
149+
- "ro-RO" (Romanian - Romania)
128150
- "ru-RU" (Russian - Russia)
151+
- "sk-SK" (Slovak - Slovakia)
152+
- "sl-SI" (Slovenian - Slovenia)
129153
- "sv-SE" (Swedish - Sweden)
154+
- "th-TH" (Thai - Thailand)
130155
- "tr-TR" (Turkish - Turkey)
156+
- "vi-VN" (Vietnamese - Viet Nam)
131157
- "zh-CN" (Chinese - Simplified, PRC)
132158
- "zh-TW" (Chinese - Traditional, Taiwan)
133159
- "zh-HK" (Chinese - Traditional, Hong Kong S.A.R.)
134-
- "cs-CZ" (Czech - Czech Republic)
135-
- "th-TH" (Thai - Thailand)
136-
- "el-GR" (Greek - Greece)
137-
- "hu-HU" (Hungarian - Hungary)
138-
- "sk-SK" (Slovak - Slovakia)
139-
- "hr-HR" (Croatian - Croatia)
140-
- "sl-SI" (Slovenian - Slovenia)
141-
- "id-ID" (Indonesian - Indonesia)
142-
- "ro-RO" (Romanian - Romania)
143-
- "vi-VN" (Vietnamese - Viet Nam)
160+
144161
145162
```yaml
146163
Type: System.String

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ Set-CsTeamsMeetingPolicy [-Tenant <Guid>] [-Description <String>]
3232
[-PreferredMeetingProviderForIslandsMode <string>] [[-Identity] <XdsIdentity>]
3333
[-VideoFiltersMode <String>] [-AllowEngagementReport <String>] [-AllowNDIStreaming <Boolean>]
3434
[-DesignatedPresenterRoleMode <String>] [-AllowIPAudio <Boolean>] [-AllowOrganizersToOverrideLobbySettings <Boolean>]
35-
[-AllowUserToJoinExternalMeeting <String>] [-EnrollUserOverride <String>] [-StreamingAttendeeMode <String]
35+
[-AllowUserToJoinExternalMeeting <String>] [-EnrollUserOverride <String>] [-StreamingAttendeeMode <String]
3636
[-AllowBreakoutRooms <Boolean>] [-TeamsCameraFarEndPTZMode <String>] [-AllowMeetingReactions <Boolean>]
3737
[-AllowMeetingRegistration <Boolean>] [-AllowScreenContentDigitization <Boolean>] [-AllowTrackingInReport <Boolean>] [-RoomAttributeUserOverride <String>] [-SpeakerAttributionMode <String>] [-WhoCanRegister <String>] [-Force] [-WhatIf] [-Confirm] [<CommonParameters>]
3838
```
@@ -52,7 +52,7 @@ Set-CsTeamsMeetingPolicy [-Tenant <Guid>] [-Description <String>]
5252
[-PreferredMeetingProviderForIslandsMode <string>] [-Instance <PSObject>]
5353
[-VideoFiltersMode <String>] [-AllowEngagementReport <String>] [-AllowNDIStreaming <Boolean>]
5454
[-DesignatedPresenterRoleMode <String>] [-AllowIPAudio <Boolean>] [-AllowOrganizersToOverrideLobbySettings <Boolean>]
55-
[-AllowUserToJoinExternalMeeting <String>] [-EnrollUserOverride <String>] [-StreamingAttendeeMode <String]
55+
[-AllowUserToJoinExternalMeeting <String>] [-EnrollUserOverride <String>] [-StreamingAttendeeMode <String]
5656
[-AllowBreakoutRooms <Boolean>] [-TeamsCameraFarEndPTZMode <String>] [-AllowMeetingReactions <Boolean>]
5757
[-AllowMeetingRegistration <Boolean>] [-AllowScreenContentDigitization <Boolean>] [-AllowTrackingInReport <Boolean>] [-RoomAttributeUserOverride <String>] [-SpeakerAttributionMode <String>] [-WhoCanRegister <String>] [-Force] [-WhatIf] [-Confirm] [<CommonParameters>]
5858
```

0 commit comments

Comments
 (0)