Link to home
Start Free TrialLog in
Avatar of Jorge Ocampo
Jorge OcampoFlag for United States of America

asked on

set-aduser powershell command issue

i am trying to set attribute11 for a list of users but everytime i run my script it does all users instead of the ones in the list.

$users = Import-Csv -Path C:\temp\Users.csv            
           
foreach ($user in $users) {            
 Set-ADUser -Identity $user.SamAccountName -Add @{extensionAttribute11="BLAHBLAH"}          
}
Avatar of David Johnson, CD
David Johnson, CD
Flag of Canada image

users.csv is like the following
samaccountname,first,last
tjones,Tom,Jones
aardvark,Aaron,Ardvark

????
ASKER CERTIFIED SOLUTION
Avatar of Jason Crawford
Jason Crawford
Flag of United States of America image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial