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
In Skype for Business Online, outbound calling restriction policies are used to restrict the type of audio conferencing and end user PSTN calls that can be made by users in your organization.
32
-
To get all the available policies in your organization run `Get-CSOnlineDialOutPolicy`.
31
+
In Microsoft Teams, outbound calling restriction policies are used to restrict the type of audio conferencing and end user PSTN calls that can be made by users in your organization. The policies apply to all the different PSTN connectivity options for Microsoft Teams; Calling Plan, Direct Routing, and Operator Connect.
32
+
33
+
To get all the available policies in your organization run `Get-CsOnlineDialOutPolicy`.
33
34
To assign one of these policies to a user run `Grant-CsDialoutPolicy`.
34
35
35
36
## EXAMPLES
36
37
37
38
### Example 1
38
39
```powershell
39
-
PS C:\> Get-CSOnlineDialOutPolicy
40
+
Get-CsOnlineDialOutPolicy
40
41
```
41
42
42
-
In Example 1, `Get-CSOnlineDialOutPolicy` is called without any additional parameters; this returns a collection of all the outbound calling restriction policies configured for use in your organization.
43
+
In Example 1, `Get-CsOnlineDialOutPolicy` is called without any additional parameters; this returns a collection of all the outbound calling restriction policies configured for use in your organization.
In Example 2, `Get-CSOnlineDialOutPolicy` is used to return the per-user outbound calling restriction policy that has an Identity DialoutCPCandPSTNDisabled. Because identities are unique, this command will never return more than one item.
50
+
In Example 2, `Get-CsOnlineDialOutPolicy` is used to return the per-user outbound calling restriction policy that has an Identity DialoutCPCandPSTNDisabled. Because identities are unique, this command will never return more than one item.
50
51
51
52
## PARAMETERS
52
53
53
54
### -Filter
54
-
Enables you to use wildcard characters when indicating the policy (or policies) to be returned. To return a collection of all the per-user policies, use this syntax: -Filter "tag:\*".
55
+
Enables you to use wildcard characters when indicating the policy (or policies) to be returned. To return a collection of all the per-user policies, use this syntax: -Filter "tag:*".
55
56
56
57
```yaml
57
58
Type: String
@@ -71,7 +72,7 @@ Unique identifier of the outbound calling restriction policy to be returned. To
71
72
If this parameter is omitted, then all the outbound calling restriction policies configured for use in your tenant will be returned.
72
73
73
74
```yaml
74
-
Type: XdsIdentity
75
+
Type: String
75
76
Parameter Sets: Identity
76
77
Aliases:
77
78
@@ -82,21 +83,6 @@ Accept pipeline input: False
82
83
Accept wildcard characters: False
83
84
```
84
85
85
-
### -LocalStore
86
-
This parameter is reserved for internal Microsoft use.
87
-
88
-
```yaml
89
-
Type: SwitchParameter
90
-
Parameter Sets: (All)
91
-
Aliases:
92
-
93
-
Required: False
94
-
Position: Named
95
-
Default value: None
96
-
Accept pipeline input: False
97
-
Accept wildcard characters: False
98
-
```
99
-
100
86
### CommonParameters
101
87
This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable.
102
88
For more information, see about_CommonParameters (https://go.microsoft.com/fwlink/?LinkID=113216).
@@ -112,4 +98,4 @@ For more information, see about_CommonParameters (https://go.microsoft.com/fwlin
In Skype for Business Online and Microsoft Teams, outbound calling restriction policies are used to restrict the type of audio conferencing and end user PSTN calls that can be made by users in your organization.
36
+
In Microsoft Teams, outbound calling restriction policies are used to restrict the type of audio conferencing and end user PSTN calls that can be made by users in your organization. The policies apply to all the different PSTN connectivity options for Microsoft Teams; Calling Plan, Direct Routing, and Operator Connect.
37
+
37
38
To get all the available policies in your organization run `Get-CsOnlineDialOutPolicy`.
This example first creates a new Teams emergency number object and then creates a Teams Emergency Call Routing policy with this emergency number object.
@@ -149,4 +149,6 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable
This example first creates new Teams emergency number objects and then adds these Teams emergency numbers to an existing Teams Emergency Call Routing policy.
This example first creates a new Teams emergency number object and then removes that Teams emergency number from an existing Teams Emergency Call Routing policy.
53
+
37
54
## PARAMETERS
38
55
39
56
### -AllowEnhancedEmergencyServices
@@ -143,4 +160,6 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable
0 commit comments