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 Example 4, federation access is enabled for all the external access policies that allow public cloud access.
132
-
To do this, the command first uses the `Get-CsExternalAccessPolicy` cmdlet to return a collection of all the external access policies currently configured for use in the organization.
133
-
This collection is piped to the `Where-Object` cmdlet, which picks out only those policies where the EnablePublicCloudAccess property is equal to True.
134
-
The filtered collection is then piped to the `Set-CsExternalAccessPolicy` cmdlet, which takes each policy and sets the EnableFederationAccess property to True.
135
-
The net result: all external access policies that allow public cloud access will also allow federation access.
136
-
137
-
### -------------------------- Example 5 ------------------------
138
-
```
139
126
Set-CsExternalAccessPolicy -Identity Global -EnableAcsFederationAccess $false
Indicates whether the user is allowed to communicate with people who have SIP accounts with a public Internet connectivity provider such as MSN.
345
-
Read [Manage external access in Microsoft Teams](https://learn.microsoft.com/microsoftteams/manage-external-access) to get more information about the effect of this parameter in Microsoft Teams.
346
-
The default value is False.
347
-
348
-
```yaml
349
-
Type: Boolean
350
-
Parameter Sets: (All)
351
-
Aliases:
352
-
Applicable: Lync Server 2010, Lync Server 2013, Skype for Business Online, Skype for Business Server 2015, Skype for Business Server 2019
353
-
354
-
Required: False
355
-
Position: Named
356
-
Default value: None
357
-
Accept pipeline input: False
358
-
Accept wildcard characters: False
359
-
```
360
-
361
330
### -EnablePublicCloudAudioVideoAccess
362
331
Indicates whether the user is allowed to conduct audio/video conversations with people who have SIP accounts with a public Internet connectivity provider such as MSN.
363
332
When set to False, audio and video options in Skype for Business will be disabled any time a user is communicating with a public Internet connectivity contact.
0 commit comments