No patches Installed

Re: No patches Installed

Postby Dalai » 18.10.2017, 20:45

You won't need to modify anything yet, just check. Please post the contents of UpdateGenerator.ini, it may be easier this way.

Regards
Dalai
Dalai
 
Posts: 1041
Joined: 12.07.2016, 21:00

Re: No patches Installed

Postby giobaxx » 19.10.2017, 11:12

here it is

Code: Select all
[Windows Vista]
glb=Disabled
[Windows Vista x64]
glb=Disabled
[Windows 7]
glb=Disabled
[Windows Server 2008 R2]
glb=Disabled
[Windows Server 2012]
glb=Disabled
[Windows 8.1]
glb=Disabled
[Windows Server 2012 R2]
glb=Disabled
[Windows 10]
glb=Disabled
[Windows Server 2016]
glb=Disabled
[Office 2007]
enu=Disabled
fra=Disabled
esn=Disabled
jpn=Disabled
kor=Disabled
rus=Disabled
ptg=Disabled
ptb=Disabled
deu=Disabled
nld=Disabled
ita=Disabled
chs=Disabled
cht=Disabled
plk=Disabled
hun=Disabled
csy=Disabled
sve=Disabled
trk=Disabled
ell=Disabled
ara=Disabled
heb=Disabled
dan=Disabled
nor=Disabled
fin=Disabled
[Office 2010]
enu=Disabled
fra=Disabled
esn=Disabled
jpn=Disabled
kor=Disabled
rus=Disabled
ptg=Disabled
ptb=Disabled
deu=Disabled
nld=Disabled
ita=Disabled
chs=Disabled
cht=Disabled
plk=Disabled
hun=Disabled
csy=Disabled
sve=Disabled
trk=Disabled
ell=Disabled
ara=Disabled
heb=Disabled
dan=Disabled
nor=Disabled
fin=Disabled
[Office 2013]
enu=Disabled
fra=Disabled
esn=Disabled
jpn=Disabled
kor=Disabled
rus=Disabled
ptg=Disabled
ptb=Disabled
deu=Disabled
nld=Disabled
ita=Disabled
chs=Disabled
cht=Disabled
plk=Disabled
hun=Disabled
csy=Disabled
sve=Disabled
trk=Disabled
ell=Disabled
ara=Disabled
heb=Disabled
dan=Disabled
nor=Disabled
fin=Disabled
[Office 2016]
glb=Disabled
[ISO Images]
single=Disabled
cross-platform=Disabled
[USB Images]
copy=Disabled
path=
cleanup=Disabled
[Options]
verifydownloads=Enabled
includesp=Enabled
includedotnet=Enabled
seconly=Disabled
includemsse=Disabled
includewddefs=Disabled
[Miscellaneous]
proxy=
wsus=
giobaxx
 
Posts: 13
Joined: 06.04.2017, 15:34

Re: No patches Installed

Postby hbuhrmester » 19.10.2017, 12:22

here it is


These settings looks pretty normal.

I think, that it is normal, that dynamic updates are skipped for "win glb". The directory client/win/glb only contains two statically defined installers for Silverlight, and it is not necessary anymore to calculate dynamic updates for "win".

This is hard-coded for "win" in the script DownloadUpdates.cmd, when the internal "function" DownloadCore is called:

Code: Select all
rem *** Download the platform specific patches ***
if "%EXC_WINGLB%"=="1" goto SkipWinGlb
for %%i in (w60 w60-x64 w61 w61-x64 w62-x64 w63 w63-x64 w100 w100-x64) do (
  if /i "%1"=="%%i" (
    call :DownloadCore win glb x86 /skipdynamic
    if errorlevel 1 goto Error
  )
)


It was different in earlier versions of WSUS Offline Update, e.g. the version 9.2.3 still calculates dynamic updates for "win".



But the problem still is, that dynamic updates for Windows 7 x64 are completely missing. There should be these messages:

Code: Select all
Info: Determined static update urls for w61-x64 glb
(...)
Info: Determined dynamic update urls for w61-x64 glb
(...)
Info: Downloaded/validated xxx statically defined updates for w61-x64 glb
(...)
Info: Downloaded/validated yyy dynamically determined updates for w61-x64 glb


But there is no mention of dynamic updates for w61-x64 in the download log.

I would guess, that the problem is in this code block:

Code: Select all
:DetermineWindows
rem *** Determine dynamic update urls for %1 %2 ***
echo %TIME% - Determining dynamic update urls for %1 %2...
if exist ..\xslt\ExtractDownloadLinks-%1-%2.xsl (
  %CSCRIPT_PATH% //Nologo //B //E:vbs XSLT.vbs "%TEMP%\package.xml" ..\xslt\ExtractDownloadLinks-%1-%2.xsl "%TEMP%\DynamicDownloadLinks-%1-%2.txt"
  if errorlevel 1 goto DownloadError
)
if exist ..\xslt\ExtractDownloadLinks-%1-%3-%2.xsl (
  %CSCRIPT_PATH% //Nologo //B //E:vbs XSLT.vbs "%TEMP%\package.xml" ..\xslt\ExtractDownloadLinks-%1-%3-%2.xsl "%TEMP%\DynamicDownloadLinks-%1-%2.txt"
  if errorlevel 1 goto DownloadError
)
del "%TEMP%\package.xml"

if not exist "%TEMP%\DynamicDownloadLinks-%1-%2.txt" goto DoDownload


because the last "goto DoDownload" seems to be the only way, how parts of the script can be skipped without leaving any trace in the download.log.

Most probably, there are some error messages, but they are not caught and written to the log file. They only appear in the command-prompt window, when the script is running, and can be easily lost afterwards: if the script doesn't detect any errors, it will immediately close the window.

To get the complete output of all tools, you should run the script DownloadUpdates.cmd manually from the command line:

  1. Open a command-prompt window

  2. Change to the directory wsusoffline/cmd
    This is the directory, where the script DownloadUpdates.cmd and others are installed.

  3. Run the command:
    Code: Select all
    DownloadUpdates.cmd w61-x64 glb /excludesp /seconly /verify

  4. The command-prompt window will stay open after running the script. Now copy as much of the output as possible with the context menu (right mouse-click in the command-prompt window) and post it here.
    Also copy the last part of the download.log again.
hbuhrmester
 
Posts: 525
Joined: 11.10.2013, 20:59

Re: No patches Installed

Postby giobaxx » 19.10.2017, 13:14

I was trying to run wsusoffline from a Virtual Machine with Windows 7 not in the domain and seems to work.....it could be that the problem is my workstation that is into a domain with a WSUS configured and obvious some GPO...?

DownloadUpdates.cmd w61-x64 glb /excludesp /seconly /verify
Code: Select all
C:\Users\xxxxxxxx\Desktop\wsusoffline1103\wsusoffline\cmd>DownloadUpdates.cmd
 w61-x64 glb /excludesp /seconly /verify
Starting WSUS Offline Update download (v. 11.0.3) for w61-x64 glb...
Checking for sufficient file system rights...
Cleaning up existing directories...
Preserving custom language and architecture additions and removals...
Updating static and exclude definitions for download and update...
No URLs found in ../static/StaticDownloadFiles-modified.txt.
No URLs found in ../exclude/ExcludeDownloadFiles-modified.txt.
No URLs found in ../client/static/StaticUpdateFiles-modified.txt.
Restoring custom language and architecture additions and removals...
Downloading/validating mkisofs tool...
--2017-10-19 13:57:17--  http://download.wsusoffline.net/mkisofs.exe
Resolving download.wsusoffline.net... 81.3.27.18
Connecting to download.wsusoffline.net|81.3.27.18|:80... connected.
HTTP request sent, awaiting response... 200 OK
Length: 380416 (372K) [application/x-msdos-program]
Server file no newer than local file `../bin/mkisofs.exe' -- not retrieving.

Verifying integrity of Windows Update catalog file...
hashdeep64.exe: Audit passed
   Input files examined: 0
  Known files expecting: 0
          Files matched: 1
Files partially matched: 0
            Files moved: 0
        New files found: 0
  Known files not found: 0
Downloading/validating most recent Windows Update catalog file...

Skipping unneeded determination of superseded updates.
Verifying integrity of existing updates for win glb...
hashdeep64.exe: Audit passed
   Input files examined: 0
  Known files expecting: 0
          Files matched: 2
Files partially matched: 0
            Files moved: 0
        New files found: 0
  Known files not found: 0
Determining static update urls for win glb...
Skipping determination of dynamic update urls for win glb on demand.
Downloading/validating statically defined updates for win glb...
Downloading/validating update 1 of 2...
--2017-10-19 13:59:20--  http://download.microsoft.com/download/F/D/0/FD0B0093-D
E8A-4C4E-BDC4-F0C56D72018C/50907.00/Silverlight.exe
Resolving download.microsoft.com... 2.21.167.178
Connecting to download.microsoft.com|2.21.167.178|:80... connected.
HTTP request sent, awaiting response... 200 OK
Length: 7027424 (6.7M) [application/octet-stream]
Server file no newer than local file `../client/win/glb/Silverlight.exe' -- not
retrieving.

Downloading/validating update 2 of 2...
--2017-10-19 13:59:20--  http://download.microsoft.com/download/F/D/0/FD0B0093-D
E8A-4C4E-BDC4-F0C56D72018C/50907.00/Silverlight_x64.exe
Resolving download.microsoft.com... 2.21.167.178
Connecting to download.microsoft.com|2.21.167.178|:80... connected.
HTTP request sent, awaiting response... 200 OK
Length: 13164256 (13M) [application/octet-stream]
Server file no newer than local file `../client/win/glb/Silverlight_x64.exe' --
not retrieving.

Cleaning up client directory for win glb...
Removing NTFS alternate data streams for win glb...
Verifying digital file signatures for win glb...
Creating integrity database for win glb...

Extracting Microsoft's update catalog file package.xml...
13:59:29.20 - Determining superseded updates (please be patient, this will take
a while)...
Extracting file 1...
..\bin\gsort.exe: C:\Users\xxxxxx\AppData\Local\Temp\existing-bundle-revisi
on-ids.txt: No such file or directory
Could Not Find C:\Users\xxxxxx\AppData\Local\Temp\existing-bundle-revision-
ids.txt
Extracting file 2...
..\bin\gsort.exe: C:\Users\xxxxxx\AppData\Local\Temp\superseding-and-supers
eded-revision-ids.txt: No such file or directory
Could Not Find C:\Users\xxxxxx\AppData\Local\Temp\superseding-and-supersede
d-revision-ids.txt
Joining files 1 and 2 to file 3...
Extracting file 4...
..\bin\gsort.exe: C:\Users\xxxxxx\AppData\Local\Temp\BundledUpdateRevisionA
ndFileIds.txt: No such file or directory
Could Not Find C:\Users\xxxxxx\AppData\Local\Temp\BundledUpdateRevisionAndF
ileIds.txt
Joining files 3 and 4 to file 5...
Extracting file 6...
..\bin\gsort.exe: C:\Users\xxxxxx\AppData\Local\Temp\UpdateCabExeIdsAndLoca
tions.txt: No such file or directory
Could Not Find C:\Users\xxxxxx\AppData\Local\Temp\UpdateCabExeIdsAndLocatio
ns.txt
Joining files 5 and 6 to file 7...
13:59:33.19 - Done.
Verifying integrity of existing updates for w61-x64 glb...

hashdeep64.exe: Audit passed
   Input files examined: 0
  Known files expecting: 0
          Files matched: 21
Files partially matched: 0
            Files moved: 0
        New files found: 0
  Known files not found: 0
Determining static update urls for w61-x64 glb...
14:00:00.57 - Determining dynamic update urls for w61-x64 glb...
Downloading/validating statically defined updates for w61-x64 glb...
Downloading/validating update 1 of 21...
--2017-10-19 14:00:01--  http://download.microsoft.com/download/D/0/7/D07A8332-3
B08-4919-9683-BFDD4D6F7BDC/Windows6.1-KB2574819-v2-x64.msu
Resolving download.microsoft.com... 2.21.167.178
Connecting to download.microsoft.com|2.21.167.178|:80... connected.
HTTP request sent, awaiting response... 200 OK
Length: 2327784 (2.2M) [application/octet-stream]
Server file no newer than local file `../client/w61-x64/glb/Windows6.1-KB2574819
-v2-x64.msu' -- not retrieving.

Downloading/validating update 2 of 21...
--2017-10-19 14:00:01--  http://download.microsoft.com/download/D/0/7/D07A8332-3
B08-4919-9683-BFDD4D6F7BDC/Windows6.1-KB2830477-x64.msu
Resolving download.microsoft.com... 2.21.167.178
Connecting to download.microsoft.com|2.21.167.178|:80... connected.
HTTP request sent, awaiting response... 200 OK
Length: 6746744 (6.4M) [application/octet-stream]
Server file no newer than local file `../client/w61-x64/glb/Windows6.1-KB2830477
-x64.msu' -- not retrieving.

Downloading/validating update 3 of 21...
--2017-10-19 14:00:01--  http://download.microsoft.com/download/D/0/7/D07A8332-3
B08-4919-9683-BFDD4D6F7BDC/Windows6.1-KB2857650-x64.msu
Resolving download.microsoft.com... 2.21.167.178
Connecting to download.microsoft.com|2.21.167.178|:80... connected.
HTTP request sent, awaiting response... 200 OK
Length: 1161582 (1.1M) [application/octet-stream]
Server file no newer than local file `../client/w61-x64/glb/Windows6.1-KB2857650
-x64.msu' -- not retrieving.

Downloading/validating update 4 of 21...
--2017-10-19 14:00:01--  http://download.microsoft.com/download/D/A/E/DAEC10E4-C
F9A-4F62-9E87-B07BAA2DCEA9/Windows6.1-KB2923545-x64.msu
Resolving download.microsoft.com... 2.21.167.178
Connecting to download.microsoft.com|2.21.167.178|:80... connected.
HTTP request sent, awaiting response... 200 OK
Length: 5480096 (5.2M) [application/octet-stream]
Server file no newer than local file `../client/w61-x64/glb/Windows6.1-KB2923545
-x64.msu' -- not retrieving.

Downloading/validating update 5 of 21...
--2017-10-19 14:00:01--  http://download.microsoft.com/download/6/C/A/6CA15546-A
46C-4333-B405-AB18785ABB66/Windows6.1-KB2729094-v2-x64.msu
Resolving download.microsoft.com... 2.21.167.178
Connecting to download.microsoft.com|2.21.167.178|:80... connected.
HTTP request sent, awaiting response... 200 OK
Length: 1663018 (1.6M) [application/octet-stream]
Server file no newer than local file `../client/w61-x64/glb/Windows6.1-KB2729094
-v2-x64.msu' -- not retrieving.

Downloading/validating update 6 of 21...
--2017-10-19 14:00:01--  http://download.microsoft.com/download/9/F/E/9FE868F6-A
0E1-4F46-96E5-87D7B6573356/Windows6.1-KB2731771-x64.msu
Resolving download.microsoft.com... 2.21.167.178
Connecting to download.microsoft.com|2.21.167.178|:80... connected.
HTTP request sent, awaiting response... 200 OK
Length: 6580602 (6.3M) [application/octet-stream]
Server file no newer than local file `../client/w61-x64/glb/Windows6.1-KB2731771
-x64.msu' -- not retrieving.

Downloading/validating update 7 of 21...
--2017-10-19 14:00:01--  http://download.microsoft.com/download/F/1/0/F106E158-8
9A1-41E3-A9B5-32FEB2A99A0B/Windows6.1-KB2533623-x64.msu
Resolving download.microsoft.com... 2.21.167.178
Connecting to download.microsoft.com|2.21.167.178|:80... connected.
HTTP request sent, awaiting response... 200 OK
Length: 2314805 (2.2M) [application/octet-stream]
Server file no newer than local file `../client/w61-x64/glb/Windows6.1-KB2533623
-x64.msu' -- not retrieving.

Downloading/validating update 8 of 21...
--2017-10-19 14:00:01--  http://download.microsoft.com/download/1/4/9/14936FE9-4
D16-4019-A093-5E00182609EB/Windows6.1-KB2670838-x64.msu
Resolving download.microsoft.com... 2.21.167.178
Connecting to download.microsoft.com|2.21.167.178|:80... connected.
HTTP request sent, awaiting response... 200 OK
Length: 11840839 (11M) [application/octet-stream]
Server file no newer than local file `../client/w61-x64/glb/Windows6.1-KB2670838
-x64.msu' -- not retrieving.

Downloading/validating update 9 of 21...
--2017-10-19 14:00:01--  http://download.microsoft.com/download/8/B/E/8BEB6BA4-2
9DC-434D-914A-0D15CD873D3A/Windows6.1-KB2834140-v2-x64.msu
Resolving download.microsoft.com... 2.21.167.178
Connecting to download.microsoft.com|2.21.167.178|:80... connected.
HTTP request sent, awaiting response... 200 OK
Length: 1003796 (980K) [application/octet-stream]
Server file no newer than local file `../client/w61-x64/glb/Windows6.1-KB2834140
-v2-x64.msu' -- not retrieving.

Downloading/validating update 10 of 21...
--2017-10-19 14:00:02--  http://download.microsoft.com/download/1/8/F/18F9AE2C-4
A10-417A-8408-C205420C22C3/Windows6.1-KB2786081-x64.msu
Resolving download.microsoft.com... 2.21.167.178
Connecting to download.microsoft.com|2.21.167.178|:80... connected.
HTTP request sent, awaiting response... 200 OK
Length: 235933 (230K) [application/octet-stream]
Server file no newer than local file `../client/w61-x64/glb/Windows6.1-KB2786081
-x64.msu' -- not retrieving.

Downloading/validating update 11 of 21...
--2017-10-19 14:00:02--  http://download.microsoft.com/download/7/A/F/7AFDD2C2-E
C5B-469D-B5A0-E91CE96A6CB7/Windows6.1-KB2639308-x64.msu
Resolving download.microsoft.com... 2.21.167.178
Connecting to download.microsoft.com|2.21.167.178|:80... connected.
HTTP request sent, awaiting response... 200 OK
Length: 5319912 (5.1M) [application/octet-stream]
Server file no newer than local file `../client/w61-x64/glb/Windows6.1-KB2639308
-x64.msu' -- not retrieving.

Downloading/validating update 12 of 21...
--2017-10-19 14:00:02--  http://download.microsoft.com/download/2/A/3/2A3FD850-E
45F-47D4-AFF8-8048333CBA7D/Windows6.1-KB2852386-v2-x64.msu
Resolving download.microsoft.com... 2.21.167.178
Connecting to download.microsoft.com|2.21.167.178|:80... connected.
HTTP request sent, awaiting response... 200 OK
Length: 546327 (534K) [application/octet-stream]
Server file no newer than local file `../client/w61-x64/glb/Windows6.1-KB2852386
-v2-x64.msu' -- not retrieving.

Downloading/validating update 13 of 21...
--2017-10-19 14:00:02--  http://download.microsoft.com/download/3/8/9/38960204-F
89B-4035-B65E-6EA068050825/Windows6.1-KB2506014-x64.msu
Resolving download.microsoft.com... 2.21.167.178
Connecting to download.microsoft.com|2.21.167.178|:80... connected.
HTTP request sent, awaiting response... 200 OK
Length: 2033827 (1.9M) [application/octet-stream]
Server file no newer than local file `../client/w61-x64/glb/Windows6.1-KB2506014
-x64.msu' -- not retrieving.

Downloading/validating update 14 of 21...
--2017-10-19 14:00:02--  http://download.microsoft.com/download/6/1/4/6141BFD5-4
0FD-4148-A3C9-E355338A9AC8/Windows6.1-KB2882822-x64.msu
Resolving download.microsoft.com... 2.21.167.178
Connecting to download.microsoft.com|2.21.167.178|:80... connected.
HTTP request sent, awaiting response... 200 OK
Length: 8439057 (8.0M) [application/octet-stream]
Server file no newer than local file `../client/w61-x64/glb/Windows6.1-KB2882822
-x64.msu' -- not retrieving.

Downloading/validating update 15 of 21...
--2017-10-19 14:00:02--  http://download.microsoft.com/download/4/1/3/41321D2E-2
D08-4699-A635-D9828AADB177/Windows6.1-KB2888049-x64.msu
Resolving download.microsoft.com... 2.21.167.178
Connecting to download.microsoft.com|2.21.167.178|:80... connected.
HTTP request sent, awaiting response... 200 OK
Length: 2041176 (1.9M) [application/octet-stream]
Server file no newer than local file `../client/w61-x64/glb/Windows6.1-KB2888049
-x64.msu' -- not retrieving.

Downloading/validating update 16 of 21...
--2017-10-19 14:00:02--  http://download.microsoft.com/download/7/1/7/7179A150-F
2D2-4502-9D70-4B59EA148EAA/IE11-Windows6.1-x64-en-us.exe
Resolving download.microsoft.com... 2.21.167.178
Connecting to download.microsoft.com|2.21.167.178|:80... connected.
HTTP request sent, awaiting response... 200 OK
Length: 55915216 (53M) [application/octet-stream]
Server file no newer than local file `../client/w61-x64/glb/IE11-Windows6.1-x64-
en-us.exe' -- not retrieving.

Downloading/validating update 17 of 21...
--2017-10-19 14:00:02--  http://download.microsoft.com/download/2/1/C/21C5BF29-6
34B-4D37-803D-AA565C267B15/IE11-Windows6.1-x64-de-de.exe
Resolving download.microsoft.com... 2.21.167.178
Connecting to download.microsoft.com|2.21.167.178|:80... connected.
HTTP request sent, awaiting response... 200 OK
Length: 63320784 (60M) [application/octet-stream]
Server file no newer than local file `../client/w61-x64/glb/IE11-Windows6.1-x64-
de-de.exe' -- not retrieving.

Downloading/validating update 18 of 21...
--2017-10-19 14:00:02--  http://download.microsoft.com/download/6/F/5/6F5FF66C-6
775-42B0-86C4-47D41F2DA187/Win7AndW2K8R2-KB3191566-x64.zip
Resolving download.microsoft.com... 2.21.167.178
Connecting to download.microsoft.com|2.21.167.178|:80... connected.
HTTP request sent, awaiting response... 200 OK
Length: 68076477 (65M) [application/octet-stream]
Server file no newer than local file `../client/w61-x64/glb/Win7AndW2K8R2-KB3191
566-x64.zip' -- not retrieving.

Downloading/validating update 19 of 21...
--2017-10-19 14:00:02--  http://download.microsoft.com/download/2/4/7/247BDD8A-6
AAE-4466-B137-3B2918D0CEAB/Windows6.1-KB3177467-x64.msu
Resolving download.microsoft.com... 2.21.167.178
Connecting to download.microsoft.com|2.21.167.178|:80... connected.
HTTP request sent, awaiting response... 200 OK
Length: 9542472 (9.1M) [application/octet-stream]
Server file no newer than local file `../client/w61-x64/glb/Windows6.1-KB3177467
-x64.msu' -- not retrieving.

Downloading/validating update 20 of 21...
--2017-10-19 14:00:03--  http://download.windowsupdate.com/d/msdownload/update/s
oftware/updt/2016/09/windows6.1-kb3172605-x64_2bb9bc55f347eee34b1454b50c436eb6fd
9301fc.msu
Resolving download.windowsupdate.com... 193.206.135.146, 193.206.135.187
Connecting to download.windowsupdate.com|193.206.135.146|:80... connected.
HTTP request sent, awaiting response... 200 OK
Length: 30678976 (29M) [application/octet-stream]
Server file no newer than local file `../client/w61-x64/glb/windows6.1-kb3172605
-x64_2bb9bc55f347eee34b1454b50c436eb6fd9301fc.msu' -- not retrieving.

Downloading/validating update 21 of 21...
--2017-10-19 14:00:03--  http://download.microsoft.com/download/2/F/4/2F4F48F4-D
980-43AA-906A-8FFF40BCB832/Windows6.1-KB4019990-x64.msu
Resolving download.microsoft.com... 2.21.167.178
Connecting to download.microsoft.com|2.21.167.178|:80... connected.
HTTP request sent, awaiting response... 200 OK
Length: 2873529 (2.7M) [application/octet-stream]
Server file no newer than local file `../client/w61-x64/glb/Windows6.1-KB4019990
-x64.msu' -- not retrieving.

