|
rbennett806 -> RE: Collection to Exclude Machines with Specific Software Installed (9/29/2008 3:47:13 PM)
|
Here's an example membership query using Mozilla Firefox... select SYS.ResourceID,SYS.ResourceType,SYS.Name,SYS.SMSUniqueIdentifier,SYS.ResourceDomainORWorkgroup,SYS.Client from SMS_R_System as sys WHERE sys.ResourceID NOT IN (SELECT ARP.ResourceID FROM SMS_G_System_ADD_REMOVE_PROGRAMS as ARP WHERE ARP.DisplayName = "Mozilla Firefox (2.0.0.16)" AND ARP.Version = "2.0.0.16 (en-US)") AND sys.Decommissioned = 0 AND sys.Client = 1 AND sys.Obsolete = 0 Make sure to limit it to another one of your collections...
|
|
|
|