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 *