Cleaning up client directory for w61-x64 glb...
Removing NTFS alternate data streams for w61-x64 glb...
Verifying digital file signatures for w61-x64 glb...
Creating integrity database for w61-x64 glb...
Reminding build date...
Creating autorun.inf file...
Done.





Download Log is

Code: Select all
19-Oct-17 12:50:09.35 - Info: Starting WSUS Offline Update download (v. 11.0.3) for w61-x64 glb
19-Oct-17 12:50:09.36 - Info: Option /excludesp detected
19-Oct-17 12:50:09.39 - Info: Option /verify detected
19-Oct-17 12:50:09.42 - Info: Option /exitonerror detected
19-Oct-17 12:50:09.56 - Info: Set time zone to LOC-2:00
19-Oct-17 12:50:10.05 - Info: Preserved custom language and architecture additions and removals
2017-10-19 12:50:10 URL:http://download.wsusoffline.net/StaticDownloadFiles-modified.txt [0/0] -> "../static/StaticDownloadFiles-modified.txt" [1]
2017-10-19 12:50:10 URL:http://download.wsusoffline.net/ExcludeDownloadFiles-modified.txt [0/0] -> "../exclude/ExcludeDownloadFiles-modified.txt" [1]
2017-10-19 12:50:10 URL:http://download.wsusoffline.net/StaticUpdateFiles-modified.txt [0/0] -> "../client/static/StaticUpdateFiles-modified.txt" [1]
19-Oct-17 12:50:10.54 - Info: Updated static and exclude definitions for download and update
19-Oct-17 12:50:10.54 - Info: Restored custom language and architecture additions and removals
19-Oct-17 12:50:11.31 - Info: Downloaded/validated mkisofs tool
19-Oct-17 12:50:12.22 - Info: Downloaded Sysinternals' tools Autologon, Sigcheck and Streams
19-Oct-17 12:51:08.21 - Info: Downloaded/validated most recent Windows Update catalog file
19-Oct-17 12:51:09.35 - Info: Verified digital file signature of Windows Update catalog file
19-Oct-17 12:51:13.20 - Info: Created integrity database for Windows Update catalog file
19-Oct-17 12:51:13.22 - Info: Skipped unneeded determination of superseded updates
19-Oct-17 12:51:13.27 - Info: Determined static update urls for win glb
19-Oct-17 12:51:13.27 - Info: Skipped determination of dynamic update urls for win glb on demand
19-Oct-17 12:51:13.33 - Info: Downloaded/validated http://download.microsoft.com/download/F/D/0/FD0B0093-DE8A-4C4E-BDC4-F0C56D72018C/50907.00/Silverlight.exe to ..\client\win\glb
19-Oct-17 12:51:13.33 - Info: Downloaded/validated http://download.microsoft.com/download/F/D/0/FD0B0093-DE8A-4C4E-BDC4-F0C56D72018C/50907.00/Silverlight_x64.exe to ..\client\win\glb
19-Oct-17 12:51:15.69 - Info: Downloaded/validated 2 statically defined updates for win glb
19-Oct-17 12:51:15.78 - Info: Cleaned up client directory for win glb
19-Oct-17 12:51:15.78 - Info: Removed NTFS alternate data streams for win glb
19-Oct-17 12:51:16.17 - Info: Verified digital file signatures for win glb
19-Oct-17 12:51:16.38 - Info: Created integrity database for win glb
2017-10-19 12:51:23 URL:http://download.wsusoffline.net/ExcludeList-superseded-exclude.txt [701/701] -> "../exclude/ExcludeList-superseded-exclude.txt" [1]
2017-10-19 12:51:24 URL:http://download.wsusoffline.net/HideList-seconly.txt [5219/5219] -> "../client/exclude/HideList-seconly.txt" [1]
19-Oct-17 12:51:26.78 - Info: Determined superseded updates
19-Oct-17 12:51:26.83 - Info: Determined static update urls for w61-x64 glb
19-Oct-17 12:51:27.23 - Info: Downloaded/validated http://download.microsoft.com/download/D/0/7/D07A8332-3B08-4919-9683-BFDD4D6F7BDC/Windows6.1-KB2574819-v2-x64.msu to ..\client\w61-x64\glb
19-Oct-17 12:51:27.23 - Info: Downloaded/validated http://download.microsoft.com/download/D/0/7/D07A8332-3B08-4919-9683-BFDD4D6F7BDC/Windows6.1-KB2830477-x64.msu to ..\client\w61-x64\glb
19-Oct-17 12:51:27.23 - Info: Downloaded/validated http://download.microsoft.com/download/D/0/7/D07A8332-3B08-4919-9683-BFDD4D6F7BDC/Windows6.1-KB2857650-x64.msu to ..\client\w61-x64\glb
19-Oct-17 12:51:27.23 - Info: Downloaded/validated http://download.microsoft.com/download/D/A/E/DAEC10E4-CF9A-4F62-9E87-B07BAA2DCEA9/Windows6.1-KB2923545-x64.msu to ..\client\w61-x64\glb
19-Oct-17 12:51:27.23 - Info: Downloaded/validated http://download.microsoft.com/download/6/C/A/6CA15546-A46C-4333-B405-AB18785ABB66/Windows6.1-KB2729094-v2-x64.msu to ..\client\w61-x64\glb
19-Oct-17 12:51:27.23 - Info: Downloaded/validated http://download.microsoft.com/download/9/F/E/9FE868F6-A0E1-4F46-96E5-87D7B6573356/Windows6.1-KB2731771-x64.msu to ..\client\w61-x64\glb
19-Oct-17 12:51:27.23 - Info: Downloaded/validated http://download.microsoft.com/download/F/1/0/F106E158-89A1-41E3-A9B5-32FEB2A99A0B/Windows6.1-KB2533623-x64.msu to ..\client\w61-x64\glb
19-Oct-17 12:51:27.23 - Info: Downloaded/validated http://download.microsoft.com/download/1/4/9/14936FE9-4D16-4019-A093-5E00182609EB/Windows6.1-KB2670838-x64.msu to ..\client\w61-x64\glb
19-Oct-17 12:51:27.23 - Info: Downloaded/validated http://download.microsoft.com/download/8/B/E/8BEB6BA4-29DC-434D-914A-0D15CD873D3A/Windows6.1-KB2834140-v2-x64.msu to ..\client\w61-x64\glb
19-Oct-17 12:51:27.23 - Info: Downloaded/validated http://download.microsoft.com/download/1/8/F/18F9AE2C-4A10-417A-8408-C205420C22C3/Windows6.1-KB2786081-x64.msu to ..\client\w61-x64\glb
19-Oct-17 12:51:27.23 - Info: Downloaded/validated http://download.microsoft.com/download/7/A/F/7AFDD2C2-EC5B-469D-B5A0-E91CE96A6CB7/Windows6.1-KB2639308-x64.msu to ..\client\w61-x64\glb
19-Oct-17 12:51:27.23 - Info: Downloaded/validated http://download.microsoft.com/download/2/A/3/2A3FD850-E45F-47D4-AFF8-8048333CBA7D/Windows6.1-KB2852386-v2-x64.msu to ..\client\w61-x64\glb
19-Oct-17 12:51:27.23 - Info: Downloaded/validated http://download.microsoft.com/download/3/8/9/38960204-F89B-4035-B65E-6EA068050825/Windows6.1-KB2506014-x64.msu to ..\client\w61-x64\glb
19-Oct-17 12:51:27.23 - Info: Downloaded/validated http://download.microsoft.com/download/6/1/4/6141BFD5-40FD-4148-A3C9-E355338A9AC8/Windows6.1-KB2882822-x64.msu to ..\client\w61-x64\glb
19-Oct-17 12:51:27.23 - Info: Downloaded/validated http://download.microsoft.com/download/4/1/3/41321D2E-2D08-4699-A635-D9828AADB177/Windows6.1-KB2888049-x64.msu to ..\client\w61-x64\glb
19-Oct-17 12:51:27.23 - Info: Downloaded/validated http://download.microsoft.com/download/7/1/7/7179A150-F2D2-4502-9D70-4B59EA148EAA/IE11-Windows6.1-x64-en-us.exe to ..\client\w61-x64\glb
19-Oct-17 12:51:27.23 - Info: Downloaded/validated http://download.microsoft.com/download/2/1/C/21C5BF29-634B-4D37-803D-AA565C267B15/IE11-Windows6.1-x64-de-de.exe to ..\client\w61-x64\glb
19-Oct-17 12:51:27.23 - Info: Downloaded/validated http://download.microsoft.com/download/6/F/5/6F5FF66C-6775-42B0-86C4-47D41F2DA187/Win7AndW2K8R2-KB3191566-x64.zip to ..\client\w61-x64\glb
19-Oct-17 12:51:27.23 - Info: Downloaded/validated http://download.microsoft.com/download/2/4/7/247BDD8A-6AAE-4466-B137-3B2918D0CEAB/Windows6.1-KB3177467-x64.msu to ..\client\w61-x64\glb
19-Oct-17 12:51:27.23 - Info: Downloaded/validated http://download.windowsupdate.com/d/msdownload/update/software/updt/2016/09/windows6.1-kb3172605-x64_2bb9bc55f347eee34b1454b50c436eb6fd9301fc.msu to ..\client\w61-x64\glb
19-Oct-17 12:51:27.23 - Info: Downloaded/validated http://download.microsoft.com/download/2/F/4/2F4F48F4-D980-43AA-906A-8FFF40BCB832/Windows6.1-KB4019990-x64.msu to ..\client\w61-x64\glb
19-Oct-17 12:57:21.08 - Info: Downloaded/validated 21 statically defined updates for w61-x64 glb
19-Oct-17 12:57:21.67 - Info: Cleaned up client directory for w61-x64 glb
19-Oct-17 12:57:21.67 - Info: Removed NTFS alternate data streams for w61-x64 glb
19-Oct-17 12:57:22.96 - Info: Verified digital file signatures for w61-x64 glb
19-Oct-17 12:57:24.30 - Info: Created integrity database for w61-x64 glb
19-Oct-17 12:57:24.38 - Info: Ending WSUS Offline Update download for w61-x64 glb

