I Can Do That With 1 Line of PowerShell: Installed Software
Ying Li has a cool PowerShell Script to list installed Software on a local computer HERE.
When I looked at it and thought to myself, I can do that with 1 line (if I cheat a little). Here it is:
PS> gp HKLM:\Software\Microsoft\Windows\CurrentVersion\Uninstall\* |Select DisplayName, DisplayVersion, Publisher, InstallDate, HelpLink, UninstallString |ogv
Here is what you get for that 1
... read more













