Sunday, December 28, 2014

List Applications Installed on a Remote or Local Machine with Powershell

This one-liner will list all application on your local computer, or remote computer.

If you do not include the -Computername parameter, it will list all applications on your local machine.

Get-wmi -Class Win32_Product -Computername <TypeComputerNameHere>  | Select-Object -Property Name

No comments:

Post a Comment