Script to check the installed date of software in powershell


Hi,
The simplest way to know when particular software, or all software was installed in your system, is run this script.

######################################## Start Script ########################################

Get-ItemProperty HKLM:\Software\Microsoft\Windows\CurrentVersion\Uninstall\* |Select DisplayName, DisplayVersion, Publisher, InstallDate, HelpLink, UninstallString | ft

######################################## End Script# ########################################

Enjoy.
🙂