I am back again with just another write-up on WSUS in a very short time. Last time we talked about Reporting and Cleanup, this time its more into troubleshooting, which often requires one to find particular updates and nuke them out.
Yes! We are talking about those pesky Event IDs 364, which often mention about certain cab files and we System Admin bang their heads on walls to find out that which particular updates they belong to.
Let me give you an easy permanent way out via a Custom PowerShell module named PoshWSUS.
How to use that?
Just download the module, extract the folder named PoshWSUS and copy the same to PowerShell module location for your WSUS Server (I am assuming you have Windows 2008 or Windows 2012 though it works for older ones as well).
Ok. So where is this PowerShell Module Location?
Usually it is C:\Windows\System32\WindowsPowerShell\v1.0\Modules but to know for sure, can open PowerShell prompt and Type $PSHome, which should give you C:\Windows\System32\WindowsPowerShell\v1.0
Installed the module, now what to do?
You can make use of the below code:
Import-Module PoshWSUS Connect-PoshWSUSServer –WsusServer -port 8530 # In case you got some Windows 2003 machine which is connect over port 80 in place of 8530 then uncomment the below line and comment the one above this comment. # Connect-PoshWSUSServer –WsusServer -port 80 Get-PoshWSUSUpdate | Get-PoshWSUSUpdateFile | export-csv -notype $env:userprofile\desktop\WSUSFiles.csv
This would give you all the update names, their corresponding files, their actual disk locations and then you can easily find out, which was the particular update, which is causing you Event ID 364. Once you know that its your choice that how to deal with that update, decline, clean and approve, download again or whatever you prefer.
All well? Nope! There might be still a trouble
There is a tricky scenario as well like the one I faced once and that is Local Update Publisher. Microsoft gives the way that one can push certain non-Microsoft updates via WSUS solution after packaging it in a certain format. Looks good but may be a huge trouble when things go wrong. Updates pushed by LUP don’t show up in GUI of WSUS console, so it gets tricky to decline or clean them out. PowerShell comes handy in such scenario as by that we can find updates by keywords and then decline or delete them. Here goes the code.
[void][reflection.assembly]::LoadWithPartialName("Microsoft.UpdateServices.Administration") $WSUS = [Microsoft.UpdateServices.Administration.AdminProxy]::getUpdateServer(,$false,8530) # Or port 80 $UpdateScope = New-Object Microsoft.UpdateServices.Administration.UpdateScope $UpdateScope.ApprovedStates = [Microsoft.UpdateServices.Administration.ApprovedStates]::Any $updatescope.IncludedInstallationStates = [Microsoft.UpdateServices.Administration.UpdateInstallationStates]::All $Updates = $WSUS.GetUpdates($UpdateScope)| where-object {$_.title -like "*7-Zip*"} # In case, the purpose is just to list patches first where title contains 7-zip $Updates.Title.ToString() #In case, the purpose is just to decline those patches where 7-zip comes in title, then uncomment the below line #$Updates.Decline() # Uncomment the line in case you need to delete the update files and remove patch from DB as well, then uncomment the below line #$Updates | Foreach-OBject{$WSUS.DeleteUPdate($_.Id.UpdateId.Tostring()); WRITE-host $_.Title.ToString() deleted -ForeGroundColor RED}
Hope this helps. As you know, the health of WSUS can be checked via wsusutil checkhealth and appearance of Event ID 10000 and 10030 confirm that everything is well.
Hello Nitish,
Great write up, always enjoy reading it. Have a question pertaining to WSUS. I can’t find Windows 10 Creator Update 1703 on my WSUS Win Server 2012 R2 [Version 6.3 (Build 9600)]. I already read KB4013214 is a pre-requisite for client to get Creator Update 1703. However, KB4013214 is also not in my WSUS. How do I get both updates into WSUS?
Thank you in advanced.
It’s not an update but upgrade actually so please check if you have selected “Upgrades” in classifications
On 26-Apr-2017 7:43 AM, “Nitish Kumar's Blog” wrote:
>
KB4015217,KB4015583 should be approved first to get KB4013214 I guess. I am not really sure though
Always feels good reading your articles. how does whatsapp make money