Set-AzureADDomain

Updates a domain.

Syntax

Set-AzureADDomain
   -Name <String>
   [-IsDefault <Boolean>]
   [-IsDefaultForCloudRedirections <Boolean>]
   [-SupportedServices <System.Collections.Generic.List`1[System.String]>]
   [<CommonParameters>]

Description

The Set-AzureADDomain cmdlet updates a domain in Azure Active Directory (AD).

Examples

Example 1: Set the domain as the default domain for new user account creation

PS C:\>Set-AzureADDomain -Name Contoso.com -IsDefault $true

This command updates the default domain (One per company) used for new account creation.

Example 2: Set the list of domain capabilities

PS C:\>Set-AzureADDomain -Name Contoso.com -SupportedServices @("Email", "OfficeCommunicationsOnline")

This command updates the supported services for this domain.

Example 3: Set the default domain for cloud redirections

PS C:\>Set-AzureADDomain -Name Contoso.com -IsDefaultForCloudRedirections $true

This command updates the default domain used for cloud redirections.

Parameters

-IsDefault

Indicates whether or not this is the default domain that is used for user creation. There is only one default domain per company.

Type:Boolean
Position:Named
Default value:None
Required:False
Accept pipeline input:False
Accept wildcard characters:False

-IsDefaultForCloudRedirections

Indicates whether or not this is the default domain used for cloud redirections.

Type:Boolean
Position:Named
Default value:None
Required:False
Accept pipeline input:False
Accept wildcard characters:False

-Name

The fully qualified name of the domain.

Type:String
Position:Named
Default value:None
Required:True
Accept pipeline input:True
Accept wildcard characters:False

-SupportedServices

The capabilities assigned to the domain.

Type:List<T>[String]
Position:Named
Default value:None
Required:False
Accept pipeline input:False
Accept wildcard characters:False

Notes

See the migration guide for Set-AzureADDomain to the Microsoft Graph PowerShell.