Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Running Network Discovery on SMS 2.0

Status
Not open for further replies.

Busuka

MIS
Jan 25, 2004
10
JP
I've loaded SP5 for SMS 2.0. I would like to discover Windows 2000 and Windows XP boxes. Can someone advise on how I can create a query or run a collection looking for these operating systems?

Thanks
Busuka
 
Query for WinXP:

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_OPERATING_SYSTEM on SMS_G_System_OPERATING_SYSTEM.ResourceID = SMS_R_System.ResourceId where SMS_G_System_OPERATING_SYSTEM.Version like "5.1%" order by SMS_R_System.Name
__________
Query for Win2000:

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_OPERATING_SYSTEM on SMS_G_System_OPERATING_SYSTEM.ResourceID = SMS_R_System.ResourceId where SMS_G_System_OPERATING_SYSTEM.Version like "5.0%" order by SMS_R_System.Name
__________

Hope this helps !

Cheers,
Chris
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top