Question : Event ID 364 when synchronizing WSUS 3.0 SP1

Hello, I recently performed a fresh install of WSUS 3.0 SP1 on a Windows Server 2003 Enterprise machine. Updates are synchronizing, clients are getting updates, and the synchronization log in the WSUS admin console is showing all synchronizations as successful. However, when I perform a synch I notice a error in the event log for one specific update saying that it failed to download due to a CRC verification error. I have attached the screenshot below.

I checked to see if the file was there and could be deleted, it is not. I have tried most of the basic solutions I could find online, such as making sure the Network Service account had read on the root of the drive and modify on the WSUSContent folder. I have also tried the wsusdebugtool /tool:setforegrounddownload  command, as well as the manual commands for setting BITS priority with no luck.

It seems to me that this one specific update is corrupted, but since the file is not there...I'm not sure how to deal with this one. It's worth mentioning that I also get an Event ID 10034 once a day saying that "some updates couldn't be downloaded". I suspect that's just a side-effect of the issue with this one specific update not downloading. Any help would be greatly appreciated. Thank you.
Attachments:
 
Wsus Event log error.
Wsus Event log error.
 

Answer : Event ID 364 when synchronizing WSUS 3.0 SP1


Dim MRUListArray As Array = Nothing
'populate your array here then
Dim MRUContextMenuStrip As New ContextMenuStrip
For i = 1 To 5
If MRUListArray(i) <> "" Then
MRUContextMenuStrip.Items.Add(MRUListArray(i))
End If
Next
AddHandler MRUContextMenuStrip.ItemClicked, AddressOf sButton1


Private Sub sButton1(ByVal sender As System.Object, ByVal e As System.EventArgs)
Dim sItem = DirectCast(sender, ContextMenuStrip)
'now you can get the value of the item clicked by
File.Open(sItem.Text, FileMode.Open)
'or
File.Open(sItem.Name, FileMode.Open)
'depending on where you saved the full path
End Sub

Random Solutions  
 
programming4us programming4us