I came across a How-to Geek article on how to get a list of all installed programs, including the installed date for each, using a PowerShell command. See https://www.howtogeek.com/165293 .
The article is from 2017, so maybe things have changed. But in any case, I tried it and got the list of installed programs, but without the installed dates.
This is the command H-tG said to use:
Get-ItemProperty HKLM:\Software\Wow6432Node\Microsoft\Windows\CurrentVersion\Uninstall\* | Select-Object DisplayName, DisplayVersion, Publisher, InstallDate | Format-Table –AutoSize
I copied and pasted that straight from the H-tG article, so I know there’s no issue of my having typed something incorrectly.
Any ideas on why I can’t get a list of the installed dates?
Thanks large.