Re: MS04-028 IE 6.0 SP1 patch
From: Torgeir Bakken \(MVP\) (Torgeir.Bakken-spam_at_hydro.com)
Date: 09/17/04
- Next message: Jentle Jiant: "Re: gdiplus.dll security question"
- Previous message: Anand Abhyankar [MS]: "Re: How to delete or repair W2k3 cert store"
- In reply to: KelBelJr: "MS04-028 IE 6.0 SP1 patch"
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ] [ attachment ]
Date: Fri, 17 Sep 2004 22:11:15 +0200
KelBelJr wrote:
> I need to deploy this patch across my Site and my testing implies that there
> is no reboot required after this patch is applied - reporting shows it as
> successfully installed and the registry and DLL versions are correct.
>
> Can anyone confirm that it is the case that no reboot is required?
Hi
This is what http://www.microsoft.com/technet/security/bulletin/ms04-028.mspx
says about the IE 6 SP1 update (IE6.0sp1-KB833989-x86-ENU.exe):
<quote>
In some cases, you do not have to restart your system after you
apply this update. However, if the required files are in use,
you must restart your system after you apply this update. If
this behavior occurs, a message is displayed that advises you
to restart your system. You do not have to use an administrator
logon after the system restarts for any version of this update.
</quote>
For a scripted, unattended installation of the update, test on the
return code from the exe, if it is 3010, a reboot is needed.
A VBScript example:
'--------------------8<----------------------
Set oShell = CreateObject("WScript.Shell")
iRC = oShell.Run("IE6.0sp1-KB833989-x86-ENU.exe /q:a /r:n", 1, True)
If iRC = 3010 Then
MsgBox "Boot needed"
Else
MsgBox "Boot not needed"
End If
'--------------------8<----------------------
-- torgeir, Microsoft MVP Scripting and WMI, Porsgrunn Norway Administration scripting examples and an ONLINE version of the 1328 page Scripting Guide: http://www.microsoft.com/technet/scriptcenter/default.mspx
- Next message: Jentle Jiant: "Re: gdiplus.dll security question"
- Previous message: Anand Abhyankar [MS]: "Re: How to delete or repair W2k3 cert store"
- In reply to: KelBelJr: "MS04-028 IE 6.0 SP1 patch"
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ] [ attachment ]
Relevant Pages
|