--------------------------------------------------------------------------------

19-Oct-17 13:06:35.20 - Info: Starting WSUS Offline Update download (v. 11.0.3) for w61-x64 glb
19-Oct-17 13:06:35.21 - Info: Option /excludesp detected
19-Oct-17 13:06:35.23 - Info: Option /seconly detected
19-Oct-17 13:06:35.26 - Info: Option /verify detected
19-Oct-17 13:06:35.29 - Info: Option /exitonerror detected
19-Oct-17 13:06:35.43 - Info: Set time zone to LOC-2:00
19-Oct-17 13:06:35.62 - Info: Preserved custom language and architecture additions and removals
19-Oct-17 13:06:36.03 - Info: Updated static and exclude definitions for download and update
19-Oct-17 13:06:36.04 - Info: Restored custom language and architecture additions and removals
19-Oct-17 13:06:36.17 - Info: Downloaded/validated mkisofs tool
19-Oct-17 13:06:36.54 - Info: Verified integrity of Windows Update catalog file
19-Oct-17 13:07:10.72 - Info: Downloaded/validated most recent Windows Update catalog file
19-Oct-17 13:08:13.12 - Info: Verified digital file signature of Windows Update catalog file
19-Oct-17 13:08:16.65 - Info: Created integrity database for Windows Update catalog file
19-Oct-17 13:08:16.68 - Info: Skipped unneeded determination of superseded updates
19-Oct-17 13:08:16.68 - Info: Verified integrity of existing updates for win glb
19-Oct-17 13:08:17.00 - Info: Determined static update urls for win glb
19-Oct-17 13:08:17.00 - Info: Skipped determination of dynamic update urls for win glb on demand
19-Oct-17 13:08:17.06 - Info: Downloaded/validated http://download.microsoft.com/download/F/D/0/FD0B0093-DE8A-4C4E-BDC4-F0C56D72018C/50907.00/Silverlight.exe to ..\client\win\glb
19-Oct-17 13:08:17.06 - Info: Downloaded/validated http://download.microsoft.com/download/F/D/0/FD0B0093-DE8A-4C4E-BDC4-F0C56D72018C/50907.00/Silverlight_x64.exe to ..\client\win\glb
19-Oct-17 13:08:17.31 - Info: Downloaded/validated 2 statically defined updates for win glb
19-Oct-17 13:08:17.40 - Info: Cleaned up client directory for win glb
19-Oct-17 13:08:17.40 - Info: Removed NTFS alternate data streams for win glb
19-Oct-17 13:08:17.62 - Info: Verified digital file signatures for win glb
19-Oct-17 13:08:17.83 - Info: Created integrity database for win glb
19-Oct-17 13:08:27.96 - Info: Determined superseded updates
19-Oct-17 13:08:27.96 - Info: Verified integrity of existing updates for w61-x64 glb
19-Oct-17 13:08:29.39 - Info: Determined static update urls for w61-x64 glb
19-Oct-17 13:08:29.79 - Info: Downloaded/validated http://download.microsoft.com/download/D/0/7/D07A8332-3B08-4919-9683-BFDD4D6F7BDC/Windows6.1-KB2574819-v2-x64.msu to ..\client\w61-x64\glb
19-Oct-17 13:08:29.79 - Info: Downloaded/validated http://download.microsoft.com/download/D/0/7/D07A8332-3B08-4919-9683-BFDD4D6F7BDC/Windows6.1-KB2830477-x64.msu to ..\client\w61-x64\glb
19-Oct-17 13:08:29.79 - Info: Downloaded/validated http://download.microsoft.com/download/D/0/7/D07A8332-3B08-4919-9683-BFDD4D6F7BDC/Windows6.1-KB2857650-x64.msu to ..\client\w61-x64\glb
19-Oct-17 13:08:29.79 - Info: Downloaded/validated http://download.microsoft.com/download/D/A/E/DAEC10E4-CF9A-4F62-9E87-B07BAA2DCEA9/Windows6.1-KB2923545-x64.msu to ..\client\w61-x64\glb
19-Oct-17 13:08:29.79 - Info: Downloaded/validated http://download.microsoft.com/download/6/C/A/6CA15546-A46C-4333-B405-AB18785ABB66/Windows6.1-KB2729094-v2-x64.msu to ..\client\w61-x64\glb
19-Oct-17 13:08:29.79 - Info: Downloaded/validated http://download.microsoft.com/download/9/F/E/9FE868F6-A0E1-4F46-96E5-87D7B6573356/Windows6.1-KB2731771-x64.msu to ..\client\w61-x64\glb
19-Oct-17 13:08:29.79 - Info: Downloaded/validated http://download.microsoft.com/download/F/1/0/F106E158-89A1-41E3-A9B5-32FEB2A99A0B/Windows6.1-KB2533623-x64.msu to ..\client\w61-x64\glb
19-Oct-17 13:08:29.79 - Info: Downloaded/validated http://download.microsoft.com/download/1/4/9/14936FE9-4D16-4019-A093-5E00182609EB/Windows6.1-KB2670838-x64.msu to ..\client\w61-x64\glb
19-Oct-17 13:08:29.79 - Info: Downloaded/validated http://download.microsoft.com/download/8/B/E/8BEB6BA4-29DC-434D-914A-0D15CD873D3A/Windows6.1-KB2834140-v2-x64.msu to ..\client\w61-x64\glb
19-Oct-17 13:08:29.79 - Info: Downloaded/validated http://download.microsoft.com/download/1/8/F/18F9AE2C-4A10-417A-8408-C205420C22C3/Windows6.1-KB2786081-x64.msu to ..\client\w61-x64\glb
19-Oct-17 13:08:29.79 - Info: Downloaded/validated http://download.microsoft.com/download/7/A/F/7AFDD2C2-EC5B-469D-B5A0-E91CE96A6CB7/Windows6.1-KB2639308-x64.msu to ..\client\w61-x64\glb
19-Oct-17 13:08:29.79 - Info: Downloaded/validated http://download.microsoft.com/download/2/A/3/2A3FD850-E45F-47D4-AFF8-8048333CBA7D/Windows6.1-KB2852386-v2-x64.msu to ..\client\w61-x64\glb
19-Oct-17 13:08:29.79 - Info: Downloaded/validated http://download.microsoft.com/download/3/8/9/38960204-F89B-4035-B65E-6EA068050825/Windows6.1-KB2506014-x64.msu to ..\client\w61-x64\glb
19-Oct-17 13:08:29.79 - Info: Downloaded/validated http://download.microsoft.com/download/6/1/4/6141BFD5-40FD-4148-A3C9-E355338A9AC8/Windows6.1-KB2882822-x64.msu to ..\client\w61-x64\glb
19-Oct-17 13:08:29.79 - Info: Downloaded/validated http://download.microsoft.com/download/4/1/3/41321D2E-2D08-4699-A635-D9828AADB177/Windows6.1-KB2888049-x64.msu to ..\client\w61-x64\glb
19-Oct-17 13:08:29.79 - Info: Downloaded/validated http://download.microsoft.com/download/7/1/7/7179A150-F2D2-4502-9D70-4B59EA148EAA/IE11-Windows6.1-x64-en-us.exe to ..\client\w61-x64\glb
19-Oct-17 13:08:29.79 - Info: Downloaded/validated http://download.microsoft.com/download/2/1/C/21C5BF29-634B-4D37-803D-AA565C267B15/IE11-Windows6.1-x64-de-de.exe to ..\client\w61-x64\glb
19-Oct-17 13:08:29.79 - Info: Downloaded/validated http://download.microsoft.com/download/6/F/5/6F5FF66C-6775-42B0-86C4-47D41F2DA187/Win7AndW2K8R2-KB3191566-x64.zip to ..\client\w61-x64\glb
19-Oct-17 13:08:29.79 - Info: Downloaded/validated http://download.microsoft.com/download/2/4/7/247BDD8A-6AAE-4466-B137-3B2918D0CEAB/Windows6.1-KB3177467-x64.msu to ..\client\w61-x64\glb
19-Oct-17 13:08:29.79 - Info: Downloaded/validated http://download.windowsupdate.com/d/msdownload/update/software/updt/2016/09/windows6.1-kb3172605-x64_2bb9bc55f347eee34b1454b50c436eb6fd9301fc.msu to ..\client\w61-x64\glb
19-Oct-17 13:08:29.79 - Info: Downloaded/validated http://download.microsoft.com/download/2/F/4/2F4F48F4-D980-43AA-906A-8FFF40BCB832/Windows6.1-KB4019990-x64.msu to ..\client\w61-x64\glb
19-Oct-17 13:08:31.77 - Info: Downloaded/validated 21 statically defined updates for w61-x64 glb
19-Oct-17 13:08:32.33 - Info: Cleaned up client directory for w61-x64 glb
19-Oct-17 13:08:32.33 - Info: Removed NTFS alternate data streams for w61-x64 glb
19-Oct-17 13:08:33.55 - Info: Verified digital file signatures for w61-x64 glb
19-Oct-17 13:08:34.80 - Info: Created integrity database for w61-x64 glb
19-Oct-17 13:08:34.88 - Info: Ending WSUS Offline Update download for w61-x64 glb

