Get-CMCollectionDirectMembershipRule
获取设备或用户集合的直接成员身份规则。
语法
Get-CMCollectionDirectMembershipRule
-CollectionName <String>
[-ResourceName <String>]
[<CommonParameters>]
Get-CMCollectionDirectMembershipRule
-CollectionName <String>
-Resource <IResultObject>
[<CommonParameters>]
Get-CMCollectionDirectMembershipRule
-CollectionName <String>
-ResourceId <String>
[<CommonParameters>]
Get-CMCollectionDirectMembershipRule
-CollectionId <String>
-Resource <IResultObject>
[<CommonParameters>]
Get-CMCollectionDirectMembershipRule
-CollectionId <String>
-ResourceId <String>
[<CommonParameters>]
Get-CMCollectionDirectMembershipRule
-CollectionId <String>
[-ResourceName <String>]
[<CommonParameters>]
Get-CMCollectionDirectMembershipRule
-InputObject <IResultObject>
-Resource <IResultObject>
[<CommonParameters>]
Get-CMCollectionDirectMembershipRule
-InputObject <IResultObject>
-ResourceId <String>
[<CommonParameters>]
Get-CMCollectionDirectMembershipRule
-InputObject <IResultObject>
[-ResourceName <String>]
[<CommonParameters>]
说明
使用此 cmdlet 获取设备或用户集合的一个或多个直接成员身份规则。
直接成员身份规则允许显式选择设备集合的成员。
默认集合没有直接的成员身份规则。 目标的任何集合都应具有以网站代码开头的 ID,而不是 SMS
。
有关详细信息,请参阅 如何在 Configuration Manager 中创建集合。
注意
从 Configuration Manager 站点驱动器运行 Configuration Manager cmdlet,例如 PS XYZ:\>
。 有关详细信息,请参阅 入门。
示例
示例 1:按名称获取集合的所有直接成员身份规则
此命令获取名为 Device01 的集合的直接成员身份规则。
Get-CMCollectionDirectMembershipRule -CollectionName "Device01"
示例 2:使用管道获取所有直接成员身份规则
此命令使用 Get-CMCollection cmdlet 获取名为 User02 的集合对象。 然后,它使用管道运算符将对象传递给 Get-CMCollectionDirectMembershipRule cmdlet。
Get-CMCollection -Name "User02" | Get-CMCollectionDirectMembershipRule
参数
-CollectionId
指定集合的 ID 以获取规则。 此值是 CollectionID 属性,例如 XYZ00012
。 由于默认集合不能有直接的成员身份规则,因此此 ID 以网站代码开头,而不是 SMS
。
类型: | 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 |
-Resource
指定资源、设备或用户对象,以从集合中获取其直接成员身份规则。 若要获取此对象,请使用 Get-CMResource、 Get-CMDevice 或 Get-CMUser cmdlet。
类型: | IResultObject |
Position: | Named |
默认值: | None |
必需: | True |
接受管道输入: | False |
接受通配符: | False |
-ResourceId
指定资源的 ID,以便从集合中获取其直接成员身份规则。 此值是 ResourceID 属性,例如 16777219
。
类型: | String |
Position: | Named |
默认值: | None |
必需: | True |
接受管道输入: | False |
接受通配符: | False |
-ResourceName
指定设备或用户的名称,以从集合中获取其直接成员身份规则。
类型: | String |
Position: | Named |
默认值: | None |
必需: | False |
接受管道输入: | False |
接受通配符: | True |
输入
Microsoft.ConfigurationManagement.ManagementProvider.IResultObject
输出
System.Object
备注
此 cmdlet 类似于 Get-CMDeviceCollectionDirectMembershipRule 和 Get-CMUserCollectionDirectMembershipRule,它们特定于集合的类型。 此 cmdlet 适用于设备集合或用户集合。
相关链接
- Remove-CMCollectionDirectMembershipRule
- Get-CMCollectionExcludeMembershipRule
- Get-CMCollectionIncludeMembershipRule
- Get-CMCollectionQueryMembershipRule
- Add-CMDeviceCollectionDirectMembershipRule
- Add-CMUserCollectionDirectMembershipRule
- Get-CMDeviceCollectionDirectMembershipRule
- Get-CMUserCollectionDirectMembershipRule
- Get-CMCollection
- Get-CMDeviceCollection
- Get-CMUserCollection
- Get-CMResource
- Get-CMDevice
- Get-CMUser
- 如何在 Configuration Manager 中创建集合