Remove-CMDeviceCollectionExcludeMembershipRule

Remove-CMDeviceCollectionExcludeMembershipRule

Removes an exclude membership rule from one or more device collection in the Configuration Manager hierarchy.

Syntax

Parameter Set: ByCollectionNameAndExcludeCollectionName
Remove-CMDeviceCollectionExcludeMembershipRule -CollectionName <String> -ExcludeCollectionName <String> [-Force] [-Confirm] [-WhatIf] [ <CommonParameters>]

Parameter Set: ByCollectionIdAndExcludeCollectionId
Remove-CMDeviceCollectionExcludeMembershipRule -CollectionId <String> -ExcludeCollectionId <String> [-Force] [-Confirm] [-WhatIf] [ <CommonParameters>]

Parameter Set: ByCollectionIdAndExcludeCollectionName
Remove-CMDeviceCollectionExcludeMembershipRule -CollectionId <String> -ExcludeCollectionName <String> [-Force] [-Confirm] [-WhatIf] [ <CommonParameters>]

Parameter Set: ByCollectionNameAndExcludeCollectionId
Remove-CMDeviceCollectionExcludeMembershipRule -CollectionName <String> -ExcludeCollectionId <String> [-Force] [-Confirm] [-WhatIf] [ <CommonParameters>]

Parameter Set: ByCollectionValueAndExcludeCollectionId
Remove-CMDeviceCollectionExcludeMembershipRule -Collection <IResultObject> -ExcludeCollectionId <String> [-Force] [-Confirm] [-WhatIf] [ <CommonParameters>]

Parameter Set: ByCollectionValueAndExcludeCollectionName
Remove-CMDeviceCollectionExcludeMembershipRule -Collection <IResultObject> -ExcludeCollectionName <String> [-Force] [-Confirm] [-WhatIf] [ <CommonParameters>]

Detailed Description

The Remove-CMDeviceCollectionExcludeMembershipRule cmdlet removes an exclude rule from the specified collections. You can specify the device collections by using their names, IDs, or by specifying an input object that represents the collections.

For more information about collection 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 ID 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

-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

-Force

Specifies whether you want to suppress the confirmation message that Configuration Manager displays at the command line before the rule is removed.

Aliases

none

Required?

false

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

This command removes 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:\> Remove-CMUserCollectionExcludeMembershipRule –CollectionId "9990000D" –ExcludeCollectionId "SMSDM001"

Get-CMUserCollectionExcludeMembershipRule

Add-CMUserCollectionExcludeMembershipRule