Registrations to Open-AudIT forums are now closed. To ask any new questions please visit Opmantek Community Questions.

Open-AudIT

What's on your network?
It is currently Fri Mar 29, 2024 12:57 am

All times are UTC + 10 hours




Forum locked This topic is locked, you cannot edit posts or make further replies.  [ 6 posts ] 
Author Message
PostPosted: Thu Jan 21, 2016 7:41 am 
Offline
Contributor

Joined: Thu May 03, 2007 10:38 am
Posts: 116
Location: Midwest
I am not seeing IE11 pulling in any of my PCs. I want to do a full report of what device has IE11 and which ones need it.

I see Internet Explorer 9, Windows Internet Explorer 10 listed but I know my PC had IE11 on it and doesn't show in Software, Installed. I don't see it in Updates, and I don't see it in Software Licensing query.

Thanks


Last edited by cburbs on Thu Jan 21, 2016 8:45 am, edited 1 time in total.

Top
 Profile  
Reply with quote  
PostPosted: Thu Jan 21, 2016 8:15 am 
Offline
Contributor

Joined: Thu May 03, 2007 10:38 am
Posts: 116
Location: Midwest
Ok I figured it out shows up as Internet Explorer 9.11.9600.18163. The leading 9 threw me off.


Top
 Profile  
Reply with quote  
PostPosted: Thu Jan 21, 2016 8:26 am 
Offline
Moderator

Joined: Fri Jul 20, 2007 8:27 am
Posts: 1259
Interesting. I've never had occasion to look before.

If you really want the version it looks like you can change the key to audit from "Version" to "svcVersion". I'm not sure what this key holds across all the different windows versions. Win 7, Server 2008 and 2012 look good here.

So audit_windows.vbs 1.8.4 line number 3501 from:[code]strValueName = "Version"[/code] to [code]strValueName = "svcVersion"[/code]


Top
 Profile  
Reply with quote  
PostPosted: Thu Jan 21, 2016 8:47 am 
Offline
Contributor

Joined: Thu May 03, 2007 10:38 am
Posts: 116
Location: Midwest
OK I will look at that part. How can I get a report to show all computers running like "9.11.9600".

I used the Flash report and changed a few lines but it gives me the computers with the count I just want a straight list in one output.

So it shows for example I have 9.11.9600.18163 7 which is 7 installs of v 9.11.9600.18163. I just want a list with all PCs no count value.

<?xml version="1.0" encoding="ISO-8859-1"?>
<report>
<details>
<report_name>Installed - IE 11</report_name>
<report_display_in_menu>y</report_display_in_menu>
<report_sql><![CDATA[SELECT COUNT(DISTINCT system.system_id) AS software_count, sys_sw_software.software_name, sys_sw_software.software_version, sys_sw_software.software_publisher, sys_sw_software.software_url, sys_sw_software.software_email, sys_sw_software.software_id, sys_sw_software.software_comment, system.man_icon, system.man_os_family, system.hostname FROM sys_sw_software LEFT JOIN system ON (sys_sw_software.timestamp = system.timestamp AND sys_sw_software.system_id = system.system_id) LEFT JOIN oa_group_sys ON (system.system_id = oa_group_sys.system_id) WHERE oa_group_sys.group_id = @group AND sys_sw_software.software_name LIKE '%Internet Explorer%' and sys_sw_software.software_version LIKE '%9.11.9600%' GROUP BY sys_sw_software.software_name, sys_sw_software.software_version ORDER BY sys_sw_software.software_name]]></report_sql>
<report_view_file>v_report</report_view_file>
<report_view_contents></report_view_contents>
<report_processing></report_processing>
<report_sort_column>0</report_sort_column>
<report_description>Name, software name, software version where software_name like IE11.</report_description>
</details>
<columns>
<column>
<column_order>0</column_order>
<column_name>System Name</column_name>
<column_variable>hostname</column_variable>
<column_table>system</column_table>
<column_type>link</column_type>
<column_link>/main/system_display/</column_link>
<column_secondary>system_id</column_secondary>
<column_align>left</column_align>
</column>
<column>
<column_order>1</column_order>
<column_name>Package Name</column_name>
<column_variable>software_name</column_variable>
<column_type>link</column_type>
<column_link>/report/specific_software/$group_id/</column_link>
<column_secondary>software_id</column_secondary>
<column_ternary></column_ternary>
<column_align>left</column_align>
</column>
<column>
<column_order>1</column_order>
<column_name>Version</column_name>
<column_variable>software_version</column_variable>
<column_type>text</column_type>
<column_link></column_link>
<column_secondary></column_secondary>
<column_ternary></column_ternary>
<column_align>left</column_align>
</column>
<column>
<column_order>2</column_order>
<column_name>Installs</column_name>
<column_variable>software_count</column_variable>
<column_type>text</column_type>
<column_link></column_link>
<column_secondary></column_secondary>
<column_ternary></column_ternary>
<column_align>left</column_align>
</column>
</columns>
</report>


