Page 1 of 1

automatischer Abgleich nachts (UpdateGenerator)

PostPosted: 28.05.2015, 13:09
by texta1983
Hallo
wie schaffe ich es das sich der WSUS Offline täglich um z.B. 2 Uhr die Update runterlädt?
Ich will nicht immer über den UpdateGenerator reingehen.

Updates sollen sein: Windows 7/8/8.1 (incl Server) 64 Bit
Office 2007/2010/2013 auf deutsch

Ich hatte mal ein Script das super lief aber das finde ich nicht mehr.

Re: automatischer Abgleich nachts (UpdateGenerator)

PostPosted: 28.05.2015, 13:44
by WSUSUpdateAdmin

Re: automatischer Abgleich nachts (UpdateGenerator)

PostPosted: 28.05.2015, 13:55
by texta1983
Danke, da ich der Sprache aber nicht so mächtig bin habe ich folgende Fragen (Iso braucht ich nicht)

Brauche ich nicht da System zu alt (XP)
wo setlle ich hier ein das ich nur deutsch möchte. zusätzlich möchte ich 32 Bit nicht, hier muss ich nur die Versionen löschen die ich nicht benötige?
Office 2013 hat welche Bezeichnug?


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
)
)

Re: automatischer Abgleich nachts (UpdateGenerator)

PostPosted: 28.05.2015, 14:05
by aker
Für Windows 7 - 8.1 in 64Bit-Fassung (Server-Versionen müssen nicht explizit gewählt werden, da sie im Kern mit den Client-Versionen übereinstimmen):
Code: Select all
for %%i in (w60-x64 w61-x64 w62-x64 w63-x64) do (
  echo Downloading updates for %%i glb...
  call DownloadUpdates.cmd %%i glb /includedotnet /includemsse /verify
)

Eine Sprache muss hier nicht angegeben werden, die Updates sind global gültig.

Für Office 2007- 2013:
Code: Select all
for %%i in (ofc) do (
  echo Downloading updates for %%i glb...
  call DownloadUpdates.cmd %%i glb /verify
)
for %%i in (o2k7 o2k10 o2k13) do (
  for %%j in (deu) do (
    echo Downloading updates for %%i %%j...
    call DownloadUpdates.cmd %%i %%j /verify
  )
)

Zum Office 2013-Support: Vgl. :arrow: viewtopic.php?f=7&t=3848
Bis auf die Service-Packs und ganz wenige andere Updates findet der Office-Download über "ofc glb" statt.

Viele Grüße

Re: automatischer Abgleich nachts (UpdateGenerator)

PostPosted: 28.05.2015, 14:14
by texta1983
super nun habe ich es so zusammengebaut

Code: Select all
for %%i in (w60-x64 w61-x64 w62-x64 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 (o2k7 o2k10 o2k13) do (
  for %%j in (deu enu) do (
    echo Downloading updates for %%i %%j...
    call DownloadUpdates.cmd %%i %%j /verify
  )


muss in eine BAT Datei gespeichert werden und in den CMD Ordner.
Danach kann man über Aufgabenplanung den Task einrichten

Re: automatischer Abgleich nachts (UpdateGenerator)

PostPosted: 28.05.2015, 21:52
by aker
Unten im o2k??-Block noch das "enu" entfernen, sonst werden auch englischsprachige Patches geladen.

Viele Grüße

Re: automatischer Abgleich nachts (UpdateGenerator)

PostPosted: 28.05.2015, 22:16
by psj
In diesem Block:
Code: Select all
for %%i in (w60-x64 w61-x64 w62-x64 w63-x64) do (
  echo Downloading updates for %%i glb...
  call DownloadUpdates.cmd %%i glb /includedotnet /includemsse /verify
)


kann auch das w60-x64 entfallen (=> Win Vista x64).

MfG psj