Windows – Get list of installed applications from Windows command line

command linewindows

I once saw a guy run a command and got a list of all installed applications on his computer. How do I do this?

I would like a list of my currently installed applications. I believe he used WSH somehow.

Best Answer

If you use Windows Vista or Windows 7 and you didn't want install additional software, you can:

  1. Open a command-line window (Windows + R, CMD.EXE)
  2. Type wmic (Enter)
  3. Type product get name (Enter)
Related Question