Windows Vista Tips

Windows Vista Tips > Newsgroups > Windows Update > Batch Update For Hotfixes

Reply
Thread Tools Display Modes

Batch Update For Hotfixes

 
 
DyWaN
Guest
Posts: n/a

 
      02-26-2006
Dear experts...
Is it okay to combine all the updates to be executed into a single batchfile?
example:

WindowsXP-KB902400-x86-ENU.exe /passive /norestart
WindowsXP-KB904706-x86-ENU.exe /passive /norestart
WindowsXP-KB900725-x86-ENU.exe /passive /norestart
etc....
WindowsXP-KB901017-x86-ENU.exe /passive /forcerestart

I performed this on a Windows XP SP2 system and SERVER 2003 SP1. I've read
from MS site that the Qchain or something to make the proper file version
replacement had been included within XP SP1 and 2003 SP1. But I'm not sure
bout this. If anybody could kindly explain it to me...)
 
Reply With Quote
 
 
 
 
Shenan Stanley
Guest
Posts: n/a

 
      02-27-2006
DyWaN wrote:
> Dear experts...
> Is it okay to combine all the updates to be executed into a single
> batchfile? example:
>
> WindowsXP-KB902400-x86-ENU.exe /passive /norestart
> WindowsXP-KB904706-x86-ENU.exe /passive /norestart
> WindowsXP-KB900725-x86-ENU.exe /passive /norestart
> etc....
> WindowsXP-KB901017-x86-ENU.exe /passive /forcerestart
>
> I performed this on a Windows XP SP2 system and SERVER 2003 SP1.
> I've read from MS site that the Qchain or something to make the
> proper file version replacement had been included within XP SP1 and
> 2003 SP1. But I'm not sure bout this. If anybody could kindly
> explain it to me...)


It works fine. I use this batch script:
(Although I have to rename a few of the 60+ updates I now install after
SP2.)

--- Start copy below here ---
@ECHO OFF

REM Quick and dirty way to update an XP system with all Post-SP2 patches.

for %%U in (.\WindowsXP-KB??????-x86-enu.exe) DO (
@ECHO Now installing %%U , Please Wait . . .
start /wait %%U /u /n /z
)

--- Stop copy above here ---

It installs in numerical order because of its nature.

--
Shenan Stanley
MS-MVP
--
How To Ask Questions The Smart Way
http://www.catb.org/~esr/faqs/smart-questions.html


 
Reply With Quote
 
DyWaN
Guest
Posts: n/a

 
      02-27-2006
Thank you very much for your reply Shenan...^_^

Cheers

"Shenan Stanley" wrote:

> DyWaN wrote:
> > Dear experts...
> > Is it okay to combine all the updates to be executed into a single
> > batchfile? example:
> >
> > WindowsXP-KB902400-x86-ENU.exe /passive /norestart
> > WindowsXP-KB904706-x86-ENU.exe /passive /norestart
> > WindowsXP-KB900725-x86-ENU.exe /passive /norestart
> > etc....
> > WindowsXP-KB901017-x86-ENU.exe /passive /forcerestart
> >
> > I performed this on a Windows XP SP2 system and SERVER 2003 SP1.
> > I've read from MS site that the Qchain or something to make the
> > proper file version replacement had been included within XP SP1 and
> > 2003 SP1. But I'm not sure bout this. If anybody could kindly
> > explain it to me...)

>
> It works fine. I use this batch script:
> (Although I have to rename a few of the 60+ updates I now install after
> SP2.)
>
> --- Start copy below here ---
> @ECHO OFF
>
> REM Quick and dirty way to update an XP system with all Post-SP2 patches.
>
> for %%U in (.\WindowsXP-KB??????-x86-enu.exe) DO (
> @ECHO Now installing %%U , Please Wait . . .
> start /wait %%U /u /n /z
> )
>
> --- Stop copy above here ---
>
> It installs in numerical order because of its nature.
>
> --
> Shenan Stanley
> MS-MVP
> --
> How To Ask Questions The Smart Way
> http://www.catb.org/~esr/faqs/smart-questions.html
>
>
>

 
Reply With Quote
 
PA Bear
Guest
Posts: n/a

 
      02-27-2006
Thanks, Shenan. (cf. http://aumha.net/viewtopic.php?t=18260)

(Would you consider helping out in Aumha Forums? <wink>)
--
~Robear Dyer (PA Bear)
MS MVP-Windows (IE/OE, Shell/User, Security), Aumha.org VSOP, DTS-L.org


Shenan Stanley wrote:
> DyWaN wrote:
> > Dear experts...
> > Is it okay to combine all the updates to be executed into a single
> > batchfile? example:
> >
> > WindowsXP-KB902400-x86-ENU.exe /passive /norestart
> > WindowsXP-KB904706-x86-ENU.exe /passive /norestart
> > WindowsXP-KB900725-x86-ENU.exe /passive /norestart
> > etc....
> > WindowsXP-KB901017-x86-ENU.exe /passive /forcerestart
> >
> > I performed this on a Windows XP SP2 system and SERVER 2003 SP1.
> > I've read from MS site that the Qchain or something to make the
> > proper file version replacement had been included within XP SP1 and
> > 2003 SP1. But I'm not sure bout this. If anybody could kindly
> > explain it to me...)

>
> It works fine. I use this batch script:
> (Although I have to rename a few of the 60+ updates I now install after
> SP2.)
>
> --- Start copy below here ---
> @ECHO OFF
>
> REM Quick and dirty way to update an XP system with all Post-SP2 patches.
>
> for %%U in (.\WindowsXP-KB??????-x86-enu.exe) DO (
> @ECHO Now installing %%U , Please Wait . . .
> start /wait %%U /u /n /z
> )
>
> --- Stop copy above here ---
>
> It installs in numerical order because of its nature.
>
> --
> Shenan Stanley
> MS-MVP

 
Reply With Quote
 
 
 
Reply

Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are Off


Similar Threads
Thread Thread Starter Forum Replies Last Post
Windows Update-latest batch Brendan Windows Vista General Discussion 14 10-10-2007 11:14 PM
Important Vista Hotfixes available only outside of Windows Update Jerry Windows Vista General Discussion 2 08-15-2007 04:30 PM
Re: WARNING !!! Entirely Wrong. Update Hotfixes Chad Harris Windows Vista General Discussion 0 11-01-2006 08:56 AM
Windows Update Hotfixes & SP2 KerriBradley Windows Update 4 01-31-2005 03:40 AM
Update requests SP1 for hotfixes when already in Chad Harris Windows Update 11 01-20-2004 10:21 AM



1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59