Update FAX number in O365

Modified on Tue, 30 Jun at 5:17 PM

# Import the CSV file

$csvPath = "C:\Users\naufil.mirsinge\Downloads\fax.csv"

$users = Import-Csv -Path $csvPath



# Update fax number for each user from the CSV

foreach ($user in $users) {

    Set-User -Identity $user.UserPrincipalName -Fax $user.FaxNumber

}



Was this article helpful?

That’s Great!

Thank you for your feedback

Sorry! We couldn't be helpful

Thank you for your feedback

Let us know how can we improve this article!

Select at least one of the reasons
CAPTCHA verification is required.

Feedback sent

We appreciate your effort and will try to fix the article