Start-CMCloudDistributionPoint
Updated: March 1, 2013
Applies To: System Center 2012 Configuration Manager SP1
Start-CMCloudDistributionPoint
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 distribution of content from a cloud-based distribution point.
In Microsoft System Center 2012 Configuration Manager, you can use a cloud service in Windows Azure to host a distribution point for storing files that enable packages to run on client computers. Users can download and run these files for advertised packages. For more information about cloud distribution points, see Planning for Content Management in Configuration Manager (http://go.microsoft.com/fwlink/?LinkId=266223).
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 executing the command.
Required? | false |
Position? | named |
Default Value | false |
Accept Pipeline Input? | false |
Accept Wildcard Characters? | false |
-WhatIf
Describes what would happen if you executed the command without actually executing the command.
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.
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 distribution point using an ID
This command starts the cloud distribution point that has the specified identifier.
PS C:\> Start-CMCloudDistributionPoint -ID "16777242"
Example 2: Start distribution point using a name
This command starts the cloud distribution point named West01.
PS C:\> Start-CMCloudDistributionPoint -Name "West01"
Example 3: Start distribution point using an object
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 distribution point stored in $DistPnt.
PS C:\> $DistPnt = Get-CMCloudDistributionPoint -Id "16777242" PS C:\> Start-CMCloudDistributionPoint -InputObject $DistPnt
