• Update AD users based on csv file

    Hi There, 

    I am trying to bulk update few users based on CSV file and got the following working script:

    $users = Import-Csv "UserDetails.csv"
    foreach ($user in $users) {
         $userEmail = $user."Email"
         $UPN = get-qaduser $userEmail…