Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #
- # www.sivarajan.com
- # Add User to a Group - PowerShell Script
- #
- Import-module ActiveDirectory
- Import-CSV ".\4_list_userName.csv" | % {
- Add-ADGroupMember -Identity $_.sAMAccountName -Members $_.UserName
- }
Advertisement
Add Comment
Please, Sign In to add comment