Set-MsolAdministrativeUnit

Note



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

The Set-MsolAdministrativeUnit cmdlet is used to update the properties of an administrative unit.

Syntax

Set-MsolAdministrativeUnit -ObjectId <Guid> [-DisplayName <String>] [-Description <String>] [-TenantId <Guid>] [<CommonParameters>]

Parameters

    -ObjectId <Guid>
        The unique ID of the administrative unit to update.
        
        Required?                    true
        Position?                    named
        Default value                
        Accept pipeline input?       true (ByPropertyName)
        Accept wildcard characters?  false
        


    -Description <string>
        The description of the administrative unit.
        
        Required?                    false
        Position?                    named
        Default value                
        Accept pipeline input?       true (ByPropertyName)
        Accept wildcard characters?  false
        
    -DisplayName <string>
        The display name of the administrative unit.
        
        Required?                    false
        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 first locates the administrative unit with the name “West Coast” and assigns it a description value of “West Coast region”.

$au = Get-MsolAdministrativeUnit -searchstring “West Coast”
Set-MsolAdministrativeUnit -Description “West Coast region” –ObjectID $au.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 Windows Azure Active Directory by using Windows PowerShell