Skip to content

Commit 6b39eaf

Browse files
Update New-CsExternalAccessPolicy.md
1 parent 8fb1842 commit 6b39eaf

File tree

1 file changed

+1
-21
lines changed

1 file changed

+1
-21
lines changed

teams/teams-ps/teams/New-CsExternalAccessPolicy.md

Lines changed: 1 addition & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,6 @@ New-CsExternalAccessPolicy [-Identity] <XdsIdentity>
3333
[-EnableAcsFederationAccess <Boolean>]
3434
[-EnableFederationAccess <Boolean>]
3535
[-EnableOutsideAccess <Boolean>]
36-
[-EnablePublicCloudAccess <Boolean>]
3736
[-EnablePublicCloudAudioVideoAccess <Boolean>]
3837
[-EnableTeamsConsumerAccess <Boolean>]
3938
[-EnableTeamsConsumerInbound <Boolean>]
@@ -114,8 +113,6 @@ $x = New-CsExternalAccessPolicy -Identity RedmondAccessPolicy -InMemory
114113
115114
$x.EnableFederationAccess = $True
116115
117-
$x.EnablePublicCloudAccess = $True
118-
119116
$x.EnableOutsideAccess = $True
120117
121118
Set-CsExternalAccessPolicy -Instance $x
@@ -125,7 +122,7 @@ Example 4 demonstrates the use of the InMemory parameter; this parameter enables
125122
After it has been created, you can modify the in-memory-only instance, then use the Set-CsExternalAccessPolicy cmdlet to transform the virtual policy into a real external access policy.
126123

127124
To do this, the first command in the example uses the New-CsExternalAccessPolicy cmdlet and the InMemory parameter to create a virtual policy with the Identity RedmondAccessPolicy; this virtual policy is stored in a variable named $x.
128-
The next three commands are used to modify three properties of the virtual policy: EnableFederationAccess, EnablePublicCloudAccess, and the EnableOutsideAccess.
125+
The next three commands are used to modify two properties of the virtual policy: EnableFederationAccess and the EnableOutsideAccess.
129126
Finally, the last command uses the Set-CsExternalAccessPolicy cmdlet to create an actual per-user external access policy with the Identity RedmondAccessPolicy.
130127
If you do not call the Set-CsExternalAccessPolicy cmdlet, then the virtual policy will disappear as soon as you end your Windows PowerShell session or delete the variable $x.
131128
Should that happen, an external access policy with the Identity RedmondAccessPolicy will never be created.
@@ -299,23 +296,6 @@ Accept pipeline input: False
299296
Accept wildcard characters: False
300297
```
301298

302-
### -EnablePublicCloudAccess
303-
Indicates whether the user is allowed to communicate with people who have SIP accounts with a public Internet connectivity provider such as MSN.
304-
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.
305-
The default value is False.
306-
307-
```yaml
308-
Type: Boolean
309-
Parameter Sets: (All)
310-
Aliases:
311-
312-
Required: False
313-
Position: Named
314-
Default value: None
315-
Accept pipeline input: False
316-
Accept wildcard characters: False
317-
```
318-
319299
### -EnablePublicCloudAudioVideoAccess
320300
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.
321301
When set to False, audio and video options in Skype for Business Server will be disabled any time a user is communicating with a public Internet connectivity contact.

0 commit comments

Comments
 (0)