共用方式為


Remove-MsolScopedRoleMember

從管理單位範圍角色中移除使用者。

語法

Remove-MsolScopedRoleMember
      -RoleObjectId <Guid>
      -AdministrativeUnitObjectId <Guid>
      [-RoleMemberObjectId <Guid>]
      [-RoleMemberUserPrincipalName <String>]
      [-TenantId <Guid>]
      [<CommonParameters>]

Description

Remove-MsolScopedRoleMember Cmdlet 會從管理單位範圍角色中移除使用者。

範例

範例 1:從管理單位範圍角色移除成員

PS C:\> $WestCoastAu = Get-MsolAdministrativeUnit -SearchString "West Coast"
PS C:\> $UaAdmin = Get-MsolRole -RoleName "User Account Administrator"
PS C:\> $Admin01 = Get-MsolUser -UserPrincipalName "elisadaugherty@contoso.com"
PS C:\> Remove-MsolScopedRoleMember -RoleObjectId $UaAdmin.ObjectId -AdministrativeUnitObjectId $WestCoastAu.ObjectId -RoleMemberObjectId $Admin01.ObjectId

此範例會 elisadaugherty@contoso.com 從名為 West Coast 之管理單位範圍的用戶帳戶管理員角色中移除。 在此範例之後,使用者不再是角色的成員。

參數

-AdministrativeUnitObjectId

指定管理單位的唯一物件識別碼。

類型:Guid
Position:Named
預設值:None
必要:True
接受管線輸入:False
接受萬用字元:False

-RoleMemberObjectId

指定要從範圍設定為管理單位的角色中移除之成員的唯一對象標識碼。 指定 RoleMemberUserPrincipalNameRoleMemberObjectId 參數。

類型:Guid
Position:Named
預設值:None
必要:False
接受管線輸入:True
接受萬用字元:False

-RoleMemberUserPrincipalName

指定要移除之成員的用戶主體名稱。 指定 RoleMemberUserPrincipalNameRoleMemberObjectId

類型:String
Position:Named
預設值:None
必要:False
接受管線輸入:True
接受萬用字元:False

-RoleObjectId

指定要從中移除成員之角色的唯一對象標識碼。

類型:Guid
Position:Named
預設值:None
必要:True
接受管線輸入:False
接受萬用字元:False

-TenantId

指定要在其中執行作業之租使用者的唯一標識符。 預設值為目前使用者的租使用者。 此參數僅適用於合作夥伴使用者。

類型:Guid
Position:Named
預設值:None
必要:False
接受管線輸入:True
接受萬用字元:False