Skip to content

Instantly share code, notes, and snippets.

@arbickerstaff
Last active October 4, 2021 18:13
Show Gist options
  • Select an option

  • Save arbickerstaff/ef13ab788ec9d1e7f971 to your computer and use it in GitHub Desktop.

Select an option

Save arbickerstaff/ef13ab788ec9d1e7f971 to your computer and use it in GitHub Desktop.
Active Directory -
Import-Module ActiveDirectory
$users = Import-CSV ".\users.csv"
foreach ($user in $users) {
Remove-ADGroupMember -Identity $user.GroupName -Member $user.SamAccountName
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment