Enable-AzureTrafficManagerProfile

Enables a Traffic Manager profile.

Note

The cmdlets referenced in this documentation are for managing legacy Azure resources that use Service Management APIs. See the Az PowerShell module for cmdlets to manage Azure Resource Manager resources.

Syntax

Enable-AzureTrafficManagerProfile
      -Name <String>
      [-PassThru]
      [-Profile <AzureSMProfile>]
      [<CommonParameters>]

Description

The Enable-AzureTrafficManagerProfile cmdlet enables a Microsoft Azure Traffic Manager profile. Specify the PassThru parameter to display whether the operation succeeds.

Examples

Example 1: Enable a Traffic Manager profile

PS C:\>Enable-AzureTrafficManagerProfile -Name "MyProfile"

This command enables the Traffic Manager profile named MyProfile.

Example 2: Enable a Traffic Manager profile and display the results

PS C:\>Enable-AzureTrafficManagerProfile -Name "MyProfile" -PassThru
True

This command enables the Traffic Manager profile named MyProfile and displays whether the command succeeded.

Parameters

-Name

Specifies the name of the Traffic Manager profile to enable.

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

-PassThru

Returns $True if the operation succeeded; otherwise, $False. By default, this cmdlet does not generate any output.

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

-Profile

Specifies the Azure profile from which this cmdlet reads. If you do not specify a profile, this cmdlet reads from the local default profile.

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

Outputs

Boolean

This cmdlet generates $True or $False. If the operation succeeds and if you specify the PassThru parameter, this cmdlet returns a value of $True.