Page 1 of 1

Geplanter Task alle Updates downloaden

PostPosted: 04.05.2011, 10:52
by mkuhnert
Hallo!

Ich versuche gerade vergeblich, mittels eines geplanten Tasks alle Updates downzuladen:

Code: Select all
call DownloadUpdates wxp deu /includedotnet
call DownloadUpdates w2k3 deu /includedotnet
call DownloadUpdates w2k3-x64 deu /includedotnet
call DownloadUpdates o2k3 deu /includedotnet
call DownloadUpdates o2k7 deu /includedotnet

call DownloadUpdates w60 /includedotnet
call DownloadUpdates w60-x64 deu /includedotnet
call DownloadUpdates w61 /includedotnet
call DownloadUpdates w61-x64 /includedotnet
call DownloadUpdates ofc /includedotnet


Die Updates bis zur Leerzeile werden korrekt ausgeführt. Die anderen leider nicht, angeblich
ist die Syntax falsch?

Vielleicht habt Ihr einen Tipp für mich, ich würde mich freuen....

Gruß,
Marc

Re: Geplanter Task alle Updates downloaden

PostPosted: 04.05.2011, 11:07
by harry
Ja, die Systax der letzten fünf Befehle ist falsch.
:arrow: viewtopic.php?f=7&t=120#p1516

Code: Select all
call DownloadUpdates wxp deu /includedotnet
call DownloadUpdates w2k3 deu /includedotnet
call DownloadUpdates w2k3-x64 deu /includedotnet
call DownloadUpdates o2k3 deu /includedotnet
call DownloadUpdates o2k7 deu /includedotnet

call DownloadUpdates w60 glb /includedotnet
call DownloadUpdates w60-x64 glb /includedotnet
call DownloadUpdates w61 glb /includedotnet
call DownloadUpdates w61-x64 glb /includedotnet
call DownloadUpdates ofc glb /includedotnet

Re: Geplanter Task alle Updates downloaden

PostPosted: 04.05.2011, 14:00
by mkuhnert
Besten Dank. Habe es dann so gemacht, falls es Optimierungsvorschläge gibt, nur zu :-)

Code: Select all
@echo off

ECHO Windows XP 32-bit
call DownloadUpdates.cmd wxp deu /includedotnet

ECHO Windows 2003 32-bit
call DownloadUpdates.cmd w2k3 deu /includedotnet

ECHO Windows 2003 64-bit
call DownloadUpdates.cmd w2k3-x64 deu /includedotnet

ECHO Windows Vista 32-bit
call DownloadUpdates.cmd w60 /includedotnet

ECHO Windows Vista 64-bit
call DownloadUpdates.cmd w60-x64 /includedotnet

ECHO Windows 7 32-bit
call DownloadUpdates.cmd w61 /includedotnet

ECHO Windows 7 64-bit
call DownloadUpdates.cmd w61-x64 /includedotnet

ECHO Office 2003 deutsch
call DownloadUpdates.cmd o2k3 deu

ECHO Office 2007 32-bit deutsch
call DownloadUpdates.cmd o2k7 deu

pause

Re: Geplanter Task alle Updates downloaden

PostPosted: 04.05.2011, 14:34
by aker
Versuch doch mal das Programm unter ./viewtopic.php?f=5&t=436.
Das liest die Einstellungen aus dem Update Generator und lädt dementsprechen herunter.

Re: Geplanter Task alle Updates downloaden

PostPosted: 04.05.2011, 14:50
by mkuhnert
Leider führt der Link ins Leere...

Re: Geplanter Task alle Updates downloaden

PostPosted: 04.05.2011, 14:53
by mkuhnert
hab die Datei doch gefunden, vielen Dank :-)

Re: Geplanter Task alle Updates downloaden

PostPosted: 04.05.2011, 15:10
by WSUSUpdateAdmin
mkuhnert wrote:Besten Dank. Habe es dann so gemacht, falls es Optimierungsvorschläge gibt, nur zu :-)[...]

Wie harry schon erwähnte: viewtopic.php?f=7&t=120.
GTW