Get-CMCollectionIncludeMembershipRule
获取设备或用户集合的包含成员身份规则。
语法
Get-CMCollectionIncludeMembershipRule
-CollectionName <String>
[-IncludeCollectionName <String>]
[<CommonParameters>]
Get-CMCollectionIncludeMembershipRule
-CollectionName <String>
-IncludeCollection <IResultObject>
[<CommonParameters>]
Get-CMCollectionIncludeMembershipRule
-CollectionName <String>
-IncludeCollectionId <String>
[<CommonParameters>]
Get-CMCollectionIncludeMembershipRule
-CollectionId <String>
-IncludeCollection <IResultObject>
[<CommonParameters>]
Get-CMCollectionIncludeMembershipRule
-CollectionId <String>
-IncludeCollectionId <String>
[<CommonParameters>]
Get-CMCollectionIncludeMembershipRule
-CollectionId <String>
[-IncludeCollectionName <String>]
[<CommonParameters>]
Get-CMCollectionIncludeMembershipRule
-InputObject <IResultObject>
-IncludeCollection <IResultObject>
[<CommonParameters>]
Get-CMCollectionIncludeMembershipRule
-InputObject <IResultObject>
-IncludeCollectionId <String>
[<CommonParameters>]
Get-CMCollectionIncludeMembershipRule
-InputObject <IResultObject>
[-IncludeCollectionName <String>]
[<CommonParameters>]
说明
使用此 cmdlet 获取设备或用户集合的一个或多个 include 成员身份规则。 包含成员身份规则包括应用规则的集合的另一个集合的成员。
如果包含的集合的成员身份发生更改,Configuration Manager 会按计划动态更新集合的成员身份。
有关详细信息,请参阅 如何在 Configuration Manager 中创建集合。
注意
从 Configuration Manager 站点驱动器运行 Configuration Manager cmdlet,例如 PS XYZ:\>
。 有关详细信息,请参阅 入门。
示例
示例 1:获取所有包含成员身份规则
此命令获取名为 Device 的集合的所有包含成员身份规则。
Get-CMCollectionIncludeMembershipRule -CollectionName "Device"
示例 2:使用管道获取 include 成员身份规则
此命令首先使用 Get-CMCollection 获取名为 Users 的集合对象。 然后,它使用管道运算符将对象传递给 Get-CMCollectionIncludeMembershipRule cmdlet,后者获取集合对象的所有包含成员身份规则。
Get-CMCollection -Name "Users" | Get-CMCollectionIncludeMembershipRule
参数
-CollectionId
指定集合的 ID 以获取规则。 此值是 CollectionID 属性,例如 XYZ00012
。 由于默认集合没有包含成员身份规则,因此此 ID 以网站代码开头,而不是 SMS
。
类型: | String |
别名: | Id |
Position: | Named |
默认值: | None |
必需: | True |
接受管道输入: | False |
接受通配符: | False |
-CollectionName
指定集合的名称以获取规则。
类型: | String |
别名: | Name |
Position: | Named |
默认值: | None |
必需: | True |
接受管道输入: | False |
接受通配符: | False |
-IncludeCollection
为包含的集合指定对象以获取规则。 若要获取此对象,请使用 Get-CMCollection、 Get-CMDeviceCollection 或 Get-CMUserCollection cmdlet。
类型: | IResultObject |
Position: | Named |
默认值: | None |
必需: | True |
接受管道输入: | False |
接受通配符: | False |
-IncludeCollectionId
指定包含的集合的 ID 以获取规则。 此值是 CollectionID 属性,例如 XYZ00012
。 可以包含默认集合,因此此值可以以站点代码或 SMS
开头。
类型: | String |
Position: | Named |
默认值: | None |
必需: | True |
接受管道输入: | False |
接受通配符: | False |
-IncludeCollectionName
指定包含的集合的名称以获取规则。
类型: | String |
Position: | Named |
默认值: | None |
必需: | False |
接受管道输入: | False |
接受通配符: | False |
-InputObject
为集合指定对象以获取规则。 若要获取此对象,请使用 Get-CMCollection、 Get-CMDeviceCollection 或 Get-CMUserCollection cmdlet。
类型: | IResultObject |
别名: | Collection |
Position: | Named |
默认值: | None |
必需: | True |
接受管道输入: | True |
接受通配符: | False |
输入
Microsoft.ConfigurationManagement.ManagementProvider.IResultObject
输出
System.Object
备注
此 cmdlet 类似于 Get-CMDeviceCollectionIncludeMembershipRule 和 Get-CMUserCollectionIncludeMembershipRule,它们特定于集合的类型。 此 cmdlet 适用于设备集合或用户集合。
相关链接
- Remove-CMCollectionIncludeMembershipRule
- Get-CMCollectionDirectMembershipRule
- Get-CMCollectionExcludeMembershipRule
- Get-CMCollectionQueryMembershipRule
- Add-CMDeviceCollectionIncludeMembershipRule
- Add-CMUserCollectionIncludeMembershipRule
- Get-CMDeviceCollectionIncludeMembershipRule
- Get-CMUserCollectionIncludeMembershipRule
- Get-CMCollection
- Get-CMDeviceCollection
- Get-CMUserCollection
- 如何在 Configuration Manager 中创建集合