Quick PowerShell script to update an AD attribute
Powershell
# Import AD ModuleImport-Module ActiveDirectory
# Import CSV into variable $userscsv$users = Import-Csv -Path C:\Users\EXAMPLE\Documents\UpdateCompanyTest.csv
# Loop through CSV and update users if they exist in CVS fileforeach ($user in $users) {
# Search ...