Get-CMDeviceCollectionExcludeMembershipRule

Get-CMDeviceCollectionExcludeMembershipRule

Gets the exclude membership rules from one or more device collections in the Configuration Manager hierarchy.

Syntax

Parameter Set: ByCollectionNameAndExcludeCollectionName
Get-CMDeviceCollectionExcludeMembershipRule -CollectionName <String> -ExcludeCollectionName <String> [ <CommonParameters>]

Parameter Set: ByCollectionIdAndExcludeCollectionId
Get-CMDeviceCollectionExcludeMembershipRule -CollectionId <String> -ExcludeCollectionId <String> [ <CommonParameters>]

Parameter Set: ByCollectionIdAndExcludeCollectionName
Get-CMDeviceCollectionExcludeMembershipRule -CollectionId <String> -ExcludeCollectionName <String> [ <CommonParameters>]

Parameter Set: ByCollectionNameAndExcludeCollectionId
Get-CMDeviceCollectionExcludeMembershipRule -CollectionName <String> -ExcludeCollectionId <String> [ <CommonParameters>]

Parameter Set: ByCollectionValueAndExcludeCollectionId
Get-CMDeviceCollectionExcludeMembershipRule -Collection <IResultObject> -ExcludeCollectionId <String> [ <CommonParameters>]

Parameter Set: ByCollectionValueAndExcludeCollectionName
Get-CMDeviceCollectionExcludeMembershipRule -Collection <IResultObject> -ExcludeCollectionName <String> [ <CommonParameters>]

Detailed Description

The Get-CMDeviceCollectionExcludeMembershipRule cmdlet retrieves the rules that exclude the members of another collection from 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 excluded by using its name, ID, or an object that represents the collection.

Microsoft System Center 2012 Configuration Manager dynamically updates the membership of the device collection on a schedule if the membership of the excluded collection changes. For more information about membership rules, 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

-ExcludeCollectionId<String>

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

Aliases

none

Required?

true

Position?

named

Default Value

none

Accept Pipeline Input?

True (ByPropertyName)

Accept Wildcard Characters?

false

-ExcludeCollectionName<String>

Specifies the name of the collection whose members are excluded from the device collections.

Aliases

none

Required?

true

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 the exclude membership rules from a device collection

This command gets the rules that exclude the members of the collection that has the ID SMSDM001 from the device collection that has the ID 9990000D.

PS C:\> Get-CMDeviceCollectionExcludeMembershipRule –CollectionId "9990000D" –ExcludeCollectionId "SMSDM001"

Add-CMDeviceCollectionExcludeMembershipRule

Remove-CMDeviceCollectionExcludeMembershipRule