--------------------------------------------------------------------------------

19-Oct-17 13:57:16.20 - Info: Starting WSUS Offline Update download (v. 11.0.3) for w61-x64 glb
19-Oct-17 13:57:16.20 - Info: Option /excludesp detected
19-Oct-17 13:57:16.23 - Info: Option /seconly detected
19-Oct-17 13:57:16.26 - Info: Option /verify detected
19-Oct-17 13:57:16.62 - Info: Set time zone to LOC-2:00
19-Oct-17 13:57:16.80 - Info: Preserved custom language and architecture additions and removals
19-Oct-17 13:57:17.34 - Info: Updated static and exclude definitions for download and update
19-Oct-17 13:57:17.34 - Info: Restored custom language and architecture additions and removals
19-Oct-17 13:57:17.48 - Info: Downloaded/validated mkisofs tool
19-Oct-17 13:57:18.09 - Info: Verified integrity of Windows Update catalog file
19-Oct-17 13:58:09.22 - Info: Downloaded/validated most recent Windows Update catalog file
19-Oct-17 13:59:14.54 - Info: Verified digital file signature of Windows Update catalog file
19-Oct-17 13:59:18.17 - Info: Created integrity database for Windows Update catalog file
19-Oct-17 13:59:18.19 - Info: Skipped unneeded determination of superseded updates
19-Oct-17 13:59:18.20 - Info: Verified integrity of existing updates for win glb
19-Oct-17 13:59:20.08 - Info: Determined static update urls for win glb
19-Oct-17 13:59:20.08 - Info: Skipped determination of dynamic update urls for win glb on demand
19-Oct-17 13:59:20.15 - Info: Downloaded/validated http://download.microsoft.com/download/F/D/0/FD0B0093-DE8A-4C4E-BDC4-F0C56D72018C/50907.00/Silverlight.exe to ..\client\win\glb
19-Oct-17 13:59:20.15 - Info: Downloaded/validated http://download.microsoft.com/download/F/D/0/FD0B0093-DE8A-4C4E-BDC4-F0C56D72018C/50907.00/Silverlight_x64.exe to ..\client\win\glb
19-Oct-17 13:59:20.56 - Info: Downloaded/validated 2 statically defined updates for win glb
19-Oct-17 13:59:20.65 - Info: Cleaned up client directory for win glb
19-Oct-17 13:59:20.65 - Info: Removed NTFS alternate data streams for win glb
19-Oct-17 13:59:20.92 - Info: Verified digital file signatures for win glb
19-Oct-17 13:59:21.12 - Info: Created integrity database for win glb
19-Oct-17 13:59:33.19 - Info: Determined superseded updates
19-Oct-17 13:59:33.20 - Info: Verified integrity of existing updates for w61-x64 glb
19-Oct-17 14:00:00.57 - Info: Determined static update urls for w61-x64 glb
19-Oct-17 14:00:01.03 - Info: Downloaded/validated http://download.microsoft.com/download/D/0/7/D07A8332-3B08-4919-9683-BFDD4D6F7BDC/Windows6.1-KB2574819-v2-x64.msu to ..\client\w61-x64\glb
19-Oct-17 14:00:01.03 - Info: Downloaded/validated http://download.microsoft.com/download/D/0/7/D07A8332-3B08-4919-9683-BFDD4D6F7BDC/Windows6.1-KB2830477-x64.msu to ..\client\w61-x64\glb
19-Oct-17 14:00:01.03 - Info: Downloaded/validated http://download.microsoft.com/download/D/0/7/D07A8332-3B08-4919-9683-BFDD4D6F7BDC/Windows6.1-KB2857650-x64.msu to ..\client\w61-x64\glb
19-Oct-17 14:00:01.03 - Info: Downloaded/validated http://download.microsoft.com/download/D/A/E/DAEC10E4-CF9A-4F62-9E87-B07BAA2DCEA9/Windows6.1-KB2923545-x64.msu to ..\client\w61-x64\glb
19-Oct-17 14:00:01.03 - Info: Downloaded/validated http://download.microsoft.com/download/6/C/A/6CA15546-A46C-4333-B405-AB18785ABB66/Windows6.1-KB2729094-v2-x64.msu to ..\client\w61-x64\glb
19-Oct-17 14:00:01.03 - Info: Downloaded/validated http://download.microsoft.com/download/9/F/E/9FE868F6-A0E1-4F46-96E5-87D7B6573356/Windows6.1-KB2731771-x64.msu to ..\client\w61-x64\glb
19-Oct-17 14:00:01.03 - Info: Downloaded/validated http://download.microsoft.com/download/F/1/0/F106E158-89A1-41E3-A9B5-32FEB2A99A0B/Windows6.1-KB2533623-x64.msu to ..\client\w61-x64\glb
19-Oct-17 14:00:01.03 - Info: Downloaded/validated http://download.microsoft.com/download/1/4/9/14936FE9-4D16-4019-A093-5E00182609EB/Windows6.1-KB2670838-x64.msu to ..\client\w61-x64\glb
19-Oct-17 14:00:01.03 - Info: Downloaded/validated http://download.microsoft.com/download/8/B/E/8BEB6BA4-29DC-434D-914A-0D15CD873D3A/Windows6.1-KB2834140-v2-x64.msu to ..\client\w61-x64\glb
19-Oct-17 14:00:01.03 - Info: Downloaded/validated http://download.microsoft.com/download/1/8/F/18F9AE2C-4A10-417A-8408-C205420C22C3/Windows6.1-KB2786081-x64.msu to ..\client\w61-x64\glb
19-Oct-17 14:00:01.03 - Info: Downloaded/validated http://download.microsoft.com/download/7/A/F/7AFDD2C2-EC5B-469D-B5A0-E91CE96A6CB7/Windows6.1-KB2639308-x64.msu to ..\client\w61-x64\glb
19-Oct-17 14:00:01.03 - Info: Downloaded/validated http://download.microsoft.com/download/2/A/3/2A3FD850-E45F-47D4-AFF8-8048333CBA7D/Windows6.1-KB2852386-v2-x64.msu to ..\client\w61-x64\glb
19-Oct-17 14:00:01.03 - Info: Downloaded/validated http://download.microsoft.com/download/3/8/9/38960204-F89B-4035-B65E-6EA068050825/Windows6.1-KB2506014-x64.msu to ..\client\w61-x64\glb
19-Oct-17 14:00:01.03 - Info: Downloaded/validated http://download.microsoft.com/download/6/1/4/6141BFD5-40FD-4148-A3C9-E355338A9AC8/Windows6.1-KB2882822-x64.msu to ..\client\w61-x64\glb
19-Oct-17 14:00:01.03 - Info: Downloaded/validated http://download.microsoft.com/download/4/1/3/41321D2E-2D08-4699-A635-D9828AADB177/Windows6.1-KB2888049-x64.msu to ..\client\w61-x64\glb
19-Oct-17 14:00:01.03 - Info: Downloaded/validated http://download.microsoft.com/download/7/1/7/7179A150-F2D2-4502-9D70-4B59EA148EAA/IE11-Windows6.1-x64-en-us.exe to ..\client\w61-x64\glb
19-Oct-17 14:00:01.03 - Info: Downloaded/validated http://download.microsoft.com/download/2/1/C/21C5BF29-634B-4D37-803D-AA565C267B15/IE11-Windows6.1-x64-de-de.exe to ..\client\w61-x64\glb
19-Oct-17 14:00:01.03 - Info: Downloaded/validated http://download.microsoft.com/download/6/F/5/6F5FF66C-6775-42B0-86C4-47D41F2DA187/Win7AndW2K8R2-KB3191566-x64.zip to ..\client\w61-x64\glb
19-Oct-17 14:00:01.03 - Info: Downloaded/validated http://download.microsoft.com/download/2/4/7/247BDD8A-6AAE-4466-B137-3B2918D0CEAB/Windows6.1-KB3177467-x64.msu to ..\client\w61-x64\glb
19-Oct-17 14:00:01.03 - Info: Downloaded/validated http://download.windowsupdate.com/d/msdownload/update/software/updt/2016/09/windows6.1-kb3172605-x64_2bb9bc55f347eee34b1454b50c436eb6fd9301fc.msu to ..\client\w61-x64\glb
19-Oct-17 14:00:01.03 - Info: Downloaded/validated http://download.microsoft.com/download/2/F/4/2F4F48F4-D980-43AA-906A-8FFF40BCB832/Windows6.1-KB4019990-x64.msu to ..\client\w61-x64\glb
19-Oct-17 14:00:03.18 - Info: Downloaded/validated 21 statically defined updates for w61-x64 glb
19-Oct-17 14:00:03.50 - Info: Cleaned up client directory for w61-x64 glb
19-Oct-17 14:00:03.50 - Info: Removed NTFS alternate data streams for w61-x64 glb
19-Oct-17 14:00:07.14 - Info: Verified digital file signatures for w61-x64 glb
19-Oct-17 14:00:08.37 - Info: Created integrity database for w61-x64 glb
19-Oct-17 14:00:08.51 - Info: Ending WSUS Offline Update download for w61-x64 glb
giobaxx
 
