Remove-EntraUserManager

Removes a user's manager.

Syntax

Remove-EntraUserManager
      -UserId <String>

Description

The Remove-EntraUserManager cmdlet removes a user's manager in Microsoft Entra ID. Specify the UserId parameter to remove the manager for a user in Microsoft Entra ID.

Examples

Example 1: Remove the manager of a user

Connect-Entra -Scopes 'User.ReadWrite.All'
$User = Get-EntraUser -UserId 'SawyerM@Contoso.com'
Remove-EntraUserManager -UserId $User.ObjectId

This example shows how to remove a user's manager.

You can use Get-EntraUser command to get the user's details.

Parameters

-UserId

Specifies the ID of a user (as a User Principle Name or ObjectId) in Microsoft Entra ID.

Type:System.String
Aliases:ObjectId
Position:Named
Default value:None
Required:True
Accept pipeline input:True
Accept wildcard characters:False