edy 0 Posted August 2, 2004 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 Share this post Link to post Share on other sites
pekster 0 Posted August 2, 2004 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. Share this post Link to post Share on other sites
emmanuel 0 Posted August 2, 2004 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) Share this post Link to post Share on other sites
edy 0 Posted August 2, 2004 Thanks for the answers. regards Share this post Link to post Share on other sites
edy 0 Posted August 3, 2004 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 Share this post Link to post Share on other sites
CyberSlug 6 Posted August 3, 2004 Maybe this info from Microsoft might help? Use Mozilla | Take a look at My Disorganized AutoIt stuff | Very very old: AutoBuilder 11 Jan 2005 prototype I need to update my sig! Share this post Link to post Share on other sites
PAJ 0 Posted August 6, 2004 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 Share this post Link to post Share on other sites