Get-CMCollectionQueryMembershipRule
获取设备或用户集合的查询成员身份规则。
语法
Get-CMCollectionQueryMembershipRule
-CollectionName <String>
[-RuleName <String>]
[<CommonParameters>]
Get-CMCollectionQueryMembershipRule
-CollectionId <String>
[-RuleName <String>]
[<CommonParameters>]
Get-CMCollectionQueryMembershipRule
-InputObject <IResultObject>
[-RuleName <String>]
[<CommonParameters>]
说明
使用此 cmdlet 获取设备或用户集合的一个或多个查询成员身份规则。 查询规则允许基于按计划运行的查询动态更新集合的成员身份。 有关详细信息,请参阅 如何在 Configuration Manager 中创建集合。
有关成员身份规则的详细信息,请参阅 Configuration Manager 中的集合简介。
注意
从 Configuration Manager 站点驱动器运行 Configuration Manager cmdlet,例如 PS XYZ:\>
。 有关详细信息,请参阅 入门。
示例
示例 1:获取所有系统集合的所有查询成员身份规则
此命令从名为“ 所有系统”的默认设备集合中获取查询成员身份规则。
Get-CMCollectionQueryMembershipRule -CollectionName "All Systems"
示例 2:查看“所有用户”集合上某个规则的查询表达式
此命令从 “所有用户” 集合中获取名为“ 所有用户” 的查询成员身份规则,并返回查询表达式。
Get-CMCollectionQueryMembershipRule -CollectionId "SMS00002" -RuleName "All Users" | Select-Object QueryExpression
参数
-CollectionId
指定集合的 ID 以获取规则。 此值是 CollectionID 属性,例如 或 XYZ00012
SMS00001
。
类型: | String |
别名: | Id |
Position: | Named |
默认值: | None |
必需: | True |
接受管道输入: | False |
接受通配符: | False |
-CollectionName
指定集合的名称以获取规则。
类型: | String |
别名: | Name |
Position: | Named |
默认值: | None |
必需: | True |
接受管道输入: | False |
接受通配符: | False |
-InputObject
为集合指定对象以获取规则。 若要获取此对象,请使用 Get-CMCollection、 Get-CMDeviceCollection 或 Get-CMUserCollection cmdlet。
类型: | IResultObject |
别名: | Collection |
Position: | Named |
默认值: | None |
必需: | True |
接受管道输入: | True |
接受通配符: | False |
-RuleName
指定要从集合中获取的查询规则的名称。
类型: | String |
Position: | Named |
默认值: | None |
必需: | False |
接受管道输入: | False |
接受通配符: | False |
输入
Microsoft.ConfigurationManagement.ManagementProvider.IResultObject
输出
System.Object
备注
此 cmdlet 类似于 Get-CMDeviceCollectionQueryMembershipRule 和 Get-CMUserCollectionQueryMembershipRule,它们特定于集合的类型。 此 cmdlet 适用于设备集合或用户集合。
相关链接
- Remove-CMCollectionQueryMembershipRule
- Get-CMCollectionDirectMembershipRule
- Get-CMCollectionExcludeMembershipRule
- Get-CMCollectionIncludeMembershipRule
- Add-CMDeviceCollectionQueryMembershipRule
- Add-CMUserCollectionQueryMembershipRule
- Get-CMDeviceCollectionQueryMembershipRule
- Get-CMUserCollectionQueryMembershipRule
- Get-CMCollection
- Get-CMDeviceCollection
- Get-CMUserCollection
- 如何在 Configuration Manager 中创建集合