How To List All Installed Programs
📋 List All Installed Programs
Want to see all the apps and software installed on your system? Follow these simple steps based on your operating system.
🔵 On Windows:
Click the Start menu (Windows icon on the bottom-left).
Type PowerShell.
Right-click on Windows PowerShell and select Run as administrator.
In the PowerShell window that opens, copy and paste this command:
Get-ItemProperty HKLM:\Software\Wow6432Node\Microsoft\Windows\CurrentVersion\Uninstall\* | Select-Object DisplayName, DisplayVersion, Publisher | Format-Table –AutoSize
Press Enter to run the command.
You’ll see a list of all installed programs with names, versions, and publishers.
🟣 On macOS:
Click the Launchpad (rocket icon in the Dock), then type Terminal in the search bar.
Click on the Terminal app to open it.
In the Terminal window, type this command to view system-wide installed apps:
ls /Applications
To view apps installed for your user only, type:
ls ~/Applications
Press Return (Enter) and a list of installed applications will appear.
Now you’ve got a full list of what’s installed on your machine — helpful for decluttering, troubleshooting, or just keeping track!