ENTRA.UA.1001 - All users should have a manager except for CEO
All users should have a manager set except for CEO
Description
All users should have an assigned manager except for the CEO
How to fix
Confirm with HR who the employee's manager is.
Then run:
# Create the manager reference object
$managerRef = @{
'@odata.id' = "https://graph.microsoft.com/v1.0/users/$ManagerId"
}
# Use the Microsoft Graph PowerShell module to update the user's manager
Set-MgUserManagerByRef -UserId $UserId -BodyParameter $managerRef