Salve.
L'ho creato anch'io un semplice file batch per gli aggiornamenti:
---------------------------------------------------------------------
CLS
@echo off
ECHO.
ECHO Installazione automatica di software ed aggiornamenti
ECHO Al termine della procedura, il computer verra' riavviato
ECHO.
ECHO Installazione fix e patch
ECHO.
ECHO Installing Q323255...
start /wait %systemdrive%\install\Hotfixes\Q323255_X86_IT.exe /Q /M /Z
ECHO.
ECHO Installing Q328310...
start /wait %systemdrive%\install\Hotfixes\Q328310_WXP_SP2_it. exe /Q /M /Z
ECHO.
ECHO Installing Q329048...
start /wait %systemdrive%\install\Hotfixes\Q329048_xp.exe /Q /M /Z
ECHO.
ECHO Installing Q329115...
start /wait %systemdrive%\install\Hotfixes\Q329115_WXP_SP2_x86 _ITA.exe /Q /M /Z
ECHO.
ECHO Installing Q329170...
start /wait %systemdrive%\install\Hotfixes\Q329170_WXP_SP2_IT. exe /Q /M /Z
ECHO.
ECHO Installing Q329390...
start /wait %systemdrive%\install\Hotfixes\Q329390_WXP_SP2_x86 _ITA.exe /Q /M /Z
ECHO.
ECHO Installing Q329834...
start /wait %systemdrive%\install\Hotfixes\Q329834_WXP_SP2_it. exe /Q /M /Z
ECHO.
ECHO Installing Q331953...
start /wait %systemdrive%\install\Hotfixes\Q331953_WXP_it.exe /Q /M /Z
ECHO.
ECHO Installing Q810565...
start /wait %systemdrive%\install\Hotfixes\Q810565_WXP_SP2_x86 _ITA.exe /Q /M /Z
ECHO.
ECHO Installing Q810577...
start /wait %systemdrive%\install\Hotfixes\Q810577_WXP_it.exe /Q /M /Z
ECHO.
ECHO Installing Q810833...
start /wait %systemdrive%\install\Hotfixes\Q810833_WXP_SP2_x86 _ITA.exe /Q /M /Z
ECHO.
ECHO Installing Q811493...
start /wait %systemdrive%\install\Hotfixes\Q811493_WXP_SP2_x86 _ITA.exe /Q /M /Z
ECHO.
ECHO Installing Q811630...
start /wait %systemdrive%\install\Hotfixes\Q811630_WXP_SP2_IT. exe /Q /M /Z
ECHO.
ECHO Installing Q811630...
start /wait %systemdrive%\install\Hotfixes\Q819696_WXP_SP2_x86 _ITA.exe /Q /M /Z
ECHO.
ECHO Installing Q814033...
start /wait %systemdrive%\install\Hotfixes\Q814033_WXP_SP2_x86 _ITA.exe /Q /M /Z
ECHO.
ECHO Installing Q815021...
start /wait %systemdrive%\install\Hotfixes\Q815021_WXP_SP2_x86 _ITA.exe /Q /M /Z
ECHO.
ECHO Installing Q817606...
start /wait %systemdrive%\install\Hotfixes\Q817606_WXP_SP2_x86 _ITA.exe /Q /M /Z
ECHO.
ECHO Installing q330994...
start /wait %systemdrive%\install\Hotfixes\q330994.exe /Q:A /R:N
ECHO.
ECHO Installing q813951...
start /wait %systemdrive%\install\Hotfixes\q813951.exe /Q:A /R:N
ECHO.
ECHO Installing Q817287...
start /wait %systemdrive%\install\Hotfixes\Q817287.exe /Q:A /R:N
ECHO.
ECHO Installing Q821557...
start /wait %systemdrive%\install\Hotfixes\WindowsXP-KB821557-x86-ITA.exe /Q /M /Z
ECHO.
ECHO Installazione Cumulativa di Patch per IE6...
start /wait %systemdrive%\install\Hotfixes\q822925.exe /Q:A /R:N
ECHO Installing Q823559...
start /wait %systemdrive%\install\Hotfixes\WindowsXP-KB823559-x86-ITA.exe /Q /M /Z
ECHO.
ECHO Installing 823980...
start /wait %systemdrive%\install\Hotfixes\WindowsXP-KB823980-x86-ITA.exe /Q /M /Z
ECHO.
ECHO Installing 329441...
start /wait %systemdrive%\install\Hotfixes\WindowsXP-KB329441-x86-ITA.exe /Q /M /Z
ECHO.
ECHO Riavvio in corso...
start /wait %systemroot%\system32\shutdown.exe -r -t 00
ECHO.
EXIT
---------------------------------------------------------------------
Per le prime stringhe non devi andare a capo (nel post sembra di si!)
Cioè ...Hotfixes\Q323255_X86_IT.exe /Q /M /Z....
Ovviamente ho creato una cartella INSTALL con dentro il file batch e una cartella Hotfixes contenente tutti gli eseguibili.
Il metodo è semplice, basta solo che cambi il nome degli eseguibili sia nel nome dopo "Installing" (per fare le cose in gran stile :gren: ) sia nel percorso del file.
Poi la cartella INSTALL la devi mettere in C: (o dov'è il sistema operativo) visto che la stringa inizia con %systemroot%, ovvero l'unità di sistema.
Se vuoi fare a meno del riavvio (cosa che ti sconsiglio) basta che togli le ultime stringhe:
ECHO Riavvio in corso...
start /wait %systemroot%\system32\shutdown.exe -r -t 00
ECHO.
Spero di essere stato chiaro.
Ciao!