wsus update installation

Re: wsus update installation

Postby milind23 » 19.06.2015, 14:35

Hi Aker
As u had said earlier I deleted the log file and ran the UPDATEGENERATOR again .
By this I could download the SP1 ,however while the other updates were downloading the internet connection was lost.
I ran the installer and could install the SP1.i again tried to download the remaining updates ,but I m getting
SERVER FILE NO NEWER THEN THE LOCAL FILE
FILE INTEGRITY VERIFICATION FAILURE
PRESS ANY KEY TO CONTINUE

PLEASE GUIDE.
REGARDS.
milind23
 
Posts: 12
Joined: 15.06.2015, 14:00

Re: wsus update installation

Postby aker » 19.06.2015, 16:49

Maybe related to this: :arrow: viewtopic.php?f=7&t=4960
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: wsus update installation

Postby milind23 » 01.07.2015, 16:08

hi Aker,
The link you gave is truly helpful.Thanks a lot.
i however have the following queries to u

1 i get the following log while updating MSSE

Warning: Deleted unsigned file "C:\Users\MILIND\Downloads\PROGRAMS\wsusoffline96\wsusoffline\client\msse\x64-glb\mpam-fex64.exe"

every time this file of 158mb gets downloaded and then deleted before running installer.

2 how do i know i finished updating ( downloaded all updates). When i run windows update ,i find there are still some updates.

regards.
milind23
 
Posts: 12
Joined: 15.06.2015, 14:00

Re: wsus update installation

Postby aker » 01.07.2015, 22:53

1) are you using aria2 or wget (default) for downloading?

2) maybe related to :arrow: viewtopic.php?f=7&t=172
To check, if wsusou worked, you may use MBSA as it uses the same source for determining updates (wsusscn2.cab).
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: wsus update installation

Postby milind23 » 02.07.2015, 10:28

Hi Aker,
I could not get what this aria2 and Wget mean .where do I find them.

Also the link is enlightening .Thank u.

Regards
milind23
 
Posts: 12
Joined: 15.06.2015, 14:00

Re: wsus update installation

Postby aker » 03.07.2015, 09:42

Did you use .\cmd\AddAria2Downloads.cmd or does a file .\cmd\custom\SetAria2EnvVars.cmd exist?
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: wsus update installation

Postby milind23 » 04.07.2015, 04:40

Hi Aker



1 The file ".\cmd\AddAria2Downloads.cmd " exists ,but I don not know how to use it.please tell me.
2 file .\cmd\custom\SetAria2EnvVars.cmd does not exist.
3 Also I ran MBSA &found 3 critical updates missing . How do I add these to download.
( these update id's are not mentioned in list of missing id's but are listed in installed id's as not found,during installation run . A bit confusing.)

Regards.
milind23
 
Posts: 12
Joined: 15.06.2015, 14:00

Re: wsus update installation

Postby aker » 05.07.2015, 16:30

1 & 2) The script is used to enable aria2 for download. I just wanted to know, if you're using wget or aria2.
3) Could you post the KB-numbers of the updates?

Please take a look at the download process, while wsusou is downloading the MSSE definitions: does it say something like "connection aborted" or similar?
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: wsus update installation

Postby hbuhrmester » 06.07.2015, 08:22

Please take a look at the download process, while wsusou is downloading the MSSE definitions: does it say something like "connection aborted" or similar?


With the --no-verbose option, wget never shows any error messages, and it always returns true. This makes it almost impossible, to track down download problems. The only indication, that something is wrong, is a small detail in the download log (which is usually wsusoffline\log\download.log). The line:

Code: Select all
2015-04-12 07:58:48 URL:http://download.microsoft.com/download/DefinitionUpdates/mpam-fex64.exe [157567760/157567760] -> "../client/msse/x64-glb/mpam-fex64.exe" [1]


means, that everything is okay. The [1] at the end means, that wget could download the whole file in one try.

