Reporting on Software not installed
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎06-04-2012 05:28 AM
We are collecting the laptop/desktop information through the Help the Help Desk in the login script. Now, as part of a compliance check, we need to report on computer not running a certain piece of software.
e.g.:
Hostname Software
COM-0001 SoftwareA 1.2.3
COM-0003
COM-0004 SoftwareA 1.2.3
Looking at this report we would see which machine don't hold that mandatory software.
We found it quite easy to report on discovered machines, on machines running the software, but i can't find an easy way to have a single report listing the discovered machine together with the information around that specific software.
Anybody encounter the same kind of requirement?
- Labels:
-
Service Mapping
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎10-08-2013 08:49 AM
Hi - Did you ever figure out a proper filter to get this scenario to work? I have the same requirement now in my company, and cannot seem to get a proper filter.
Thanks
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎04-23-2015 01:56 PM
Hi,
Did you ever get anywhere with this? I've been watching this for a while waiting for a solution.
thanks.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎02-18-2016 02:33 AM
Also very interested by this, it seems an obvious requirement so am surprised that it is not available OOB.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎07-05-2016 06:59 AM
I approached this a little different way. In my scenario, i was looking to see if very specific software was NOT installed. In my example, it's "Symantec Endpoint Protection Client 12.1" The script is currently hardcoded but if you spent a little time it would be easy to make more generic.
I compared the cmdb_ci_computer table against the cmdb_sam_sw_install table using a script and then used the results of the script in a report on the cmdb_ci_computer table.
So here are the mechanics to make this work
- Add a script include (system definition / script include) and load the script (attached) I named mine SymantecNotFound
- Alter the script to reference the Display Name or model of the software you are validating if it is installed ( line 15 in the script)
- Create a report on the cmdb_ci_computer table and filter on the script. The script returns a string of sys_id values so you filter on the sys_id and insert the script
- Sys_id is javascript:SymantecNotFound(); (see screeshot)
Hope this helps someone
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎11-18-2016 12:28 AM