Forum Discussion

charlie4872's avatar
charlie4872
Brass Contributor
Oct 29, 2021

Need to change bulk users Samaccountname to uppercase

Hello I am trying to get this script to update a list of samaccountname from lowercase to uppercase. We have an application that has issues with lowercase. I have tried the below and it is giving me ...
  • VasilMichev's avatar
    VasilMichev
    Oct 29, 2021
    Here's a working example:

    $users = Import-Csv .\users.csv
    $users | % { Set-ADUser $_.SamAccountName -SamAccountName $_.SamAccountName.ToLower() }

Resources