If you look at this vbscript forSearching, Downloading, and Installing Updates (http://msdn.microsoft.com/en-us/library/windows/desktop/aa387102(v=vs.85).aspx) in one section of the code we have:
Set downloader = updateSession.CreateUpdateDownloader() downloader.Updates = updatesToDownload downloader.Download()
how can I stop download process programmatically
in vbscript after I triggered it?
(exiting the code execution with WScript.Quit or terminating the WScript process doesn't stop windows from downloading the updates)