Jump to content

Internet Explorer And Outlook Version


edy
 Share

Recommended Posts

Hi all

I must to install microsoft patchs with an automatic script, how to detect the correct

version (with service pack) installed of Internet explorer and outlook express separately?

Is there a value in the registry?

Thanks

Link to comment
Share on other sites

Just get the version of it. Here's an example for IE:

$version = FileGetVersion(@ProgramFilesDir & "\Internet Explorer\iexplore.exe")
MsgBox(0, "IE Version", "Your IE version is: " & $version)

[font="Optima"]"Standing in the rain, twisted and insane, we are holding onto nothing.Feeling every breath, holding no regrets, we're still looking out for something."[/font]Note: my projects are off-line until I can spend more time to make them compatable with syntax changes.

Link to comment
Share on other sites

Just get the version of it.  Here's an example for IE:

$version = FileGetVersion(@ProgramFilesDir & "\Internet Explorer\iexplore.exe")
MsgBox(0, "IE Version", "Your IE version is: " & $version)

<{POST_SNAPBACK}>

Or, some MS patches install into or create seperate folders, like %systemroot%\$NtUninstallKB835732$ which you can check for.

"I'm not even supposed to be here today!" -Dante (Hicks)

Link to comment
Share on other sites

Someone knows the relation between Internet explorer file version (FileGetVersion () function) , outlook express and the relative service pack or standard version ?

From version 5.5 and higher?

Exsample:

IE file version 6.0.2800.1106 -> ie 6 sp1

IE file Version ????????????? -> ie 6

Where can i find this information.

Thanks

Link to comment
Share on other sites

Just get the version of it.  Here's an example for IE:

$version = FileGetVersion(@ProgramFilesDir & "\Internet Explorer\iexplore.exe")
MsgBox(0, "IE Version", "Your IE version is: " & $version)

<{POST_SNAPBACK}>

Checking the file version of iexplore.exe doesn't give you the correct version of IE as a whole. Better to use :

$IEVersion = RegRead ("HKEY_LOCAL_MACHINE\SOFTWARE\Micorsoft\Intenret Explorer\", "Version"

You need this IE version if you are applying IE critical updates, don't rely on the file version of iexplore.exe

:ph34r:

Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
 Share

  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...