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
Comments