alokin123
Posts: 28
Score: 0 Joined: 8/7/2008 Status: offline
|
i would like to create a collection of all machines that have any version other than MS Project 2007 and MS Visio 2007. i.e. A machine for collections with project 2003 and less, another collection with visio 2003 and less and one combined of those 2 collections. Is someone able to point me in the right direction on what criteria i should be using and looking for? Most machines have Visio viewer but i dont want that returned. I'm just playing around with it at the moment with just getting machines with Project but i dont think i am quite there. If anyone can offer some advise that would be great:
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_CollectedFile on SMS_G_System_CollectedFile.ResourceID = SMS_R_System.ResourceId where SMS_G_System_CollectedFile.FileName like "%proj%"
|