79367301

Date: 2025-01-18 14:17:46
Score: 1.5
Natty:
Report link

Powershell 3.0+

$wi = New-Object -Com WindowsInstaller.Installer
$wi.SummaryInformation("C:\PathTo\my.msi").Property(6)

Powershell 2.0

$WI = New-Object -ComObject WindowsInstaller.Installer
$SI = $WI.GetType().InvokeMember("SummaryInformation", "GetProperty", $null, $WI, @("C:\PathTo\my.msi"))
$SI.GetType().InvokeMember("Property", "GetProperty", $null, $SI, @(6))

6 = PID_COMMENTS
https://learn.microsoft.com/en-us/windows/win32/msi/summaryinfo-summaryinfo

Reasons:
  • Probably link only (1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: sdtin82