edy Posted August 2, 2004 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
pekster Posted August 2, 2004 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.
emmanuel Posted August 2, 2004 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)
edy Posted August 3, 2004 Author 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
CyberSlug Posted August 3, 2004 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!
PAJ Posted August 6, 2004 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
Recommended Posts
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 accountSign in
Already have an account? Sign in here.
Sign In Now