Add-CMDeviceCollectionIncludeMembershipRule

Add-CMDeviceCollectionIncludeMembershipRule

Adds an include membership rule to one or more Configuration Manager device collections.

Syntax

Parameter Set: ByCollectionIdAndIncludeCollectionId
Add-CMDeviceCollectionIncludeMembershipRule -CollectionId <String> -IncludeCollectionId <String> [-Confirm] [-WhatIf] [ <CommonParameters>]

Parameter Set: ByCollectionIdAndIncludeCollectionName
Add-CMDeviceCollectionIncludeMembershipRule -CollectionId <String> -IncludeCollectionName <String> [-Confirm] [-WhatIf] [ <CommonParameters>]

Parameter Set: ByCollectionIdAndIncludeCollectionValue
Add-CMDeviceCollectionIncludeMembershipRule -CollectionId <String> -IncludeCollection <IResultObject> [-Confirm] [-WhatIf] [ <CommonParameters>]

Parameter Set: ByCollectionNameAndIncludeCollectionId
Add-CMDeviceCollectionIncludeMembershipRule -CollectionName <String> -IncludeCollectionId <String> [-Confirm] [-WhatIf] [ <CommonParameters>]

Parameter Set: ByCollectionNameAndIncludeCollectionName
Add-CMDeviceCollectionIncludeMembershipRule -CollectionName <String> -IncludeCollectionName <String> [-Confirm] [-WhatIf] [ <CommonParameters>]

Parameter Set: ByCollectionNameAndIncludeCollectionValue
Add-CMDeviceCollectionIncludeMembershipRule -CollectionName <String> -IncludeCollection <IResultObject> [-Confirm] [-WhatIf] [ <CommonParameters>]

Parameter Set: ByCollectionValueAndIncludeCollectionId
Add-CMDeviceCollectionIncludeMembershipRule -Collection <IResultObject> -IncludeCollectionId <String> [-Confirm] [-WhatIf] [ <CommonParameters>]

Parameter Set: ByCollectionValueAndIncludeCollectionName
Add-CMDeviceCollectionIncludeMembershipRule -Collection <IResultObject> -IncludeCollectionName <String> [-Confirm] [-WhatIf] [ <CommonParameters>]

Parameter Set: ByCollectionValueAndIncludeCollectionValue
Add-CMDeviceCollectionIncludeMembershipRule -Collection <IResultObject> -IncludeCollection <IResultObject> [-Confirm] [-WhatIf] [ <CommonParameters>]

Detailed Description

The Add-CMDeviceCollectionIncludeMembershipRule cmdlet adds a rule that includes the members of another collection in the device collections where the rule is applied. You can specify the device collections where the rule is applied by using their names, IDs, or by specifying an object that represents the collections. You can specify the collection whose members are included by using its name, ID, or an object that represents the collection.

Configuration Manager dynamically updates the membership of the device collection on a schedule if the membership of the included collection changes. For more information on these rules in Microsoft System Center 2012 Configuration Manager, see Introduction to Collections in Configuration Manager (https://go.microsoft.com/fwlink/p/?LinkID=259433) in the TechNet library.

Parameters

-Collection<IResultObject>

Specifies a Configuration Manager device collection object. To obtain a device collection object, use the Get-CMDeviceCollection cmdlet.

Aliases

none

Required?

true

Position?

named

Default Value

none

Accept Pipeline Input?

True (ByPropertyName)

Accept Wildcard Characters?

false

-CollectionId<String>

Specifies the IDs of the device collections where the rule is applied.

Aliases

none

Required?

true

Position?

named

Default Value

none

Accept Pipeline Input?

True (ByPropertyName)

Accept Wildcard Characters?

false

-CollectionName<String>

Specifies the name of the device collection where the rule is applied.

Aliases

none

Required?

true

Position?

named

Default Value

none

Accept Pipeline Input?

True (ByPropertyName)

Accept Wildcard Characters?

false

-IncludeCollection<IResultObject>

Specifies an object that represents the collection whose members are included in the device collections.

Aliases

none

Required?

true

Position?

named

Default Value

none

Accept Pipeline Input?

True (ByPropertyName)

Accept Wildcard Characters?

false

-IncludeCollectionId<String>

Specifies the ID of the collection whose members are included in the device collection.

Aliases

none

Required?

true

Position?

named

Default Value

none

Accept Pipeline Input?

True (ByPropertyName)

Accept Wildcard Characters?

false

-IncludeCollectionName<String>

Specifies the name of the collection whose members are included in the device collections.

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: Add an include membership rule to a device collection

This command adds a rule that includes the members of the collection that has the ID SMSDM001 in the device collection that has the ID 9990000D0.

PS C:\> Add-CMDeviceCollectionIncludeMembershipRule –CollectionId "9990000D" –IncludeCollectionId "SMSDM001"

Get-CMDeviceCollectionIncludeMembershipRule

Remove-CMDeviceCollectionIncludeMembershipRule