A group of Microsoft Products and technologies used for sharing and managing content, knowledge, and applications.
Dear Osamah,
Good day! Thank you for posting your query in our community. We are happy to help you.
Based on your description, you want to bulk update the Job title of the user information. You can try the following steps to check if you can update all users via PowerShell:
- Download the SharePoint Online Management Shell: Download SharePoint Online Management Shell from Official Microsoft Download Center
- Open the Download the SharePoint Online Management Shell as Administrator;
- Install PowerShell Gallery | ExchangeOnlineManagement 2.0.5 Module and PowerShell Gallery | MSOnline 1.1.183.66 Module: Install-Module -Name ExchangeOnlineManagement -RequiredVersion 2.0.5 Install-Module -Name MSOnline
- Connect to these two Module: Connect-ExchangeOnline -UserPrincipalName ******@contoso.com Connect-MsolService
- Run the command: $user_file =import-csv C:\Users\Administrator\Desktop\users.csv $user_file | ForEach-Object { Set-MsolUser -UserPrincipalName $_.Userprincipalname -title $_.Title}
- Done. Then you can check in the Microsoft 365 admin center.
Sincerely,
Jazlyn | Microsoft Community Moderator
***Note: In the event that you're unable to reply to this thread, please ensure that your Email address is verified in the Community Website by clicking on Your Account Name > "My Profile" > "Edit Profile" > Add your Email Address > tick "Receive email notifications" checkbox > click on "Save".***