Skip to main content
rashid lab
CAPTCHA
Image CAPTCHA
Get new captcha!
Enter the characters shown in the image.
This question is for testing whether or not you are a human visitor and to prevent automated spam submissions.

Main navigation

  • Home
  • About Us
  • Knowledge Base
    • Never Stop Learning!
    • Safer Internet
    • Vulnerabilities
  • Contact
CAPTCHA
Image CAPTCHA
Get new captcha!
Enter the characters shown in the image.
This question is for testing whether or not you are a human visitor and to prevent automated spam submissions.
User account menu
  • Log in

Breadcrumb

  1. Home

How to find all installed applications with PowerShell?

By rashid, 10 February, 2025
PowerShell

Launch PowerShell with administrative privileges and subsequently run the following command. This action will generate a comprehensive list of all applications installed on your computer.

Get-WMIObject Win32_InstalledWin32Program | select Name, Version, ProgramId

To export the list into CSV format add "| export-csv c:\installed_program_list.csv" end of the above command. For example, to export the CSV list in the C drive the whole command will be as follows:

Get-WMIObject Win32_InstalledWin32Program | select Name, Version, ProgramId | export-csv c:\installed_program_list.csv

  • Log in to post comments

Comments


Never Stop Learning

RSS feed