Reading Recently Installed Software

by Aug 12, 2022

The MSI installer logs all successful software installation to the Windows event log system. Here is a one-liner that can read back that information:

Get-WinEvent -FilterHashtable @{ ProviderName="MSIInstaller"; ID=1033 } |
Select-Object -Property * 

Twitter This Tip! ReTweet this Tip!