Set-CMCloudDistributionPoint
Updated: March 1, 2013
Applies To: System Center 2012 Configuration Manager SP1
Set-CMCloudDistributionPoint
Syntax
Parameter Set: SetById Set-CMCloudDistributionPoint -Id <String[]> [-Description <String> ] [-NewName <String> ] [-StorageQuotaGB <Int32> ] [-StorageQuotaGrow <Boolean> ] [-TrafficOutGB <Int32> ] [-TrafficOutStopService <Boolean> ] [-Confirm] [-WhatIf] [ <CommonParameters>] Parameter Set: SetByName Set-CMCloudDistributionPoint -Name <String> [-Description <String> ] [-NewName <String> ] [-StorageQuotaGB <Int32> ] [-StorageQuotaGrow <Boolean> ] [-TrafficOutGB <Int32> ] [-TrafficOutStopService <Boolean> ] [-Confirm] [-WhatIf] [ <CommonParameters>] Parameter Set: SetByValueMandatory Set-CMCloudDistributionPoint -InputObject <IResultObject> [-Description <String> ] [-NewName <String> ] [-StorageQuotaGB <Int32> ] [-StorageQuotaGrow <Boolean> ] [-TrafficOutGB <Int32> ] [-TrafficOutStopService <Boolean> ] [-Confirm] [-WhatIf] [ <CommonParameters>]
Detailed Description
The Set-CMCloudDistributionPoint cmdlet changes settings for 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 Set-CMCloudDistributionPoint cmdlet to specify the amount of content to store on a cloud distribution point. You can also use the cmdlet to configure settings that enable users and devices to access the content. You can provide a name and description for the distribution point.
Parameters
-Description<String>
Specifies a description for a cloud distribution point.
Aliases | none |
Required? | false |
Position? | named |
Default Value | none |
Accept Pipeline Input? | True (ByPropertyName) |
Accept Wildcard Characters? | false |
-Id<String[]>
Specifies an array of identifiers for one or more 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 a name for a cloud distribution point.
Aliases | none |
Required? | true |
Position? | named |
Default Value | none |
Accept Pipeline Input? | True (ByPropertyName) |
Accept Wildcard Characters? | false |
-NewName<String>
Specifies a new name for the cloud-based distribution point.
Aliases | none |
Required? | false |
Position? | named |
Default Value | none |
Accept Pipeline Input? | True (ByPropertyName) |
Accept Wildcard Characters? | false |
-StorageQuotaGB<Int32>
Specifies the amount of data storage, in gigabytes, allowed in the monthly storage quota for the Windows Azure subscription.
Aliases | StorageQuotaInGB |
Required? | false |
Position? | named |
Default Value | none |
Accept Pipeline Input? | True (ByPropertyName) |
Accept Wildcard Characters? | false |
-StorageQuotaGrow<Boolean>
Specifies whether the storage quota can grow. By default, the amount of stored data cannot exceed the value of the StorageQuotaInGB parameter. The default value for this parameter is $False.
Aliases | none |
Required? | false |
Position? | named |
Default Value | none |
Accept Pipeline Input? | True (ByPropertyName) |
Accept Wildcard Characters? | false |
-TrafficOutGB<Int32>
Specifies the amount of data transfer, in gigabytes, allowed in the monthly transfer quota for the Windows Azure subscription.
Aliases | TrafficOutInGB |
Required? | false |
Position? | named |
Default Value | none |
Accept Pipeline Input? | True (ByPropertyName) |
Accept Wildcard Characters? | false |
-TrafficOutStopService<Boolean>
Specifies whether Configuration Manager stops data transfers after the distribution point reaches the quota specified in the TrafficOutInGB parameter. The default value for this parameter is $False.
Aliases | none |
Required? | false |
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: Set values for a distribution point
This command sets the description and name for a distribution point to the provided strings. It also sets values for the storage quota and data transfer.
PS C:\> Set-CMCloudDistributionPoint -Id 16777237 -Description "Western distribution point" -Name "West01" -StorageQuotaInGB 50 -TrafficOutInGB 50
