Start-CMCloudDistributionPoint

Start-CMCloudDistributionPoint

Starts the cloud distribution point service.

Syntax

Parameter Set: SearchByIdMandatory
Start-CMCloudDistributionPoint -Id <String[]> [-Confirm] [-WhatIf] [ <CommonParameters>]

Parameter Set: SearchByNameMandatory
Start-CMCloudDistributionPoint -Name <String> [-Confirm] [-WhatIf] [ <CommonParameters>]

Parameter Set: SearchByValueMandatory
Start-CMCloudDistributionPoint -InputObject <IResultObject> [-Confirm] [-WhatIf] [ <CommonParameters>]

Detailed Description

The Start-CMCloudDistributionPoint cmdlet starts the cloud distribution point service.

You can use the Stop-CMCloudDistributionPoint cmdlet to suspend distribution of content.

Parameters

-Id<String[]>

Specifies an array of identifiers for cloud distribution points. You can use a comma separated list.

Aliases

AzureServiceId

Required?

true

Position?

named

Default Value

none

Accept Pipeline Input?

True (ByPropertyName)

Accept Wildcard Characters?

false

-InputObject<IResultObject>

Specifies a cloud distribution point object. To obtain a cloud distribution point object, you can use the Get-CMCloudDistributionPoint cmdlet.

Aliases

none

Required?

true

Position?

named

Default Value

none

Accept Pipeline Input?

True (ByPropertyName)

Accept Wildcard Characters?

false

-Name<String>

Specifies the name of a cloud distribution point.

Aliases

none

Required?

true

Position?

named

Default Value

none

Accept Pipeline Input?

True (ByPropertyName)

Accept Wildcard Characters?

false

-Confirm

Prompts you for confirmation before running the cmdlet.

Required?

false

Position?

named

Default Value

false

Accept Pipeline Input?

false

Accept Wildcard Characters?

false

-WhatIf

Shows what would happen if the cmdlet runs. The cmdlet is not run.

Required?

false

Position?

named

Default Value

false

Accept Pipeline Input?

false

Accept Wildcard Characters?

false

<CommonParameters>

This cmdlet supports the common parameters: -Verbose, -Debug, -ErrorAction, -ErrorVariable, -OutBuffer, and -OutVariable. For more information, see    about_CommonParameters (https://go.microsoft.com/fwlink/p/?LinkID=113216).

Inputs

The input type is the type of the objects that you can pipe to the cmdlet.

Outputs

The output type is the type of the objects that the cmdlet emits.

Examples

Example 1: Start the cloud distribution point service using an IDthe cloud service

This command starts the cloud distribution point service for the cloud distribution point that has the specified identifier.

PS C:\> Start-CMCloudDistributionPoint -ID "16777242"

Example 2: Start the cloud distribution point service using a namethe cloud service

This command starts the cloud distribution point service for the cloud distribution point named West01.

PS C:\> Start-CMCloudDistributionPoint -Name "West01"

Example 3: Start the cloud distribution point service using an objectthe cloud service

This example uses the Get-CMCloudDistributionPoint cmdlet to specify which distribution points to start.

The first command saves the distribution point with the specified identifier in the $DistPnt variable.

The second command starts the cloud distribution point service for the distribution point stored in $DistPnt.

PS C:\> $DistPnt = Get-CMCloudDistributionPoint -Id "16777242"
PS C:\> Start-CMCloudDistributionPoint -InputObject $DistPnt

Get-CMCloudDistributionPoint

Remove-CMCloudDistributionPoint

Set-CMCloudDistributionPoint

Stop-CMCloudDistributionPoint