How Can We Help?
Rename AD user using powershell
To check Display Name with PowerShell, use the below command line
Get-ADUser “NAME” | fl name
Es. Get-ADUser “Tameka Reed” | fl name
Now rename the account with the following command line
Get-ADUser “NAME” | Rename-ADObject -NewName “NEW_NAME”
Es. Get-ADUser “ITCILO_HRS-REC” | Rename-ADObject -NewName “ITCILO_HRS-RECL”