Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
If you have created or configured external user access policies that you no longer want to use, you can do the following method:
Delete any site or user policy that you created.
Reset the global policy to the default settings. The default global policy settings deny any external user access. The global policy cannot be deleted.
You can delete any site or user policy that is listed in the Skype for Business Server Control Panel on the External Access Policy page. Deleting the global policy doesn't actually delete it, but only resets it to the default settings, which don't include support for any external user access options. For details about resetting the global policy, see Reset the global policy for external user access.
To delete a site or user policy for external user access
From a user account that is a member of the RTCUniversalServerAdmins group (or has equivalent user rights), or is assigned to the CsAdministrator role, log on to any computer in your internal deployment.
Open a browser window, and then enter the Admin URL to open the Skype for Business Server Control Panel.
Click External User Access, click External Access Policy.
On the External Access Policy tab, click the site or user policy you want to delete, click Edit, and then click Delete.
When prompted to confirm the deletion, click OK.
Removing PIN Policies by Using Windows PowerShell Cmdlets
External access policies can be deleted by using Windows PowerShell and the Remove-CsExternalAccessPolicy cmdlet. This cmdlet can be run either from the Skype for Business Server Management Shell or from a remote session of Windows PowerShell.
To remove a specific external access policy
- This command removes the external access policy applied to the Redmond site:
Remove-CsExternalAccessPolicy -Identity "site:Redmond"
To remove all the external access policies applied to the per-user scope
- This command removes all the external access policies configured at the per-user scope:
Get-CsExternalAccessPolicy -Filter "tag:*" | Remove-CsExternalAccessPolicy
To remove all the external access policies where outside user access is disabled
- This command deletes all the external access policies where outside user access has been disabled:
Get-CsExternalAccessPolicy | Where-Object {$_.EnableOutsideAccess -eq $False} | Remove-CsExternalAccessPolicy
For more information, see the help topic for the Remove-CsExternalAccessPolicy cmdlet.