This can be useful to check the integrity of upgrade process for your Windows OS ( all versions with wmic tool).
1 | wmic qfe list full /format:htable > C:\hotfixes.htm |
The same issue with PowerShell tool, see:
1 2 3 | Get-WmiObject -Class "win32_quickfixengineering" | Select-Object -Property "Description", "HotfixID", @{Name="InstalledOn"; Expression={([DateTime]($_.InstalledOn)).ToLocalTime()}} |