How do I create a collection that lists all the computers with a program installed? I'm not concerned about the version of the program though. I have one that I was trying but it doesn't seem like it is working.
select SMS_R_SYSTEM.ResourceID,SMS_R_SYSTEM.ResourceType,SMS_R_SYSTEM.Name,SMS_R_SYSTEM.SMSUniqueIdentifier,SMS_R_SYSTEM.ResourceDomainORWorkgroup,SMS_R_SYSTEM.Client from SMS_R_System inner join SMS_G_System_ADD_REMOVE_PROGRAMS on SMS_G_System_ADD_REMOVE_PROGRAMS.ResourceID = SMS_R_System.ResourceID where SMS_G_System_ADD_REMOVE_PROGRAMS.DisplayName like "Adobe Reader X"
We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.
How do I create a collection that lists all the computers with a program installed? I'm not concerned about the version of the program though. I have one that I was trying but it doesn't seem like it is working.
Does the "like" statement not work?
Share this post
Link to post
Share on other sites