The line:

Code: Select all
2015-04-12 07:58:48 URL:http://download.microsoft.com/download/DefinitionUpdates/mpam-fex64.exe [157567760/157567760] -> "../client/msse/x64-glb/mpam-fex64.exe" [2]


means, that wget used two tries for the download; that is, wget had to resume the download once. With a reasonable fast and stable DSL connection, this should never happen. With the virus definition files, it always means problems. But wget still thinks, that it got the whole file on the second try, so it won't show any error message, and it just returns true.

It would be much easier to recognize download problems with wget, if the default --verbose option was used. Indicating the progress with dots works with both the terminal and the download log. But this means, that the file wsusoffline\cmd\DownloadUpdates.cmd had to be patched. The line 213 in Dowloadupdates.cmd, version 9.7:

Code: Select all
set DLDR_NVOPT=-nv


could be changed to:

Code: Select all
set DLDR_NVOPT=--verbose --progress=dot:mega


But this is an old problem, and I once developed my own error handling for wget:

viewtopic.php?f=3&t=4927#p15704
viewtopic.php?f=3&t=4927#p15729

Greetings
hbuhrmester
 
Posts: 525
Joined: 11.10.2013, 20:59

Re: wsus update installation

Postby milind23 » 07.07.2015, 09:43

hi aker and hbuhrmester
these are my observations
1 from the command prompt window of download generator i see wget as the download script ,not aria2
please tell me how to change one for the other.
2 the ids of missing updates are as shown from installer clip
20:37:29.27 - Listing ids of missing updates (please be patient, this will take
a while)...
20:41:32.99 - Done.
Stopping service 'Windows Update' (wuauserv) - previous state will be recovered
later...
Listing ids of installed updates...
Listing update files...
Warning: Update kb954430 (id: ad99d2a2-9483-4a22-be93-b2f422024ba0) not found.
Warning: Update kb2754670 (id: db28d469-d96e-4ecf-924c-bc805754ded1) not found.
Info: Skipping update kb890830 (Malicious Software Removal Tool) due to matchin
black list entry.


please tell me how to add these.
3 as for the msse i usually take 7 to 10 tries ,please see the latest attempt by me (below clip)

--2015-07-06 19:22:38-- (try: 7) http://download.microsoft.com/download/Defini
tionUpdates/mpam-fex64.exe
Connecting to download.microsoft.com|122.178.225.27|:80... connected.
HTTP request sent, awaiting response... 206 Partial Content
Length: 171647248 (164M), 9117968 (8.7M) remaining [application/octet-stream]
Saving to: `../client/msse/x64-glb/mpam-fex64.exe'

95% [++++++++++++++++++++++++++++++++++++> ] 163,577,856 11.1K/s in 66s

2015-07-06 19:23:45 (15.4 KB/s) - Connection closed at byte 163577856. Retrying.


--2015-07-06 19:23:45-- (try: 8) http://download.microsoft.com/download/Defini
tionUpdates/mpam-fex64.exe
Connecting to download.microsoft.com|122.178.225.27|:80... connected.
HTTP request sent, awaiting response... 502 Bad Gateway
2015-07-06 19:23:47 ERROR 502: Bad Gateway.

Warning: Download of http://download.microsoft.com/download/DefinitionUpdates/mp
am-fex64.exe failed.

and in case when the download is complete,i get the below
Warning: Deleted unsigned file "C:\Users\MILIND\Downloads\PROGRAMS\wsusoffline96\wsusoffline\client\msse\x64-glb\mpam-fex64.exe"
,


please give solution
with regards to both of u,
Last edited by aker on 07.07.2015, 15:11, edited 1 time in total.
Reason: put logs into quotes
milind23
 
Posts: 12
Joined: 15.06.2015, 14:00

PreviousNext

Return to Installation / Updating

Who is online

Users browsing this forum: No registered users and 15 guests