Skip to main content
Announcements
Qlik Cloud maintenance is scheduled for this weekend May 11-12. View maintenance windows per region here.

How To Check Windows Update History

No ratings
cancel
Showing results for 
Search instead for 
Did you mean: 
Daniele_Purrone
Support
Support

How To Check Windows Update History

Last Update:

Apr 21, 2021 3:41:45 AM

Updated By:

Daniele_Purrone

Created date:

Apr 21, 2021 3:41:45 AM

Confirming Windows update history can be an important part of root cause analysis when issues suddenly appear to deployment without any updates or changes to deployed software. 
Below steps describe how to collect Windows Update history through Powershell, either from the local machine or from a remote server. 

Collect from the local machine

  1. Open PowerShell terminal
  2. Change location to user's desktop
     
    Set-Location "$env:HOMEDRIVE$env:HOMEPATH\Desktop"
  3. Save Windows Hotfix history to file
     
    get-wmiobject -class win32_quickfixengineering > ".\WindowsHotFixHistory-$(get-date -Format yyyyMMddhhmmss).txt"
  4. Collect files from Desktop in Windows' File Explorer 
  5. Attach files to open Qlik support case for further investigation
  6. Repeat steps 1-6 on all nodes in the deployment

Collect from a remote server

  1. Open PowerShell terminal
  2. Change location to user's desktop 

    Set-Location "$env:HOMEDRIVE$env:HOMEPATH\Desktop"
  3. Save Windows Hotfix history to file. Replace server.domain.local with the actual server hostname

    get-wmiobject -class win32_quickfixengineering  -computername server.domain.local > ".\WindowsHotFixHistory-$(get-date -Format yyyyMMddhhmmss).txt"
  4. Repeat steps 3 for all nodes in the deployment
  5. Collect files from Desktop in Windows' File Explorer 
  6. Check/post on the Qlik Community searching for solutions, and if none found  attach files to an open Qlik support case for further investigation


 

Labels (1)
Version history
Last update:
‎2021-04-21 03:41 AM
Updated by: