Topic Last Modified: 2013-07-22

To return a list of available per-user policies, first select the appropriate Get-Cs cmdlet (for example, the Get-CsVoicePolicy cmdlet, if you want to return per-user voice policies). Then use the following syntax to return the Identity for each per-user policy:

Copy Code
Get-CsVoicePolicy -Filter "tag:*" | Select-Object Identity

Note that, because of different licensing agreements and different country/region restrictions, it’s possible that certain conferencing policies, external access policies, or mobility policies cannot be assigned to a particular user. To verify the per-user policies that can actually be assigned to a given user (for example, kenmyer@litwareinc.com) use one of the following commands (and the ApplicableTo parameter), as appropriate:

Copy Code
Get-CsConferencingPolicy -ApplicableTo "kenmyer@litwareinc.com"
Get-CsExternalAccessPolicy -ApplicableTo "kenmyer@litwareinc.com"
Get-CsMobilityPolicy -ApplicableTo "kenmyer@litwareinc.com"

The preceding syntax returns only those per-user policies that can actually be assigned to Ken Myer.

See Also