Remove-EntraBetaUserManager

Removes a user's manager.

Syntax

Remove-EntraBetaUserManager
      -UserId <String>
      [<CommonParameters>]

Description

The Remove-EntraBetaUserManager 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'
Remove-EntraBetaUserManager -UserId 'SawyerM@Contoso.com'

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

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

Example 2: Remove the manager of a user via pipelining

Connect-Entra -Scopes 'User.ReadWrite.All'
Get-EntraBetaUser -UserId 'SawyerM@Contoso.com' | Remove-EntraBetaUserManager

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

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