In this video, I am using a PowerShell script and this will help us to update the active directory users attributes including user description and email address. In this script, A csv file is used to fetch user details like Active directory user name, Description and email address.
Below is the script:
Import-Module ActiveDirectory
$Attribcsv=Import-csv “C:\ad_script\users_d.csv”
ForEach ($User in $Attribcsv)
{
Get-ADUser -Identity $User.user | set-ADUser -description $($User.description) -EmailAddress $($user.mail)
}