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.
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.