A cloud-based identity and access management service for securing user authentication and resource access
Hi @Jay Croyle ,
Thank you for contacting the Community forums.
To update users managers in bulk based on the job title you can use the following script. Please ensure you updated the object id of the manager in the script.
Connect-AzureAD
$managerID = "xxxxxxxxxxxxxxxxxxx"
$users = Get-AzureADUser -Filter "JobTitle eq 'Pennsylvania Minister'"
foreach ($user in $users) {
Set-AzureADUserManager -ObjectId $user.ObjectId -RefObjectId $managerID
}
Please don’t forget to "Accept the answer" and “up-vote” wherever the information provided helps you, this can be beneficial to other community members.