lync 批量启用用户

Get-CsAdUser -OU  "xxx.com.cn/xxx Group/Colibri/sz-colibri/英特科"  | Enable-CsUser -RegistrarPool "pool.xxx.com.cn" -SipAddressType EmailAddress -SipDomain xxx.com.cn


-------------------------------------------

Get-CsUser [-Identity ] [-Credential ] [-DomainController ] [-Filter ] [-LdapFilter ] [-OnLyncServer ] [-OnOfficeCommunicationServer ] [-OU ] [-ResultSize ] [-UnAssignedUser ]
 
Enable-CsUser -Identity [-Confirm []] [-DomainController ] [-HostingProviderProxyFqdn ] [-PassThru ] [-ProxyPool ] [-RegistrarPool ] [-SipAddress ] [-SipAddressType ] [-SipDomain ] [-WhatIf []]


启用所有用户SIP
   
根据部门:
Get-CsAdUser -LDAPFilter "department=你的部门" | Enable-CsUser -RegistrarPool "pool.你的域名" -SipAddressType EmailAddress -SipDomain 你的域名
 
根据OU:
Get-CsAdUser -OU 你的OU名字 | Enable-CsUser -RegistrarPool "pool.你的域名" -SipAddressType EmailAddress -SipDomain 你的域名
 
启用所有用户的企业语音

根据部门:
Get-CsUser -LdapFilter "Department=你的部门" | Set-CsUser -EnterpriseVoiceEnabled $True
 
根据OU:
Get-CsUser -OU 你的OU名字 | Set-CsUser -EnterpriseVoiceEnabled $True



为所有用户启用Lync,并且禁用语音和视频功能
Get-CsAdUser -OU "OU=xxx,dc=demo,dc=com,dc=cn" |Set-CsUser -AudioVideoDisabled $True
查找有邮件地址但是没有启用Lync的用户
Get-CsAdUser -OU "OU=User,OU=Corp,dc=domain,dc=com" -Filter {WindowsEmailAddress -ne $Null} | where-object {$_.Enabled -ne $True} | Enable-CsUser -RegistrarPool pool.domain.com -SipAddressType EmailAddress | Set-Csuser -AudioVideoDisabled $True
1.-AudioVideoDisabled
2. -IPPBXSoftPhoneRoutingEnabled
3.-RemoteCallControlTelephonyEnabled
4.-EnterpriseVoiceEnabled


你可能感兴趣的:(Lync)