Lync PowerShell 关闭用户权限
1、关闭站点权限get-csconferencingpolicy -identity "site:XXX"
Set-CsConferencingPolicy -Identity "site:XXX" -EnableP2PVideo $false
2、关闭用户权限
(1)显示用户信息
get -csuser -identity xxx@XX.com.cn
(2)对用户属性赋权
Grant-CsConferencingPolicy -Identity xxx@XX.com.cn -PolicyName Novideo 注:Novideo为一个策略名,必须先设定好
(3)针对所属OU的人员进行批量修改
Get-CsUser -OU "OU=X,DC=XX,DC=XX,DC=XX" |Grant-CsConferencingPolicy -PolicyName NoVideo
页:
[1]