Remove-MsolAdministrativeUnitMember

Note



  • The cmdlets were previously known as the Microsoft Online Services Module for Windows PowerShell cmdlets.

The Remove-MsolAdministrativeUnitMember cmdlet is used to remove a member from an administrative unit.

Syntax

Remove-MsolAdministrativeUnitMember -AdministrativeUnitObjectId <Guid> -AdministrativeUnitMemberObjectId <Guid> [-TenantId <Guid>] [<CommonParameters>]

Parameters

    -AdministrativeUnitMemberObjectId <Guid>
        The object ID of the member to remove from the administrative unit.
        
        Required?                    true
        Position?                    named
        Default value                
        Accept pipeline input?       true (ByPropertyName)
        Accept wildcard characters?  false
                
    -AdministrativeUnitObjectId <Guid>
        The ID of the administrative unit to remove members from.
        
        Required?                    true
        Position?                    named
        Default value                
        Accept pipeline input?       true (ByPropertyName)
        Accept wildcard characters?  false
        
    -TenantId <Guid>
        The unique ID of the tenant to perform the operation on. If this is 
        not provided then the value will default to the tenant of the current 
        user. This parameter is only applicable to partner users.
        
        Required?                    false
        Position?                    named
        Default value                
        Accept pipeline input?       true (ByPropertyName)
        Accept wildcard characters?  false
        
    <CommonParameters>
        This cmdlet supports the common parameters: Verbose, Debug,
        ErrorAction, ErrorVariable, WarningAction, WarningVariable,
        OutBuffer and OutVariable. For more information, type,
        "get-help about_commonparameters".

Examples

The following command removes member user@contoso.com from the administrative unit “West Coast”.

$au = Get-MsolAdministrativeUnit -searchstring “West Coast”
$user = Get-MsolUser -UserPrincipalName “user@contoso.com”
Remove-MsolAdministrativeUnitMember –AdministrativeUnitObjectId $au.ObjectId –AdministrativeUnitMemberObjectId $user.ObjectId

Additional Resources

There are several other places you can get more information and help. These include:

See Also

Other Resources

Using Administrative Units - Public Preview
Manage Azure Active Directory by using Windows PowerShell