Link to home
Start Free TrialLog in
Avatar of kulisncc
kulisncc

asked on

Multiple Records Populate of the Same System when Running SCCM Query

I created an SCCM Query that Vista portables with less than the Cisco VPN 5.0.03.0560 Client. It works well but it lists multiple records of the same systems. For instance when I run the query system xyz will be listed around 8 times or so when I just want it to be listed once. My query code is listed below. If anyone can help me out I would appreciate it. Thanks.
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, SMS_R_System.OperatingSystemNameandVersion from  SMS_R_System inner join SMS_G_System_SYSTEM_ENCLOSURE on SMS_G_System_SYSTEM_ENCLOSURE.ResourceID = SMS_R_System.ResourceId inner join SMS_G_System_AF_ADDREMPROGS on SMS_G_System_AF_ADDREMPROGS.ResourceID = SMS_R_System.ResourceId where SMS_G_System_AF_ADDREMPROGS.DisplayName < "Cisco Systems VPN Client .0.03.0560" and SMS_G_System_SYSTEM_ENCLOSURE.ChassisTypes in ("8","9","10","14") and SMS_R_System.OperatingSystemNameandVersion = "Microsoft Windows NT Workstation 6.0" or SMS_R_System.OperatingSystemNameandVersion = "Microsoft Windows NT Workstation 6.0 (Tablet Edition)"

Open in new window

ASKER CERTIFIED SOLUTION
Avatar of kulisncc
kulisncc

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial