Forum Discussion

sekhan's avatar
sekhan
Occasional Contributor
15 years ago

get all of internet explorer version

Hi all,



How must I do to get all of IE versions from my computer. The hierarchy of nodes that are in Internet Explorer node (HKEY_LOCAL_MACHINE --> Software --> Microsoft --> Internet Explorer) is very complex. Which node catch version info in registry?



Thanks

1 Reply

  • Hi Vu,



    Normally, only one Internet Explorer version can be installed on a computer at a time, and its version is specified in the Version value in the HKEY_LOCAL_MACHINE\Software\Microsoft\Internet Explorer key. You can read this value, for example, using the WshShell.RegRead method:



    Dim oShell, strIEVersion

    Set oShell = Sys.OleObject("WScript.Shell")

    strIEVersion = oShell.RegRead("HKLM\Software\Microsoft\Internet Explorer\Version")

    Log.Message strIEVersion