February 11, 2025
powershell, win32_product, windows
List installed applications in Windows
Get-CimInstance win32_product | Select-Object Name, PackageName, InstallDate | Out-GridView
look in both locations for installed software
HKLM:\Software\Microsoft\Windows\CurrentVersion\Uninstall (no results on my Win10 install)HKLM:\Software\WOW6432Node\Microsoft\Windows\CurrentVersion\Uninstall
Loading comments...