If I have a list of users where the samAccountName for all the users are all numerical Example, 745744, 745746, etc…. I was looking for a powershell script that could accomplish the following:
- Put an “XX” without quotes in front of the users first name/givenname
- Have the script import the list of users from the csv file if I have a list of all the users samAccountName.
Is having only one column in excel with the samAccountName sufficient for the csv, or do i need to also have all of the users givenName as well inside of the csv?? Example column A samAccountName, column B Firstname??
Example givenName is, JOAQUIN, I would need the first name to be XXJOAQUIN. I have about 500 users that I would have to do this for, and we are doing it manually right now, So the only thing that I need changed is adding the “XX” before the users givenNames….
Thanks everyone in advance.
If you have a CSV with samAccountName as the first column, you can do something like this.
If you are searching for numerical users, you can look up in the documentation to use
Get-ADUser
to get all your users, and use aforeach
loop to evaluate if it is numerical, and set the account.If your CSV file just contains a header with the
samAccountName
followed by the samAccountNames like this:Then you can use the following piece of code, change the path to the path of the csv file with your users. This could be made shorter and use the pipeline better to make it less code, but this will work just fine.
You can also pipe the output directly from
Get-ADUser
toSet-ADUser
like this:Another way would be: