Here is a simple [easyazon_link identifier=”1782173552″ locale=”US” tag=”wn0d5-20″] PowerShell [/easyazon_link] command that you can use to pull nice formatted list or report from your Windows computer with currently installed software and date when the software has been installed on the machine. I am using the script with [easyazon_link identifier=”B00WVH5SY8″ locale=”US” tag=”wn0d5-20″] Ansible [/easyazon_link] to pull info from the hosts.
Get-ItemProperty HKLM:\Software\Wow6432Node\Microsoft\Windows\CurrentVersion\Uninstall\* | Select-Object DisplayName, DisplayVersion, Publisher, InstallDate | Format-Table –AutoSize
As well you can get the output into text file
Get-ItemProperty HKLM:\Software\Wow6432Node\Microsoft\Windows\CurrentVersion\Uninstall\* | Select-Object DisplayName, DisplayVersion, Publisher, InstallDate | Format-Table –AutoSize > C:\InstalledPrograms.txt
There are other ways to pull same info but I like this simple [easyazon_link identifier=”1484218507″ locale=”US” tag=”wn0d5-20″] PowerShell [/easyazon_link] command line 🙂
[easyazon_image align=”none” height=”160″ identifier=”1782173552″ locale=”US” src=”http://blog.technotesdesk.com/wp-content/uploads/2016/07/51FpGtGk8AL._SL160_-1.jpg” tag=”wn0d5-20″ width=”130″]