Hello Jennifer
I understand you want to add the company name to ALL of your users in Azure Active Directory.
Easiest will be using Powershell, for example the following script.
#name your company name as desired
$YourCompanyName = "CompanyName"
# Install AzureAD module if needed
Install-Module -Name AzureAD
# Connect to Azure AD
Connect-AzureAD
# Get the list of all users
$users = Get-AzureADUser -All $true
# Loop through users and add company name
foreach ($user in $users) {
$updatedUser = $user | Set-AzureADUser -Company $YourCompanyName
Write-Host "Company name added for user: $($updatedUser.UserPrincipalName)"
}
# Disconnect from Azure AD
Disconnect-AzureAD
Don't forget to fill $YourCompanyName at the beginning with your desired name.
If this does help to solve your request, please "accept this as answer". This helps others to identify the solution and serves as a token of appreciation.
Best Regard,
Yannic