<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>article How To Check Windows Update History in Official Support Articles</title>
    <link>https://community.qlik.com/t5/Official-Support-Articles/How-To-Check-Windows-Update-History/ta-p/1801169</link>
    <description>&lt;P&gt;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.&amp;nbsp;&lt;BR /&gt;Below steps describe how to collect Windows Update history through Powershell, either from the local machine or from a remote server.&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;&lt;STRONG&gt;Collect from the local machine&lt;/STRONG&gt;&lt;/P&gt;
&lt;OL&gt;
&lt;LI&gt;Open PowerShell terminal&lt;/LI&gt;
&lt;LI&gt;Change location to user's desktop&lt;BR /&gt;&amp;nbsp;
&lt;PRE class="ckeditor_codeblock"&gt;Set-Location "$env:HOMEDRIVE$env:HOMEPATH\Desktop"&lt;/PRE&gt;
&lt;/LI&gt;
&lt;LI&gt;Save Windows Hotfix history to file&lt;BR /&gt;&amp;nbsp;
&lt;PRE class="ckeditor_codeblock"&gt;get-wmiobject -class win32_quickfixengineering &amp;gt; ".\WindowsHotFixHistory-$(get-date -Format yyyyMMddhhmmss).txt"&lt;/PRE&gt;
&lt;/LI&gt;
&lt;LI&gt;Collect files from Desktop in Windows' File Explorer&amp;nbsp;&lt;/LI&gt;
&lt;LI&gt;Attach files to open Qlik support case for further investigation&lt;/LI&gt;
&lt;LI&gt;Repeat steps 1-6 on all nodes in the deployment&lt;/LI&gt;
&lt;/OL&gt;
&lt;P&gt;&lt;STRONG&gt;Collect from a remote server&lt;/STRONG&gt;&lt;/P&gt;
&lt;OL&gt;
&lt;LI&gt;Open PowerShell terminal&lt;/LI&gt;
&lt;LI&gt;Change location to user's desktop&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;
&lt;PRE class="ckeditor_codeblock"&gt;Set-Location "$env:HOMEDRIVE$env:HOMEPATH\Desktop"&lt;/PRE&gt;
&lt;/LI&gt;
&lt;LI&gt;Save Windows Hotfix history to file. Replace&amp;nbsp;server.domain.local&amp;nbsp;with the actual server hostname&lt;BR /&gt;&lt;BR /&gt;
&lt;PRE class="ckeditor_codeblock"&gt;get-wmiobject -class win32_quickfixengineering &amp;nbsp;-computername server.domain.local &amp;gt; ".\WindowsHotFixHistory-$(get-date -Format yyyyMMddhhmmss).txt"&lt;/PRE&gt;
&lt;/LI&gt;
&lt;LI&gt;Repeat steps 3 for all nodes in the deployment&lt;/LI&gt;
&lt;LI&gt;Collect files from Desktop in Windows' File Explorer&amp;nbsp;&lt;/LI&gt;
&lt;LI&gt;Check/post on the &lt;A href="https://community.qlik.com/" target="_blank" rel="noopener"&gt;Qlik Community&lt;/A&gt;&amp;nbsp;searching for solutions, and if none found&amp;nbsp; attach files to an open Qlik support case for further investigation&lt;/LI&gt;
&lt;/OL&gt;
&lt;P&gt;&lt;BR /&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Wed, 21 Apr 2021 07:41:45 GMT</pubDate>
    <dc:creator>Daniele_Purrone</dc:creator>
    <dc:date>2021-04-21T07:41:45Z</dc:date>
    <item>
      <title>How To Check Windows Update History</title>
      <link>https://community.qlik.com/t5/Official-Support-Articles/How-To-Check-Windows-Update-History/ta-p/1801169</link>
      <description>&lt;P&gt;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.&amp;nbsp;&lt;BR /&gt;Below steps describe how to collect Windows Update history through Powershell, either from the local machine or from a remote server.&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;&lt;STRONG&gt;Collect from the local machine&lt;/STRONG&gt;&lt;/P&gt;
&lt;OL&gt;
&lt;LI&gt;Open PowerShell terminal&lt;/LI&gt;
&lt;LI&gt;Change location to user's desktop&lt;BR /&gt;&amp;nbsp;
&lt;PRE class="ckeditor_codeblock"&gt;Set-Location "$env:HOMEDRIVE$env:HOMEPATH\Desktop"&lt;/PRE&gt;
&lt;/LI&gt;
&lt;LI&gt;Save Windows Hotfix history to file&lt;BR /&gt;&amp;nbsp;
&lt;PRE class="ckeditor_codeblock"&gt;get-wmiobject -class win32_quickfixengineering &amp;gt; ".\WindowsHotFixHistory-$(get-date -Format yyyyMMddhhmmss).txt"&lt;/PRE&gt;
&lt;/LI&gt;
&lt;LI&gt;Collect files from Desktop in Windows' File Explorer&amp;nbsp;&lt;/LI&gt;
&lt;LI&gt;Attach files to open Qlik support case for further investigation&lt;/LI&gt;
&lt;LI&gt;Repeat steps 1-6 on all nodes in the deployment&lt;/LI&gt;
&lt;/OL&gt;
&lt;P&gt;&lt;STRONG&gt;Collect from a remote server&lt;/STRONG&gt;&lt;/P&gt;
&lt;OL&gt;
&lt;LI&gt;Open PowerShell terminal&lt;/LI&gt;
&lt;LI&gt;Change location to user's desktop&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;
&lt;PRE class="ckeditor_codeblock"&gt;Set-Location "$env:HOMEDRIVE$env:HOMEPATH\Desktop"&lt;/PRE&gt;
&lt;/LI&gt;
&lt;LI&gt;Save Windows Hotfix history to file. Replace&amp;nbsp;server.domain.local&amp;nbsp;with the actual server hostname&lt;BR /&gt;&lt;BR /&gt;
&lt;PRE class="ckeditor_codeblock"&gt;get-wmiobject -class win32_quickfixengineering &amp;nbsp;-computername server.domain.local &amp;gt; ".\WindowsHotFixHistory-$(get-date -Format yyyyMMddhhmmss).txt"&lt;/PRE&gt;
&lt;/LI&gt;
&lt;LI&gt;Repeat steps 3 for all nodes in the deployment&lt;/LI&gt;
&lt;LI&gt;Collect files from Desktop in Windows' File Explorer&amp;nbsp;&lt;/LI&gt;
&lt;LI&gt;Check/post on the &lt;A href="https://community.qlik.com/" target="_blank" rel="noopener"&gt;Qlik Community&lt;/A&gt;&amp;nbsp;searching for solutions, and if none found&amp;nbsp; attach files to an open Qlik support case for further investigation&lt;/LI&gt;
&lt;/OL&gt;
&lt;P&gt;&lt;BR /&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 21 Apr 2021 07:41:45 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Official-Support-Articles/How-To-Check-Windows-Update-History/ta-p/1801169</guid>
      <dc:creator>Daniele_Purrone</dc:creator>
      <dc:date>2021-04-21T07:41:45Z</dc:date>
    </item>
  </channel>
</rss>

