Loading |
VBScript |
JavaScript |
Powershell |
Search Options: List Internet Explorer Summary SettingsContent of List Internet Explorer Summary Settings.vbsMD5 Hash: EA29755E8DBF5F61CD7E412B1434FC95 |
||
' Description: Returns basic information (including version number and build number) for Internet Explorer.
strComputer = "." Set objWMIService = GetObject("winmgmts:" _ & "{impersonationLevel=impersonate}!\\" & strComputer & _ "\root\cimv2\Applications\MicrosoftIE") Set colIESettings = objWMIService.ExecQuery _ ("Select * from MicrosoftIE_Summary") For Each strIESetting in colIESettings Wscript.Echo "Active printer: " & strIESetting.ActivePrinter Wscript.Echo "Build: " & strIESetting.Build Wscript.Echo "Cipher strength: " & strIESetting.CipherStrength Wscript.Echo "Content advisor: " & strIESetting.ContentAdvisor Wscript.Echo "IE Administration Kit installed: " & _ strIESetting.IEAKInstall Wscript.Echo "Language: " & strIESetting.Language Wscript.Echo "Name: " & strIESetting.Name Wscript.Echo "Path: " & strIESetting.Path Wscript.Echo "Product ID: " & strIESetting.ProductID Wscript.Echo "Version: " & strIESetting.Version Next | ||
© 2008 - 2013 Boris Toll :: Scripts available: 6.481 :: :: scriptbox.toll.at :: :: powered by www.toll.at :: |