How to check the Internet Explorer version on Remote Computer Windows 7

Per this article which is out of date and incorrect : http://support2.microsoft.com/kb/556019

This code works with Windows 7

@echo off
 
SET srvlist=C:\Srvlist.txt
 
Echo Computer Name, Internet Explorer Version >> Result.csv
 
SET IE_Ver=
 
For /F "Tokens=*" %%a In (%srvlist%) Do (
 
echo %%a  >> c:\regquery.txt
reg query "\\%%a\hklm\Software\Microsoft\Internet Explorer" /v Version >> c:\regquery.txt
 
 
)

 

1 Star2 Stars3 Stars4 Stars5 Stars (No Ratings Yet)
Loading...