[SOLVED] [WinServer2012] Will Not Download or Install Updates

Link to CBS Zip Archive

WeTransfer

Powershell Command Results

Code:
Get-WindowsUpdateLog : The term 'Get-WindowsUpdateLog' is not recognized as the name of a cmdlet, function, scriptfile, or operable program. Check the spelling of the name, or if a path was included, verify that the path is correct
and try again.
At line:1 char:1
+ Get-WindowsUpdateLog
+ ~~~~~~~~~~~~~~~~~~~~
    + CategoryInfo          : ObjectNotFound: (Get-WindowsUpdateLog:String) [], CommandNotFoundException
    + FullyQualifiedErrorId : CommandNotFoundException

Setupapi File

Is attached below...
 

Attachments

Found the issue. This server was upgraded from 2008 which is causing this particular issue. The following was found in the log.

Code:
2017-03-12 10:04:58, Error                 CSI    00000002 (F) Logged @2017/3/12:15:04:58.441 : [ml:240{120},l:238{119}]"EventAITrace:Provider Microsoft-Windows-Win32k is already installed with GUID {e7ef96be-969f-414f-97d7-3ddb7b558ccc}.

Based on info from the following link, the solution is to:

  1. Export (so you have a backup) and then delete the following registry key: HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\WINEVT\Publishers\{e7ef96be-969f-414f-97d7-3ddb7b558ccc}
  2. Reboot
  3. Reattempt Windows Update installation

Let me know if you need assistance with this.
 
Ok...

Starting Windows Update and crossing fingers....

Checking For Updates...

Almost 2 hours later and still checking for updates….think we might be stuck in the same place…should I let it go on longer?
 
Interesting. I have another thread with Server 2012 with the exact same issue as you. I'll be back soon. Need to do a little digging.
 
I need to gather some more info. Please do the following.

1. Point your mouse to the lower left corner of your screen and hover there until the Start Screen icon appears. Then move your mouse on to the Start Screen and right-click and choose Command Prompt (Admin).
2. A User Account Control dialog may come up asking for approval. If it does go ahead and allow.
3. A command prompt window will open. Copy/Paste the following into the command-prompt and hit enter.
wmic qfe list brief /format:texttablewsys > "%USERPROFILE%\desktop\hotfix.txt"

4. After the command runs there will be a file on your desktop named hotfix.txt.
5. Please zip/attach this file.

Thank you.
 
Here's the contents of the hotfix.txt file:

Code:
Description      FixComments  HotFixID   InstallDate  InstalledBy                InstalledOn  Name  ServicePackInEffect  Status  Update                        KB2769165               5517_SERVER\Administrator  2/19/2017                                       
Update                        KB2887535               NT AUTHORITY\SYSTEM        2/15/2017                                       
Update                        KB2887536               NT AUTHORITY\SYSTEM        2/15/2017                                       
Update                        KB2887537               NT AUTHORITY\SYSTEM        2/15/2017                                       
Update                        KB2937636               5517_SERVER\Administrator  2/16/2017                                       
Update                        KB2981685               NT AUTHORITY\SYSTEM        3/7/2017                                        
Update                        KB3013767               5517_SERVER\Administrator  2/16/2017                                       
Update                        KB3018238               5517_SERVER\Administrator  2/19/2017                                       
Update                        KB3151804               5517_SERVER\Administrator  2/18/2017                                       
Update                        KB3172615               5517_SERVER\Administrator  2/19/2017                                       
Update                        KB3173426               5517_SERVER\Administrator  2/18/2017                                       
Security Update            KB3205408               5517_SERVER\Administrator  3/12/2017
 
When was this system set up? If you are unsure, please go to a command-prompt and type systeminfo and hit enter. The OS Install Date will be one of the options.
 
Please try the following.

Download Windows Updates with PowerShell
1. Download PSWindowsUpdate.zip from the following page to your desktop.
Script Windows Update PowerShell Module
2. Once it is downloaded, right-click on the file, select properties and check the Unblock checkbox and click OK.
3. Right-click the file again and chose Extract...Keep the default path and ensure "Show extracted files when complete" is checked and click the Extract button.
4. A window will open and you will see a folder named PSWindowsUpdate.
5. Copy this folder and paste it into the followinig folder: C:\windows\system32\WindowsPowerShell\v1.0\Modules
6. Click Continue if a confirmation message comes up to continue with the copy.
7. Click your Start button and type Windows Powershell into the search box. Several results will come up. Right-click on the one named Windows Powershell ISE to select it and then at the bottom of the screen, click the Run as administrator icon. If a UAC prompt comes up, answer Yes to allow.
8. Once the powershell command prompt comes up, copy/paste the following into the command prompt and hit enter.
Set-ExecutionPolicy RemoteSigned
9. Answer Yes at the prompt that comes up.
10. Next, copy and paste the following into the powershell command-prompt and hit enter.
Import-Module PSWindowsUpdate
11. Next, copy and paste the following into the powershell command-prompt and hit enter.
Get-WUInstall
12. The rest should be automated with some prompts. For example after a while you will be asked to install the updates that were found. Please do so. You may also be asked to type Y to reboot. If it does go ahead and do this when able.
 
Back
Top