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 derfloh on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

SMS Web Report

Status
Not open for further replies.

joech

MIS
Joined
Aug 20, 2004
Messages
1
Location
CA
I need help creating a SMS report (SQL Statement ) which will collect all applicable and missing patches,list of computers with a collection prompt...
Any help appreciated!
 
Heres a start... for 2003 with 2.0 you need to modify the sms_def.mof


select SMS_R_System.NetbiosName, SMS_G_System_PATCHSTATE.Product, SMS_G_System_PATCHSTATE.QNumbers from SMS_R_System inner join SMS_G_System_PATCHSTATE on SMS_G_System_PATCHSTATE.ResourceID = SMS_R_System.ResourceId where SMS_G_System_PATCHSTATE.Status = "Applicable"
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top