Edit

Share via


Remove-EntraBetaUser

Removes a user.

Syntax

Default (Default)

Remove-EntraBetaUser

    -UserId <String>
    [<CommonParameters>]

Description

The Remove-EntraBetaUser cmdlet removes a user in Microsoft Entra ID. Specify the UserId parameter to remove the specified user in Microsoft Entra ID.

The calling user must be assigned at least one of the following Microsoft Entra roles:

  • User Administrator
  • Privileged Authentication Administrator

Examples

Example 1: Remove a user

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

This command removes the specified user in Microsoft Entra ID.

Example 2: Remove a user based on search results

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

This command removes the specified user in Microsoft Entra ID.

Parameters

-UserId

Specifies the ID of a user (as a UPN or UserId) 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.