Hi, my method:
WinXP with SP2 and WMP10 , manually reduced & automatised
After, I launch a batch (see code below). You can use a batch (RunOnceEx.cmd) which write values into registry (wich launch 'Updates.cmd') and after a the reboot the batch install hotfixes ...
Updates.cmd (by Sonic) pick up & mixed up on this forum
@echo off
color 0f
title Windows Update
cd /d "%~dp0"
echo - Windows Installer 3.1 ...
start /wait "" WI_3.1.exe /quiet /norestart
echo - Windows Update v6 ...
start /wait "" WUv6.exe /wuforce /quiet /norestart
echo - Windows Genuine Advantage ...
start /wait "" WGA.exe
echo - Fixe Faille avec GDI ...
reg add "HKLM\SOFTWARE\Microsoft\GdiDetectionTool" /v "GDITool" /t REG_DWORD /d "00000001" /f >NUL
echo - Fixe Faille avec JView Profiler ...
reg add "HKLM\SOFTWARE\Microsoft\Internet Explorer\ActiveX Compatibility\{03D9F3F2-B0E3-11D2-B081-006008039BF0}" /v "Compatibility Flags" /t REG_DWORD /d 1024 /f >NUL
echo - Hotfixes majeures ...
for %%a in (*hf.exe) do (
Start /wait "" %%a /quiet /norestart )
echo - Hotfixes mineures ...
for %%a in (*mf.exe) do (
Start /wait "" %%a /quiet /norestart )
exit
Edit the code to run perhaps all KB*.exe.
Make sure all hotfixes are in the same folder of the batch ...
Goodbye.
This post has been edited by sonic: 28 July 2005 - 03:36 PM