Get-CMCloudDistributionPoint

Get-CMCloudDistributionPoint

Gets cloud-based distribution points.

Syntax

Parameter Set: SearchByName
Get-CMCloudDistributionPoint [-Name <String> ] [ <CommonParameters>]

Parameter Set: SearchByGroup
Get-CMCloudDistributionPoint -DistributionPointGroup <IResultObject> [ <CommonParameters>]

Parameter Set: SearchByGroupId
Get-CMCloudDistributionPoint -DistributionPointGroupId <String> [ <CommonParameters>]

Parameter Set: SearchByGroupName
Get-CMCloudDistributionPoint -DistributionPointGroupName <String> [ <CommonParameters>]

Parameter Set: SearchByIdMandatory
Get-CMCloudDistributionPoint -Id <String[]> [ <CommonParameters>]

Detailed Description

The Get-CMCloudDistributionPoint cmdlet gets one or more cloud-based distribution points in Microsoft System Center 2012 SP1 Configuration Manager.

In Configuration Manager, you can use a cloud service in Azure to host a distribution point for storing files to download to clients. You can send packages and apps to and host packages and apps in cloud distribution points. For more information about cloud distribution points, see Planning for Content Management in Configuration Manager (https://go.microsoft.com/fwlink/?LinkId=266223) on TechNet.

You can use the Get-CMCloudDistributionPoint cmdlet to get distribution points to use with other cmdlets. For example, you might want to get a distribution point and then use the Stop-CMCloudDistributionPoint cmdlet to suspend it.

Parameters

-DistributionPointGroup<IResultObject>

Specifies a CMDistributionPointGroup object. To get a CMDistributionPointGroup object, use the Get-CMDistributionPointGroup cmdlet.

Aliases

none

Required?

true

Position?

named

Default Value

none

Accept Pipeline Input?

True (ByPropertyName)

Accept Wildcard Characters?

false

-DistributionPointGroupId<String>

Specifies the ID of a distribution point group.

Aliases

none

Required?

true

Position?

named

Default Value

none

Accept Pipeline Input?

True (ByPropertyName)

Accept Wildcard Characters?

false

-DistributionPointGroupName<String>

Specifies the name of a distribution point group.

Aliases

none

Required?

true

Position?

named

Default Value

none

Accept Pipeline Input?

True (ByPropertyName)

Accept Wildcard Characters?

false

-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

-Name<String>

Specifies the name of a cloud distribution point.

Aliases

none

Required?

false

Position?

named

Default Value

none

Accept Pipeline Input?

True (ByPropertyName)

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: Get all cloud distribution points

This command gets all the cloud distribution points.

PS C:\> Get-CMCloudDistributionPoint

Example 2: Get a cloud distribution point by name

This command gets a distribution point named West01.

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

Example 3: Get a cloud distribution point by ID

This command gets a distribution point with the specified ID.

PS C:\> Get-CMCloudDistributionPoint -Id "16777230"

New-CMCloudDistributionPoint

Remove-CMCloudDistributionPoint

Set-CMCloudDistributionPoint

Start-CMCloudDistributionPoint

Stop-CMCloudDistributionPoint