Skip to content

Commit ff22614

Browse files
authored
Merge pull request #12131 from michbrown-png/missingdocumentation
Adding Missing Documentation for Parameters available on TPM
2 parents e22dd4e + 16b5950 commit ff22614

5 files changed

+94
-11
lines changed

teams/teams-ps/teams/New-CsTeamsCallingPolicy.md

Lines changed: 16 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ New-CsTeamsCallingPolicy [-Identity] <string> [-Description <string>] [-AllowPri
2626
[-BusyOnBusyEnabledType <string>] [-MusicOnHoldEnabledType <string>] [-AllowCloudRecordingForCalls <boolean>]
2727
[-AllowTranscriptionForCalling <boolean>] [-PopoutForIncomingPstnCalls <string>] [-PopoutAppPathForIncomingPstnCalls <string>]
2828
[-LiveCaptionsEnabledTypeForCalling <string>] [-AutoAnswerEnabledType <string>] [-SpamFilteringEnabledType <string>]
29-
[-CallRecordingExpirationDays <long>] [-AllowCallRedirect <string>]
29+
[-CallRecordingExpirationDays <long>] [-AllowCallRedirect <string>] [-EnableWebPstnMediaBypass <Boolean>]
3030
[-InboundPstnCallRoutingTreatment <string>] [-InboundFederatedCallRoutingTreatment <string>] [-Force] [-WhatIf] [-Confirm] [<CommonParameters>]
3131
```
3232

@@ -308,6 +308,21 @@ Accept pipeline input: False
308308
Accept wildcard characters: False
309309
```
310310
311+
### -EnableWebPstnMediaBypass
312+
Determines if MediaBypass is enabled for PSTN calls on specified Web platforms.
313+
314+
```yaml
315+
Type: Boolean
316+
Parameter Sets: (All)
317+
Aliases:
318+
319+
Required: False
320+
Position: Named
321+
Default value: None
322+
Accept pipeline input: False
323+
Accept wildcard characters: False
324+
```
325+
311326
### -Identity
312327
Name of the policy instance being created.
313328

teams/teams-ps/teams/New-CsTeamsEmergencyCallRoutingPolicy.md

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,15 @@ New-CsTeamsEmergencyCallRoutingPolicy -Identity "Test" -EmergencyNumbers @{add=$
3434
```
3535

3636
This example first creates a new Teams emergency number object and then creates a Teams Emergency Call Routing policy with this emergency number object.
37-
Note that the OnlinePSTNUsage specified in the first command must previously exist. Note that the resulting object from the New-CsTeamsEmergencyNumber only exists in memory, so you must apply it to a policy to be used.
37+
Note that the OnlinePSTNUsage specified in the first command must previously exist. Note that the resulting object from the New-CsTeamsEmergencyNumber only exists in memory, so you must apply it to a policy to be used.
38+
Note that {@add=....} will try to append a new emergency number to the values taken from the global instance.
39+
40+
### Example 2
41+
```powershell
42+
$en1 = New-CsTeamsEmergencyNumber -EmergencyDialString "911" -EmergencyDialMask "933" -OnlinePSTNUsage "USE911"
43+
New-CsTeamsEmergencyCallRoutingPolicy -Identity "testecrp" -EmergencyNumbers $en1 -AllowEnhancedEmergencyServices:$true -Description "test"
44+
```
45+
This example overrides the global emergency numbers from the global instance.
3846

3947
## PARAMETERS
4048

teams/teams-ps/teams/Set-CsExternalAccessPolicy.md

Lines changed: 34 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,6 @@ online version: https://learn.microsoft.com/powershell/module/teams/set-csextern
44
applicable: Microsoft Teams
55
title: Set-CsExternalAccessPolicy
66
schema: 2.0.0
7-
author: tomkau
8-
ms.author: tomkau
97
ms.reviewer: rogupta
108
---
119

@@ -24,13 +22,15 @@ This cmdlet was introduced in Lync Server 2010.
2422
Set-CsExternalAccessPolicy [-Tenant <Guid>] [-Description <String>] [-EnableFederationAccess <Boolean>] [-EnableAcsFederationAccess <Boolean>]
2523
[-EnableXmppAccess <Boolean>] [-EnablePublicCloudAccess <Boolean>]
2624
[-EnablePublicCloudAudioVideoAccess <Boolean>] [-EnableTeamsConsumerAccess <Boolean>] [-EnableTeamsConsumerInbound <Boolean>] [-EnableOutsideAccess <Boolean>] [[-Identity] <XdsIdentity>]
25+
[-RestrictTeamsConsumerAccessToExternalUserProfiles <Boolean>] [-EnableTeamsSmsAccess <Boolean>]
2726
[-Force] [-WhatIf] [-Confirm] [<CommonParameters>]
2827
```
2928

3029
### Instance
3130
```
3231
Set-CsExternalAccessPolicy [-Tenant <Guid>] [-Description <String>] [-EnableFederationAccess <Boolean>] [-EnableAcsFederationAccess <Boolean>]
3332
[-EnableXmppAccess <Boolean>] [-EnablePublicCloudAccess <Boolean>]
33+
[-RestrictTeamsConsumerAccessToExternalUserProfiles <Boolean>] [-EnableTeamsSmsAccess <Boolean>]
3434
[-EnablePublicCloudAudioVideoAccess <Boolean>] [-EnableTeamsConsumerAccess <Boolean>] [-EnableTeamsConsumerInbound <Boolean>] [-EnableOutsideAccess <Boolean>] [-Instance <PSObject>]
3535
[-Force] [-WhatIf] [-Confirm] [<CommonParameters>]
3636
```
@@ -397,6 +397,38 @@ Accept pipeline input: False
397397
Accept wildcard characters: False
398398
```
399399

400+
### -EnableTeamsSmsAccess
401+
Allows you to control whether users can have SMS text messaging capabilities within Teams.
402+
Possible Values: True, False
403+
404+
```yaml
405+
Type: Boolean
406+
Parameter Sets: (All)
407+
Aliases:
408+
409+
Required: False
410+
Position: Named
411+
Default value: None
412+
Accept pipeline input: False
413+
Accept wildcard characters: False
414+
```
415+
416+
### -RestrictTeamsConsumerAccessToExternalUserProfiles
417+
Defines if a user is restriced to collaboration with Teams Consumer (TFL) user only in Extended Directory
418+
Possible Values: True, False
419+
420+
```yaml
421+
Type: Boolean
422+
Parameter Sets: (All)
423+
Aliases:
424+
425+
Required: False
426+
Position: Named
427+
Default value: None
428+
Accept pipeline input: False
429+
Accept wildcard characters: False
430+
```
431+
400432
### CommonParameters
401433
This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see about_CommonParameters (https://go.microsoft.com/fwlink/?LinkID=113216).
402434

teams/teams-ps/teams/Set-CsTeamsFeedbackPolicy.md

Lines changed: 17 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -4,10 +4,6 @@ online version: https://learn.microsoft.com/powershell/module/teams/set-csteamsf
44
applicable: Microsoft Teams
55
title: Set-CsTeamsFeedbackPolicy
66
schema: 2.0.0
7-
manager: bulenteg
8-
ms.author: tomkau
9-
ms.author: tomkau
10-
ms.reviewer:
117
---
128

139
# Set-CsTeamsFeedbackPolicy
@@ -21,7 +17,7 @@ Use this cmdlet to modify a Teams feedback policy (the ability to send feedback
2117
```
2218
Set-CsTeamsFeedbackPolicy [-WhatIf] [-Confirm] [[-Identity] <Object>] [-Tenant <Object>]
2319
[-ReceiveSurveysMode <String>] [-UserInitiatedMode <String>] [-AllowEmailCollection <Boolean>]
24-
[-AllowLogCollection <Boolean>] [-AllowScreenshotCollection <Boolean>]
20+
[-AllowLogCollection <Boolean>] [-AllowScreenshotCollection <Boolean>] [-EnableFeatureSuggestions <Boolean>]
2521
[-Force] [-Instance <Object>]
2622
```
2723

@@ -200,6 +196,22 @@ Accept pipeline input: False
200196
Accept wildcard characters: False
201197
```
202198
199+
### -EnableFeatureSuggestions
200+
This setting will enable Tenant Admins to hide or show the Teams menu item "Help | Suggest a Feature".
201+
Possible Values: True, False
202+
203+
```yaml
204+
Type: Boolean
205+
Parameter Sets: (All)
206+
Aliases:
207+
208+
Required: False
209+
Position: Named
210+
Default value: None
211+
Accept pipeline input: False
212+
Accept wildcard characters: False
213+
```
214+
203215
### -WhatIf
204216
Shows what would happen if the cmdlet runs.
205217
The cmdlet is not run.

teams/teams-ps/teams/Set-CsTenantFederationConfiguration.md

Lines changed: 18 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ These settings are used to determine which domains (if any) your users are allow
2323
Set-CsTenantFederationConfiguration [-Tenant <Guid>]
2424
[-AllowedDomains <IAllowedDomainsChoice>] [-BlockedDomains <List>] [-BlockAllSubdomains <Boolean>]
2525
[-AllowFederatedUsers <Boolean>] [-AllowPublicUsers <Boolean>] [-AllowTeamsConsumer <Boolean>] [-AllowTeamsConsumerInbound <Boolean>]
26-
[-TreatDiscoveredPartnersAsUnverified <Boolean>] [-SharedSipAddressSpace <Boolean>]
26+
[-TreatDiscoveredPartnersAsUnverified <Boolean>] [-SharedSipAddressSpace <Boolean>] [-RestrictTeamsConsumerToExternalUserProfiles <Boolean>]
2727
[-AllowedDomainsAsAList <List>] [-ExternalAccessWithTrialTenants <ExternalAccessWithTrialTenantsType>]
2828
[[-Identity] <XdsIdentity>] [-Force] [-WhatIf] [-Confirm] [<CommonParameters>]
2929
```
@@ -32,7 +32,7 @@ Set-CsTenantFederationConfiguration [-Tenant <Guid>]
3232
```
3333
Set-CsTenantFederationConfiguration [-Tenant <Guid>] [-AllowedDomains <IAllowedDomainsChoice>]
3434
[-BlockedDomains <List>] [-BlockAllSubdomains <Boolean>] [-AllowFederatedUsers <Boolean>] [-AllowPublicUsers <Boolean>]
35-
[-TreatDiscoveredPartnersAsUnverified <Boolean>] [-SharedSipAddressSpace <Boolean>]
35+
[-TreatDiscoveredPartnersAsUnverified <Boolean>] [-SharedSipAddressSpace <Boolean>] [-RestrictTeamsConsumerToExternalUserProfiles <Boolean>]
3636
[-AllowedDomainsAsAList <List>] [-Instance <PSObject>] [-Force] [-WhatIf] [-Confirm] [<CommonParameters>]
3737
```
3838

@@ -468,6 +468,22 @@ Accept pipeline input: False
468468
Accept wildcard characters: False
469469
```
470470

471+
### -RestrictTeamsConsumerToExternalUserProfiles
472+
Defines if a user is restriced to collaboration with Teams Consumer (TFL) user only in Extended Directory.
473+
Possible values: True, False
474+
475+
```yaml
476+
Type: Boolean
477+
Parameter Sets: (All)
478+
Aliases:
479+
480+
Required: False
481+
Position: Named
482+
Default value: None
483+
Accept pipeline input: False
484+
Accept wildcard characters: False
485+
```
486+
471487
### -WhatIf
472488
Describes what would happen if you executed the command without actually executing the command.
473489

0 commit comments

Comments
 (0)