List Internet Explorer File Version Information in Windows
You can use any of the VBScript programs below in ActiveXperts Network Monitor. Click here for an explanation about how to include scripts in ActiveXperts Network Monitor.
List Internet Explorer File Version Information in Windows using VBScript, WMI and LDAPExample(s)
strComputer = "." Set objWMIService = GetObject("winmgmts:" _ & "{impersonationLevel=impersonate}!\\" & strComputer & _ "\root\cimv2\Applications\MicrosoftIE") Set colIESettings = objWMIService.ExecQuery _ ("Select * from MicrosoftIE_FileVersion") For Each strIESetting in colIESettings Wscript.Echo "Company: " & strIESetting.Company Wscript.Echo "Date: " & strIESetting.Date Wscript.Echo "File name: " & strIESetting.File Wscript.Echo "Path: " & strIESetting.Path Wscript.Echo "File size: " & strIESetting.Size Wscript.Echo "Version: " & strIESetting.Version Next