Set-EntraAdministrativeUnit
Updates the properties of an administrative unit.
Syntax
Set-EntraAdministrativeUnit
-AdministrativeUnitId <String>
[-Description <String>]
[-DisplayName <String>]
[-MembershipType <String>]
[-MembershipRule <String>]
[-MembershipRuleProcessingState <String>]
[-Visibility <String>]
[<CommonParameters>]
Description
The Set-EntraAdministrativeUnit
cmdlet updates the properties of an administrative unit in Microsoft Entra ID. Specify AdministrativeUnitId
parameter to update a specific administrative unit.
In delegated scenarios, the signed-in user must be assigned a supported Microsoft Entra role or a custom role with the microsoft.directory/administrativeUnits/allProperties/allTasks
permission.
The following least-privileged roles are supported for this operation:
- Privileged Role Administrator
Examples
Example 1: Update DisplayName and description
Connect-Entra -Scopes 'AdministrativeUnit.ReadWrite.All'
$administrativeUnit = Get-EntraAdministrativeUnit -Filter "DisplayName eq 'Pacific Administrative Unit'"
Set-EntraAdministrativeUnit -AdministrativeUnitId $administrativeUnit.Id -DisplayName 'Pacific Admin Unit' -Description 'Pacific Admin Unit Description' -MembershipType 'Assigned'
This Command update DisplayName of specific administrative unit.
-AdministrativeUnitId
parameter specifies the ID of an administrative unit.-DisplayName
parameter specifies the display name for the administrative unit.-Description
parameter specifies the description for the administrative unit.
Parameters
-AdministrativeUnitId
Specifies the ID of an administrative unit in Microsoft Entra ID.
Type: | System.String |
Aliases: | ObjectId |
Position: | Named |
Default value: | None |
Required: | True |
Accept pipeline input: | True |
Accept wildcard characters: | False |
-Description
Specifies a description for the administrative unit.
Type: | System.String |
Position: | Named |
Default value: | None |
Required: | False |
Accept pipeline input: | False |
Accept wildcard characters: | False |
-DisplayName
Specifies a display name for the administrative unit.
Type: | System.String |
Position: | Named |
Default value: | None |
Required: | False |
Accept pipeline input: | False |
Accept wildcard characters: | False |
-MembershipRule
Specifies the dynamic membership rule applied to the administrative unit. The possible values are: dynamic
, assigned
. If not set, the default value is null
and the default behavior is assigned
. This parameter is optional.
Type: | System.String |
Position: | Named |
Default value: | None |
Required: | False |
Accept pipeline input: | False |
Accept wildcard characters: | False |
-MembershipRuleProcessingState
Controls if the dynamic membership rule is active. Set to On
to enable it or Paused
to stop updates. This parameter is optional.
Type: | System.String |
Position: | Named |
Default value: | None |
Required: | False |
Accept pipeline input: | False |
Accept wildcard characters: | False |
-MembershipType
Specifies the membership type of the administrative unit. Possible values are: dynamic
and assigned
. If not set, the default value is null
, and the membership type defaults to assigned
. This parameter is optional.
Type: | System.String |
Position: | Named |
Default value: | None |
Required: | False |
Accept pipeline input: | False |
Accept wildcard characters: | False |
-Visibility
Specifies the visibility of the administrative unit. Defaults to public
if not set. Set to HiddenMembership
to hide membership from nonmembers. This parameter is optional.
Type: | System.String |
Position: | Named |
Default value: | None |
Required: | False |
Accept pipeline input: | False |
Accept wildcard characters: | False |