Add-CMUserCollectionDirectMembershipRule

Add-CMUserCollectionDirectMembershipRule

Adds a direct membership rule to one or more Configuration Manager user collections.

Syntax

Parameter Set: ByCollectionIdAndResourceId
Add-CMUserCollectionDirectMembershipRule -CollectionId <String> -ResourceId <Int32> [-Confirm] [-WhatIf] [ <CommonParameters>]

Parameter Set: ByCollectionIdAndResourceValue
Add-CMUserCollectionDirectMembershipRule -CollectionId <String> -Resource <IResultObject> [-Confirm] [-WhatIf] [ <CommonParameters>]

Parameter Set: ByCollectionNameAndResourceId
Add-CMUserCollectionDirectMembershipRule -CollectionName <String> -ResourceId <Int32> [-Confirm] [-WhatIf] [ <CommonParameters>]

Parameter Set: ByCollectionNameAndResourceValue
Add-CMUserCollectionDirectMembershipRule -CollectionName <String> -Resource <IResultObject> [-Confirm] [-WhatIf] [ <CommonParameters>]

Parameter Set: ByCollectionValueAndResourceId
Add-CMUserCollectionDirectMembershipRule -Collection <IResultObject> -ResourceId <Int32> [-Confirm] [-WhatIf] [ <CommonParameters>]

Parameter Set: ByCollectionValueAndResourceValue
Add-CMUserCollectionDirectMembershipRule -Collection <IResultObject> -Resource <IResultObject> [-Confirm] [-WhatIf] [ <CommonParameters>]

Detailed Description

The Add-CMUserCollectionDirectMembershipRule cmdlet adds a rule that adds a specific resource to the user collections. You can specify the user collections by using their names, IDs, or by specifying an object that represents the collections.

A direct rule lets you explicitly choose the members of the user collection. For more information on collection rules in Microsoft System Center 2012 SP1 Configuration Manager, see Introduction to Collections in Configuration Manager (https://go.microsoft.com/fwlink/p/?LinkID=259433) on TechNet.

Parameters

-Collection<IResultObject>

Specifies a Configuration Manager user collection object where the rule is applied. To obtain a user collection object, use the Get-CMUserCollection 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 user 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 a user collection where the rule is applied.

Aliases

none

Required?

true

Position?

named

Default Value

none

Accept Pipeline Input?

True (ByPropertyName)

Accept Wildcard Characters?

false

-Resource<IResultObject>

Specifies the type of the resource that the cmdlet adds to the user collections.

Aliases

none

Required?

true

Position?

named

Default Value

none

Accept Pipeline Input?

True (ByPropertyName)

Accept Wildcard Characters?

false

-ResourceId<Int32>

Specifies the ID of a resource that the cmdlet adds to the user 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 a direct membership rule to a user collection

This command adds a direct membership rule that has the ID Res_94412512 to the Configuration Manager user collection named All Mobile Devices.

PS C:\> Add-CMUserCollectionDirectMembershipRule -CollectionName "All Mobile Devices" -ResourceId "Res_94412512"

Get-CMUserCollection

Get-CMUserCollectionDirectMembershipRule

Remove-CMUserCollectionDirectMembershipRule