Posts: 13
Joined: 06.04.2017, 15:34

Re: No patches Installed

Postby hbuhrmester » 19.10.2017, 14:23

Then it seems, that Cscript and the Windows Script Host (WSH) are disabled. This can be due to GPO restrictions.

WSUS Offline Update uses some VBscripts to extract information from the WSUS catalog file, using XSLT transformations. If this is disabled, then all files for the calculation of superseded updates will be missing, and the file DynamicDownloadLinks-w61-x64-glb.txt will be missing as well.

Unfortunately, all error messages from Cscript.exe are disabled with the batch option //B:

//B Specifies batch mode, which does not display alerts, scripting errors, or input prompts.

https://technet.microsoft.com/en-us/lib ... 20171.aspx


You could do a global search and replace in the script DownloadUpdates.cmd, to remove the option //B from all calls of Cscript.exe. Just search for //B and replace it with an empty string everywhere.

Then run the script again.
hbuhrmester
 
Posts: 525
Joined: 11.10.2013, 20:59

Re: No patches Installed

Postby giobaxx » 19.10.2017, 14:52

......i cannot do anything if i have some policy restrictions, but i could try to use do downloads the updates throught a Linux Workstation. if I only wanted updates for windows 7 x64 english i could run:

Code: Select all
 ./download-updates.bash w61-x64 enu



correct?
giobaxx
 
Posts: 13
Joined: 06.04.2017, 15:34

Re: No patches Installed

Postby Dalai » 19.10.2017, 15:34

giobaxx wrote:......i cannot do anything if i have some policy restrictions [...]

Maybe not, but you would help to track down the reason for the issue. I'm still don't believe it's an error in the script itself, although it might be a little bit unfortunate to disable all error output with the //B...

Regards
Dalai
Dalai
 
Posts: 1041
Joined: 12.07.2016, 21:00

Re: No patches Installed

Postby giobaxx » 23.10.2017, 16:38

...but seems ther problem is my workstation....because i tried with a linux and with a Windows not in the doman where i have download around 200 updates.

In my workstation i notice some error in after downloading silverlight just report below. Seems that is does not find some files es: \bin\gsort.exe: C:\Users\ADMINI~1\AppData\Local\Temp\existing-bundle-revision-
ids.txt: No such file or directory

Code: Select all
Cleaning up client directory for win glb...
Removing NTFS alternate data streams for win glb...

Extracting Microsoft's update catalog file package.xml...
10:04:24.22 - Determining superseded updates (please be patient, this will take
a while)...
Extracting file 1...
..\bin\gsort.exe: C:\Users\ADMINI~1\AppData\Local\Temp\existing-bundle-revision-
ids.txt: No such file or directory
Could Not Find C:\Users\ADMINI~1\AppData\Local\Temp\existing-bundle-revision-ids
.txt
Extracting file 2...
..\bin\gsort.exe: C:\Users\ADMINI~1\AppData\Local\Temp\superseding-and-supersede
d-revision-ids.txt: No such file or directory
Could Not Find C:\Users\ADMINI~1\AppData\Local\Temp\superseding-and-superseded-r
evision-ids.txt
Joining files 1 and 2 to file 3...
Extracting file 4...
..\bin\gsort.exe: C:\Users\ADMINI~1\AppData\Local\Temp\BundledUpdateRevisionAndF
ileIds.txt: No such file or directory
Could Not Find C:\Users\ADMINI~1\AppData\Local\Temp\BundledUpdateRevisionAndFile
Ids.txt
Joining files 3 and 4 to file 5...
Extracting file 6...
..\bin\gsort.exe: C:\Users\ADMINI~1\AppData\Local\Temp\UpdateCabExeIdsAndLocatio
ns.txt: No such file or directory
Could Not Find C:\Users\ADMINI~1\AppData\Local\Temp\UpdateCabExeIdsAndLocations.
txt
Joining files 5 and 6 to file 7...
10:04:27.27 - Done.


