Forum Discussion
HKosova
Alumni
15 years agoHi 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:
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