Removing users in a specific OU from a specific security group
Today I had the need to remove a large number of users from a specific security group which resided in a specific OU, and used Quest`s AD cmdlet`s:
$users = Get-QADUser -SearchRoot domain.ad/OU
Remove-QADGroupMember -Identity GroupName -Member $users
No comments yet.