Topic Last Modified: 2013-07-05

If you want to unassign a per-user policy that was previously assigned to a user, rerun the appropriate Grant-Cs cmdlet (for example, the Grant-CsVoicePolicy cmdlet to unassign a voice policy), and set the PolicyName parameter to a null value ($Null):

Copy Code
Grant-CsVoicePolicy -Identity "Ken Myer" -PolicyName $Null

To unassign voice policies from all your users, use this command:

Copy Code
Get-CsOnlineUser | Grant-CsVoicePolicy -PolicyName $Null

When a policy is unassigned from a user, that user will then be managed by the global policy.

See Also