In Forum: Download Requests/Offers
By User: maxtorix
WoW, i hope that i didn't have to install all those updates
P.S. sorry for some english error if they are
Put this script with all updates in one folder and run it - all updates will be installed automatically
@ECHO OFF
SETLOCAL ENABLEEXTENSIONS
SETLOCAL ENABLEDELAYEDEXPANSION
FOR /R "%~dp0" %%A IN (*-KB*.MSU) DO (CALL :SUB %%~nA
ECHO INSTALLING KB!KB_number!
TIMEOUT /t 3 >NUL
C:\Windows\System32\wusa "%%A" /quiet /norestart)
ECHO == Press any key to restart ==&PAUSE>NUL
shutdown.exe /r /t 0
GOTO :EOF
:SUB
SET "KB_number=%*"
FOR /F "DELIMS=-" %%B IN ("%KB_number:*-KB=%") DO SET "KB_number=%%B"
Or you can integrate all updates into the install.wim, because after 15 jan 2013 wouldn't be new updates for build 8400.
By User: maxtorix
WoW, i hope that i didn't have to install all those updates
P.S. sorry for some english error if they are
Put this script with all updates in one folder and run it - all updates will be installed automatically
@ECHO OFF
SETLOCAL ENABLEEXTENSIONS
SETLOCAL ENABLEDELAYEDEXPANSION
FOR /R "%~dp0" %%A IN (*-KB*.MSU) DO (CALL :SUB %%~nA
ECHO INSTALLING KB!KB_number!
TIMEOUT /t 3 >NUL
C:\Windows\System32\wusa "%%A" /quiet /norestart)
ECHO == Press any key to restart ==&PAUSE>NUL
shutdown.exe /r /t 0
GOTO :EOF
:SUB
SET "KB_number=%*"
FOR /F "DELIMS=-" %%B IN ("%KB_number:*-KB=%") DO SET "KB_number=%%B"
Or you can integrate all updates into the install.wim, because after 15 jan 2013 wouldn't be new updates for build 8400.