Edit

Share via


Remove-EntraBetaUserManager

Removes a user's manager.

Syntax

Default (Default)

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.

Parameter properties

Type:System.String
Default value:None
Supports wildcards:False
DontShow:False
Aliases:ObjectId, UPN, Identity, UserPrincipalName

Parameter sets

(All)
Position:Named
Mandatory:True
Value from pipeline:True
Value from pipeline by property name:True
Value from remaining arguments:False

CommonParameters

This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutBuffer, -OutVariable, -PipelineVariable, -ProgressAction, -Verbose, -WarningAction, and -WarningVariable. For more information, see about_CommonParameters.