Top
 Profile  
Reply with quote  
PostPosted: Thu Jan 21, 2016 9:38 am 
Offline
Site Admin
User avatar

Joined: Mon Jun 07, 2004 11:48 am
Posts: 1964
Location: Brisbane, Australia
This should work - note I have not tested this (the DB in 1.10 has changed - more details on this to come).

[code]<?xml version="1.0" encoding="ISO-8859-1"?>
<report>
<details>
<report_name>Installed - Internet Explorer 11</report_name>
<report_display_in_menu>y</report_display_in_menu>
<report_sql><![CDATA[SELECT system.system_id, system.hostname, sys_sw_software.software_name, sys_sw_software.software_version FROM sys_sw_software LEFT JOIN system ON (system.system_id = sys_sw_software.system_id AND sys_sw_software.timestamp = system.timestamp AND sys_sw_software.software_name LIKE '%Internet Explorer%' AND sys_sw_software.software_version LIKE '%9.11.9600%') JOIN oa_group_sys ON (system.system_id = oa_group_sys.system_id) WHERE oa_group_sys.group_id = @group]]></report_sql>
<report_display_sql></report_display_sql>
<report_view_file>v_report</report_view_file>
<report_view_contents></report_view_contents>
<report_processing></report_processing>
<report_sort_column>0</report_sort_column>
<report_description>Name, software name, software version where software_name like Internet Explorer and version like 9.11.9600.</report_description>
</details>
<columns>
<column>
<column_order>0</column_order>
<column_name>System Name</column_name>
<column_variable>hostname</column_variable>
<column_type>link</column_type>
<column_link>/main/system_display/</column_link>
<column_secondary>system_id</column_secondary>
<column_align>left</column_align>
</column>
<column>
<column_order>1</column_order>
<column_name>Software Name</column_name>
<column_variable>software_name</column_variable>
<column_type>text</column_type>
<column_link></column_link>
<column_secondary></column_secondary>
<column_align>left</column_align>
</column>
<column>
<column_order>2</column_order>
<column_name>Version</column_name>
<column_variable>software_version</column_variable>
<column_type>text</column_type>
<column_link></column_link>
<column_secondary></column_secondary>
<column_align>left</column_align>
</column>
</columns>
</report>
[/code]

_________________
Support and Development hours available from [url=https://opmantek.com]Opmantek[/url].
Please consider a purchase to help make Open-AudIT better for everyone.


Top
 Profile  
Reply with quote  
PostPosted: Fri Jan 22, 2016 3:06 am 
Offline
Contributor

Joined: Thu May 03, 2007 10:38 am
Posts: 116
Location: Midwest
Looks like that worked.

Thanks again for all the help here...always appreciate it!

Chad


Top
 Profile  
Reply with quote  
Display posts from previous:  Sort by  
Forum locked This topic is locked, you cannot edit posts or make further replies.  [ 6 posts ] 

All times are UTC + 10 hours


Who is online

Users browsing this forum: No registered users and 2 guests


You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot post attachments in this forum

Search for:
Jump to:  
cron
Powered by phpBB® Forum Software © phpBB Group