Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save jacksoneyton/79b52b9d2191fcde0c5f to your computer and use it in GitHub Desktop.
Save jacksoneyton/79b52b9d2191fcde0c5f to your computer and use it in GitHub Desktop.
Lync PoSH Snippets
Get-CsAdUser -ResultSize Unlimited | Where-Object {$_.UserAccountControl -match "AccountDisabled" -and $_.Enabled} | Disable-CsUser
Get-CsAdUser -ResultSize Unlimited | Where-Object {$_.UserAccountControl -match "AccountDisabled" -and $_.Enabled} | Measure-Object
Get-CsAdUser -ResultSize Unlimited | Where-Object {$_.UserAccountControl -match "AccountDisabled" -and $_.Enabled -eq $true} | Format-Table Name,Enabled,SipAddress -auto
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment