Save Browser ListThis script saves a file to C:\browser.txt with a list of Internet browsers that have been installed.
Added 283 days ago by Emnico
| Download | |
| Review | ||
| Back | ||
| 46 | Views |
Source code
strCommand = "regedit /e c:\browser.txt HKEY_LOCAL_MACHINE\SOFTWARE\Clients\StartMenuInternet"
set objWshShell = WScript.CreateObject("WScript.Shell")
intRC = objWshShell.Run(strCommand, 0, TRUE)
if intRC <> 0 then
WScript.Echo "Error returned from exporting Registry: " & intRC
else
WScript.Echo "No errors returned from exporting the Registry file"
end if

