AntiMalware Status

PowerShell – list all installed software on the machine

Here is another useful [easyazon_link identifier=”1782173552″ locale=”US” tag=”wn0d5-20″] PowerShell [/easyazon_link]command liner to list of all installed software on the machine

Get-ChildItem HKLM:\Software\Microsoft\Windows\CurrentVersion\Uninstall | % {Get-ItemProperty $_.PsPath} | where {$_.Displayname -and ($_.Displayname -match ".*")} | sort Displayname | select DisplayName, Publisher

And you should get nice output list with installed software and publisher on the local machine.

InstallSOftlist

 

Good PowerShell book available :

[easyazon_image align=”none” height=”110″ identifier=”0735675112″ locale=”US” src=”http://blog.technotesdesk.com/wp-content/uploads/2015/08/51bIr3YBYmL._SL110_.jpg” tag=”wn0d5-20″ width=”90″]

Leave a Reply