How Can We Help?

Categories

Rename AD user using powershell

You are here:
< Back

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”