This assumes that the iexpore file is in specific location.  I like
check the registry :

...
reg query "HKLM\Software\Microsoft\internet explorer\version" |findstr
/i /c:"5.00." >nul
if not errorlevel 1 goto :up501

reg query "HKLM\Software\Microsoft\internet explorer\version" |findstr
/i /c:"5.50." >nul
if not errorlevel 1 goto :up550
...

xylog
-----Original Message-----
From: Dewar Charles R [mailto:[EMAIL PROTECTED]] 
Sent: Wednesday, September 26, 2001 1:10 PM
To: NT System Admin Issues
Subject: RE: What version of IE? How to tell

Use IEAK to remove Windows Update. We check the registry with kixtart:

Dim $IEVersion
$IEVersion = GetFileVersion("C:\Progra~1\Intern~1\iexplore.exe")
If $IEVersion = "5.51.4807.2300"
        Goto "script"
Else
        Use Y: "\\nhilmgt01\installs"
        Run Y:\IE5\InstallIE.BAT
        Goto "exit"
End if

-----Original Message-----
From: Steve Kelsay [mailto:[EMAIL PROTECTED]]
Sent: Wednesday, September 26, 2001 11:42 AM
To: NT System Admin Issues
Subject: What version of IE? How to tell


If the security patch to be applied is dependent o what SP level your IE
is
at, is there a way in the batch file to determine it and apply the
proper
patch?

How are others handling this in 500-700 machine organizations? The
version
would be the same when the machines are rolled out, but some users do
have a
habit of actually updating the systems from windowsupdate.





Steve Kelsay
Network Administration Group
South Carolina Department of Revenue
301 Gervais Street
Columbia, SC 29201

(803) 898-5522


Want to unsub? Do that here:
http://www.w2knews.com/rd/rd.cfm?id=unsub
Need a good FAQ? Try this one first:
http://www.ultratech-llc.com/KB/

Want to unsub? Do that here:
http://www.w2knews.com/rd/rd.cfm?id=unsub
Need a good FAQ? Try this one first:
http://www.ultratech-llc.com/KB/



Want to unsub? Do that here:
http://www.w2knews.com/rd/rd.cfm?id=unsub
Need a good FAQ? Try this one first:
http://www.ultratech-llc.com/KB/

Reply via email to