Offline Update
Home-made Service Pack
- security Forums
- > Offline Update
- > Re: Autorun for latest ctupdate
Posting 
Thread 
- Reply
- New Topic
- Show Thread
WSUSUpdateAdmin
(156 postings since 18 Dec 2006)
Re: Autorun for latest ctupdate 03 June 2008 14:51
> I was looking to have the ability to have UpdateGenerator.exe just
> start downloading with the options from the ini when it was started
> (preparing to have it just called from a the windows task scheduler).
> [...]
I guess it's easier to use the ...\cmd\DownloadUpdates.cmd and
...\cmd\CreateISOImage.cmd scripts directly like UpdateGenerator does
itself, e.g.:
----- snip -----
for %%i in (wxp o2k3) do (
for %%j in (deu enu) do (
echo Downloading updates for %%i %%j...
call DownloadUpdates.cmd %%i %%j
call CreateISOImage.cmd %%i %%j
)
)
for %%i in (w60) do (
echo Downloading updates for %%i glb...
call DownloadUpdates.cmd %%i glb
call CreateISOImage.cmd %%i
)
----- snip -----
Hope that helps.
RTW
Posting 
Thread 
- Reply
- New Topic
- Show Thread