Why does a user collection created with a direct rule with an AD security group work to deliver software to users, but one created with a query rule doesn't work.
One with a direct rule only shows count = 1 in the console and this reflects 1 AD security group. When I try this, all my AD users get the software in the catalog.
One with a query rule should show count = # members in the security group. But my console doesn't get updated when I add and remove members from my security group. And multiple users don't get the software in the Catalog when I try this. I prefer the query
rule so I can see member count, but doesn't work.
Tried both of these query rules:
select SMS_R_USER.ResourceID,SMS_R_USER.ResourceType,SMS_R_USER.Name,SMS_R_USER.UniqueUserName,SMS_R_USER.WindowsNTDomain from SMS_R_User where SMS_R_User.UserGroupName="AD\\APADProd_R"
select SMS_R_USER.ResourceID,SMS_R_USER.ResourceType,SMS_R_USER.Name,SMS_R_USER.UniqueUserName,SMS_R_USER.WindowsNTDomain from SMS_R_User where SMS_R_User.SecurityGroupName="AD\\APADProd_R"
Philip Dahlin