Could be that?
giobaxx
 
Posts: 13
Joined: 06.04.2017, 15:34

Re: No patches Installed

Postby hbuhrmester » 23.10.2017, 18:39

The missing files are part of the problem. Actually, the same error messages already appeared in the protocol you posted on 2017-10-19.

But the real reason seems to be, that the Windows Script Host is disabled, and that Cscript.exe is failing silently because of the batch option //B.

The code at this point is:

DownloadUpdates.cmd, version 11.0.3, lines 1079 - 1119
Code: Select all
echo %TIME% - Determining superseded updates (please be patient, this will take a while)...
rem *** Revised part for determination of superseded updates starts here ***
rem *** First step ***
echo Extracting file 1...
%CSCRIPT_PATH% //Nologo //B //E:vbs ..\cmd\XSLT.vbs "%TEMP%\package.xml" ..\xslt\extract-existing-bundle-revision-ids.xsl "%TEMP%\existing-bundle-revision-ids.txt"
..\bin\gsort.exe -u -T "%TEMP%" "%TEMP%\existing-bundle-revision-ids.txt" >"%TEMP%\existing-bundle-revision-ids-unique.txt"
del "%TEMP%\existing-bundle-revision-ids.txt"
echo Extracting file 2...
%CSCRIPT_PATH% //Nologo //B //E:vbs ..\cmd\XSLT.vbs "%TEMP%\package.xml" ..\xslt\extract-superseding-and-superseded-revision-ids.xsl "%TEMP%\superseding-and-superseded-revision-ids.txt"
..\bin\gsort.exe -u -T "%TEMP%" "%TEMP%\superseding-and-superseded-revision-ids.txt" >"%TEMP%\superseding-and-superseded-revision-ids-unique.txt"
del "%TEMP%\superseding-and-superseded-revision-ids.txt"
echo Joining files 1 and 2 to file 3...
..\bin\join.exe -t "," -o "2.2" "%TEMP%\existing-bundle-revision-ids-unique.txt" "%TEMP%\superseding-and-superseded-revision-ids-unique.txt" >"%TEMP%\ValidSupersededRevisionIds.txt"
del "%TEMP%\existing-bundle-revision-ids-unique.txt"
del "%TEMP%\superseding-and-superseded-revision-ids-unique.txt"
..\bin\gsort.exe -u -T "%TEMP%" "%TEMP%\ValidSupersededRevisionIds.txt" >"%TEMP%\ValidSupersededRevisionIds-unique.txt"
del "%TEMP%\ValidSupersededRevisionIds.txt"

rem *** Second step ***
echo Extracting file 4...
%CSCRIPT_PATH% //Nologo //B //E:vbs ..\cmd\XSLT.vbs "%TEMP%\package.xml" ..\xslt\extract-update-revision-and-file-ids.xsl "%TEMP%\BundledUpdateRevisionAndFileIds.txt"
..\bin\gsort.exe -u -T "%TEMP%" "%TEMP%\BundledUpdateRevisionAndFileIds.txt" >"%TEMP%\BundledUpdateRevisionAndFileIds-unique.txt"
del "%TEMP%\BundledUpdateRevisionAndFileIds.txt"
echo Joining files 3 and 4 to file 5...
..\bin\join.exe -t "," -o "2.3" "%TEMP%\ValidSupersededRevisionIds-unique.txt" "%TEMP%\BundledUpdateRevisionAndFileIds-unique.txt" >"%TEMP%\SupersededFileIds.txt"
del "%TEMP%\ValidSupersededRevisionIds-unique.txt"
del "%TEMP%\BundledUpdateRevisionAndFileIds-unique.txt"
..\bin\gsort.exe -u -T "%TEMP%" "%TEMP%\SupersededFileIds.txt" >"%TEMP%\SupersededFileIds-unique.txt"
del "%TEMP%\SupersededFileIds.txt"

rem *** Third step ***
echo Extracting file 6...
%CSCRIPT_PATH% //Nologo //B //E:vbs ..\cmd\XSLT.vbs "%TEMP%\package.xml" ..\xslt\extract-update-cab-exe-ids-and-locations.xsl "%TEMP%\UpdateCabExeIdsAndLocations.txt"
..\bin\gsort.exe -u -T "%TEMP%" "%TEMP%\UpdateCabExeIdsAndLocations.txt" >"%TEMP%\UpdateCabExeIdsAndLocations-unique.txt"
del "%TEMP%\UpdateCabExeIdsAndLocations.txt"
echo Joining files 5 and 6 to file 7...
..\bin\join.exe -t "," -o "2.2" "%TEMP%\SupersededFileIds-unique.txt" "%TEMP%\UpdateCabExeIdsAndLocations-unique.txt" >"%TEMP%\ExcludeListLocations-superseded-all.txt"
del "%TEMP%\SupersededFileIds-unique.txt"
del "%TEMP%\UpdateCabExeIdsAndLocations-unique.txt"
..\bin\gsort.exe -u -T "%TEMP%" "%TEMP%\ExcludeListLocations-superseded-all.txt" >"%TEMP%\ExcludeListLocations-superseded-all-unique.txt"
del "%TEMP%\ExcludeListLocations-superseded-all.txt"


Each step follows the same approach. For the first step this is:
  1. Cscript.exe is used to extract the first file existing-bundle-revision-ids.txt
  2. The file existing-bundle-revision-ids.txt is sorted with GNU sort and saved with the new filename BundledUpdateRevisionAndFileIds-unique.txt
  3. The unsorted file existing-bundle-revision-ids.txt file is deleted
  4. Cscript.exe is used to extract the second file superseding-and-superseded-revision-ids.txt
  5. The file superseding-and-superseded-revision-ids.txt is sorted to superseding-and-superseded-revision-ids-unique.txt
  6. The unsorted file superseding-and-superseded-revision-ids.txt is deleted
  7. The two sorted files are combined with GNU join to a third file
  8. The two sorted files are then deleted as well

If Cscript.exe fails, then the files existing-bundle-revision-ids.txt and superseding-and-superseded-revision-ids.txt will not be created. But Cscript.exe with the batch option //B fails silently and you won't see any error message from Cscript.exe itself.

Instead, you only see the following error messages from gsort.exe and del, whenever they try to access missing files.

This would be clearer, if the batch option //B would not be used.

A simple test for the Windows Script Host would be to simply launch the UpdateInstaller.exe. Unlike the UpdateGenerator.exe, the UpdateInstaller.exe does check for a running WSH. You will probably get the message, that the WSH is disabled and must be reenabled by an administrator.

If the UpdateInstaller.exe starts normally and displays a dialog window as in http://www.wsusoffline.net/docs/ , then you can just close it again, because you don't actually want to install anything at this point.
hbuhrmester
 
Posts: 525
Joined: 11.10.2013, 20:59

Re: No patches Installed

Postby giobaxx » 24.10.2017, 10:10

i have tried to remove //B from DownloadsUpdates.cmd and run DownloadUpdates.cmd w61-x64 glb /excludesp /seconly /verify

and probably the problems it due to a GPO that block to run the script XSLT.vbs during the downloads i have these errors...


Code: Select all
...\bin\gsort.exe: C:\Temp\BundledUpdateRevisionAndFileIds.txt: No such file or d
irectory
Could Not Find C:\Temp\BundledUpdateRevisionAndFileIds.txt
Joining files 3 and 4 to file 5...
Extracting file 6...
XSLT uses MSXML 6.0
C:\Users\administrator\Desktop\wsusoffline1103\wsusoffline\cmd\XSLT.vbs(47, 1) msx
ml6.dll: Access is denied.
giobaxx
 
Posts: 13
Joined: 06.04.2017, 15:34

PreviousNext

Return to Installation / Updating

Who is online

Users browsing this forum: No registered users and 53 guests