Start-CMCloudDistributionPoint

Start-CMCloudDistributionPoint

Starts the cloud distribution point service.

構文

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>]

詳細説明

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

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

パラメーター

-Id<String[]>

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

エイリアス

AzureServiceId

必須?

true

位置は?

named

既定値

なし

パイプライン入力を許可する

True (ByPropertyName)

ワイルドカード文字を許可する

false

-InputObject<IResultObject>

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

エイリアス

なし

必須?

true

位置は?

named

既定値

なし

パイプライン入力を許可する

True (ByPropertyName)

ワイルドカード文字を許可する

false

-Name<String>

Specifies the name of a cloud distribution point.

エイリアス

なし

必須?

true

位置は?

named

既定値

なし

パイプライン入力を許可する

True (ByPropertyName)

ワイルドカード文字を許可する

false

-Confirm

コマンドレットを実行する前に、ユーザーに確認を求めます。

必須?

false

位置は?

named

既定値

false

パイプライン入力を許可する

false

ワイルドカード文字を許可する

false

-WhatIf

コマンドレットを実行するとどのような結果になるかを表示します。コマンドレットは実行されません。

必須?

false

位置は?

named

既定値

false

パイプライン入力を許可する

false

ワイルドカード文字を許可する

false

<CommonParameters>

このコマンドレットは次の共通パラメーターをサポートします。-Verbose、-Debug、-ErrorAction、-ErrorVariable、-OutBuffer、-OutVariable.詳細については、以下を参照してください。 about_CommonParameters (https://go.microsoft.com/fwlink/p/?LinkID=113216)。

入力

入力型は、コマンドレットにパイプできるオブジェクトの型です。

出力

出力型は、コマンドレットによって生成されるオブジェクトの型です。

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

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 name

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 object

The first command uses the Get-CMCloudDistributionPoint cmdlet to get the distribution point with the specified identifier, and then saves it 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

New-CMCloudDistributionPoint

Remove-CMCloudDistributionPoint

Set-CMCloudDistributionPoint

Stop-CMCloudDistributionPoint