/build/static/layout/Breadcrumb_cap_w.png

Internet Explorer Versions

Hi there,

I need a SQL query that will give me the version of IE installed on all the pc's on our network.

please see below a picture from the registry this is the info that I need on the report:

 

I need this info on a report for all 14 000 clients on our network.

Can anyone plase assist?

Regards,

 

 


2 Comments   [ + ] Show comments
  • What tool are you using to gather the data? Kace? - dugullett 10 years ago
  • Hi Sorry, Yes we do use KACE - Mariusja 10 years ago

Answers (4)

Answer Summary:
Posted by: SMal.tmcc 10 years ago
Red Belt
3

I use the registry keys for my custom software inventory

RegistryValueReturn(HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Internet Explorer,svcVersion,TEXT)

RegistryValueReturn(HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Internet Explorer,Version,TEXT)

and created the following report

and as sql code

you can get the custom numbers of the items you create by using the report creator then looking at the sql code or hover over the software items and look at the bottom of your browser.

Posted by: WGM_Jeff 10 years ago
4th Degree Black Belt
2

The following seems to be working for me:

select NAME, IE_VERSION from MACHINE

of course you could always narrow it down a bit more.

Posted by: chucksteel 10 years ago
Red Belt
1

I have found that due to the way Internet Explorer is reported in KACE this kind of report is difficult to create. In light of that I created a custom inventory field first to collect the IE version. I used a rule to capture the file version of iexplorer.exe:

FileInfoReturn(C:\Program Files\Internet Explorer\iexplore.exe,FileVersion,TEXT)

You could also use a rule that captures the registry key you posted. Keep in mind that you have to capture the value as text, since a true number can't contain multiple dots.

Once you have the custom inventory rule you can create a report using the following SQL:

 SELECT MACHINE.NAME, STR_FIELD_VALUE as Version
FROM ORG1.MACHINE_CUSTOM_INVENTORY 
JOIN MACHINE on MACHINE_CUSTOM_INVENTORY.ID = MACHINE.ID
WHERE SOFTWARE_ID = 31484 
ORDER BY MACHINE.NAME

You will need to change the SOFTWARE_ID value (mine is 31484) to match the software_id of the custom inventory rule that you created.

 


Comments:
  • I did do this but get a SQL error when I ran the report - Mariusja 10 years ago
  • As a result of IE 8,9, and 10 going end of life 1.12.2016 I used this report and it worked like a charm! - Jbr32 8 years ago
Posted by: gkiedrowski 7 years ago
Yellow Belt
0
This is the query I created to find all the machines in our organization that did not have IE version 11 yet.

SELECT NAME, USER_FULLNAME, IE_VERSION
FROM MACHINE
WHERE IE_VERSION < '11'

Don't be a Stranger!

Sign up today to participate, stay informed, earn points and establish a reputation for yourself!

Sign up! or login

View more:

Share

 
This website uses cookies. By continuing to use this site and/or clicking the "Accept" button you are providing consent Quest Software and its affiliates do NOT sell the Personal Data you provide to us either when you register on our websites or when you do business with us. For more information about our Privacy Policy and our data protection efforts, please visit GDPR-HQ