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!

Viewing results of SMS Audit

Status
Not open for further replies.

lanman

MIS
Dec 29, 1998
4
US
How do I review the results of a software audit that I ran? Can I format the output of the audit into a report that shows me the various packages on the client machines sorted in any way I want? Do I need Crystal Reporting for this?
 
You can do a basic audit report using a query, it's not brilliant but then I dont think SMS is the right tool for a software audit. I've used a few and SMS is the least flexible or helpful.

If you create a new query, click Edit Query Statement, then Show Query Language, then paste the following text into it.

select SMS_R_System.Name, SMS_G_System_SoftwareProduct.ProductName, SMS_G_System_SoftwareProduct.ProductVersion from SMS_R_System inner join SMS_G_System_SoftwareProduct on SMS_G_System_SoftwareProduct.ResourceID = SMS_R_System.ResourceId order by SMS_R_System.Name DESC

Its a simple report, showing PC Name, Product and Version. I'm sure you'll be able to modify it to suit your needs.

Take care.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top