
output:D:\programs.txt product get name, versionĪ text file with the name and version of the installed programs on your PC will be created and saved in the location you specified. Run the commands in sequence to export the list of installed programs to the file D:\programs.txt: wmic You can display a list of installed Windows programs and export to a file using Command Prompt and the wmic command.Ĭonsecutively execute the commands to display the list of programs: wmic The text file with the name and version for the installed programs on your PC is generated and saved in the location you specified. To automatically export the list of installed programs to D:\list-of-programs.txt, run: Get-ItemProperty HKLM:\Software\Wow6432Node\Microsoft\Windows\CurrentVersion\Uninstall\* | Select-Object DisplayName, DisplayVersion, Publisher, InstallDate | Format-Table -AutoSize > D:\list-of-programs.txt To display a list of installed programs, run in PowerShell: Get-ItemProperty HKLM:\Software\Wow6432Node\Microsoft\Windows\CurrentVersion\Uninstall\* | Select-Object DisplayName, DisplayVersion, Publisher, InstallDate | Format-Table -AutoSize This method allows you to get a list of installed programs and export it to a file using Windows PowerShell. Run the appwiz.cpl command from the Run ( Windows+R) menu, Command Prompt, or PowerShell. Using the appwiz.cpl control panel file opens a list of installed programs in Windows 10, 8.1, 7 and earlier.
