----------
Wenn Sie Ihre Microsoft-Patchsammlung zeitgesteuert aktualisieren lassen möchten, rufen Sie bitte nicht den UpdateGenerator, sondern die "darunterliegenden" Skripte auf:
- Code: Select all
for %%i in (wxp w2k3 w2k3-x64) do (
for %%j in (deu enu) do (
echo Downloading updates for %%i %%j...
call DownloadUpdates.cmd %%i %%j /includemsse /verify
)
)
for %%i in (w60 w60-x64 w61 w61-x64 w62 w62-x64 w63 w63-x64) do (
echo Downloading updates for %%i glb...
call DownloadUpdates.cmd %%i glb /includedotnet /includemsse /verify
)
for %%i in (ofc) do (
echo Downloading updates for %%i glb...
call DownloadUpdates.cmd %%i glb /verify
)
for %%i in (oxp o2k3 o2k7) do (
for %%j in (deu enu) do (
echo Downloading updates for %%i %%j...
call DownloadUpdates.cmd %%i %%j /verify
)
)
:CreateISO
for %%i in (wxp w2k3 w2k3-x64) do (
for %%j in (deu enu) do (
call CreateISOImage.cmd %%i %%j /includedotnet /includemsse
)
)
for %%i in (w60 w60-x64 w61 w61-x64 w62 w62-x64 w63 w63-x64) do (
call CreateISOImage.cmd %%i /includedotnet /includemsse
)
for %%i in (ofc) do (
for %%j in (deu enu) do (
call CreateISOImage.cmd %%i %%j
)
)
for %%i in (deu enu) do (
call CreateISOImage.cmd %%i /includedotnet
)
Regards / Gruß
Torsten Wittrock