automatischer Abgleich nachts (UpdateGenerator)

automatischer Abgleich nachts (UpdateGenerator)

Postby texta1983 » 28.05.2015, 13:09

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.
texta1983
 

Re: automatischer Abgleich nachts (UpdateGenerator)

Postby WSUSUpdateAdmin » 28.05.2015, 13:44

WSUSUpdateAdmin
Administrator
 
Posts: 2245
Joined: 07.07.2009, 14:38

Re: automatischer Abgleich nachts (UpdateGenerator)

Postby texta1983 » 28.05.2015, 13:55

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
)
)
Last edited by aker on 28.05.2015, 14:00, edited 2 times in total.
Reason: added quote-tags
texta1983
 

Re: automatischer Abgleich nachts (UpdateGenerator)

Postby aker » 28.05.2015, 14:05

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
Wer Rechtschreibfehler findet, darf sie behalten oder an den Meistbietenden versteigern. / Everybody finding a misspelling is allowed to keep or sell it.
aker

WSUS Offline Update „Community Edition“
https://gitlab.com/wsusoffline/wsusoffline/-/releases
aker
 
Posts: 3999
Joined: 02.03.2011, 15:32

Re: automatischer Abgleich nachts (UpdateGenerator)

Postby texta1983 » 28.05.2015, 14:14

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
Last edited by aker on 28.05.2015, 21:53, edited 1 time in total.
Reason: Added code tags
texta1983
 

Re: automatischer Abgleich nachts (UpdateGenerator)

Postby aker » 28.05.2015, 21:52

Unten im o2k??-Block noch das "enu" entfernen, sonst werden auch englischsprachige Patches geladen.

Viele Grüße
Wer Rechtschreibfehler findet, darf sie behalten oder an den Meistbietenden versteigern. / Everybody finding a misspelling is allowed to keep or sell it.
aker

WSUS Offline Update „Community Edition“
https://gitlab.com/wsusoffline/wsusoffline/-/releases
aker
 
Posts: 3999
Joined: 02.03.2011, 15:32

Re: automatischer Abgleich nachts (UpdateGenerator)

Postby psj » 28.05.2015, 22:16

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
psj
 
Posts: 42
Joined: 11.06.2010, 17:58


Return to Installation / Updating

Who is online

Users browsing this forum: Google [Bot] and 214 guests

cron