How to Get List of Installed Programs in Windows 10/11? – TheITBros (2024)

Knowing what programs are installed on your computer is helpful in many scenarios. From simply doing an inventory, troubleshooting, and removing unused or unwanted applications, there are many ways to list installed programs on Windows.

In this simple guide, we will show you a few different ways to get a list of installed programs in the recent Windows operating system version, such as Windows 10 and 11.

Table of Contents

Using Programs and Features in the Control Panel

Probably the most familiar tool to find the installed programs on a computer is the Programs and Features Control Panel applet. This tool has been around even in the earlier versions of Windows.

To open the Program and Features window, press WIN+R to open the Run dialog box and run appwiz.cpl.

How to Get List of Installed Programs in Windows 10/11? – TheITBros (1)

And the Programs and Features window appears. You can now view the list of installed programs.

How to Get List of Installed Programs in Windows 10/11? – TheITBros (2)

This applet hasn’t had any significant updates. Sadly, it also doesn’t let you export the list of installed programs.

Using the Shell:AppsFolder System Folder

Another quick way to show all installed programs is by opening the Shell:AppsFolder. But don’t let the name fool you. It is not an actual folder on your computer. Instead, it is a special system folder (virtual) that conveniently lists shortcuts to installed programs.

To open, press WIN+R to open the Run dialog box and run Shell:AppsFolder.

How to Get List of Installed Programs in Windows 10/11? – TheITBros (3)

A typical File Explorer window shows up that opens the virtual Applications folder.

How to Get List of Installed Programs in Windows 10/11? – TheITBros (4)

On the bottom-left corner,you canfind the total number of installed apps in Windows. This number includes all the default Windows utilities, such as Control Panel, Disk Cleanup, Cortana, etc.

As convenient as it is, this folder view does not let you export the list of installed applications to a file.

Using the Windows Settings Apps & Features

The Windows Settings Apps & Features have been available since Windows 8, the more modern counterpart of the Programs and Features in Control Panel.

To open it, press WIN+X or right-click on Start and click Installed Apps (Windows 11) or Apps and Features (Windows 10).

How to Get List of Installed Programs in Windows 10/11? – TheITBros (5)

Alternatively, press WIN+R to open the Run dialog box and run ms-settings:appsfeatures.

How to Get List of Installed Programs in Windows 10/11? – TheITBros (6)

And you now have a full view of the “Installed apps.”

How to Get List of Installed Programs in Windows 10/11? – TheITBros (7)

The primary purpose of this feature is to show the installed apps and uninstall them as needed. But it also doesn’t let you export the list of installed programs.

Using the WMIC Command Line Tool

The Windows Management Instrumentation (WMI) is a handy feature that lets you query a plethora of information on local and remote computers. The primordial tool to query the WMI is the wmic command, built-in to Windows.

To use wmic, open an elevated command prompt (as admin) and run the following command:

wmic product get name,version

This command returns a table showing the name and version of the installed programs.

How to Get List of Installed Programs in Windows 10/11? – TheITBros (8)

Since wmic rides on the WMI backbone, it also allows you to query the same information from a remote machine. To do so, use the /node:computer switch, where the computer is the remote host.

wmic /NODE:"JENKINS" product get name,version

How to Get List of Installed Programs in Windows 10/11? – TheITBros (9)

Even better, wmic lets you format a list to a CSV.

wmic product get name,version /FORMAT:CSV

How to Get List of Installed Programs in Windows 10/11? – TheITBros (10)

This allows you to export the output to a CSV file using the standard redirector (>) operator.

How to Get List of Installed Programs in Windows 10/11? – TheITBros (11)

If the CSV report seems too basic for you, perhaps you can export the list of installed programs in an HTML report instead.

wmic /output:c:\temp\InstalledApps.htm product get Name,Version,Vendor /format:htable

How to Get List of Installed Programs in Windows 10/11? – TheITBros (12)

WMI is awesome. But it’s not perfect. One of its pain points is performance. It’s so slow. So let’s jump ahead and see what else we can use.

Using PowerShell to Query the Uninstall Registry

PowerShell has a Registry provider that exposes the HKEY_LOCAL_MACHINE and HKEY_CURRENT_USER hives. You can interact with the registry as though they are items in a drive.

How to Get List of Installed Programs in Windows 10/11? – TheITBros (13)

Using the Get-Item cmdlet, we can retrieve the list of installed programs from these registry paths:

  • HKLM:\Software\Wow6432Node\Microsoft\Windows\CurrentVersion\Uninstall\*’ – 32bit applications.
  • HKLM:\Software\Microsoft\Windows\CurrentVersion\Uninstall\*’ – 64bit applications.

Run the below command in an elevated PowerShell session. This command gets the

## List 32bit installed programs $regPath = 'HKLM:\Software\Wow6432Node\Microsoft\Windows\CurrentVersion\Uninstall\*' Get-ItemProperty -Path $regPath | Select-Object DisplayName, DisplayVersion, Publisher, InstallDate

## List 64bit installed programs
$regPath = ‘HKLM:\Software\Microsoft\Windows\CurrentVersion\Uninstall\*’
Get-ItemProperty -Path $regPath |
Select-Object DisplayName, DisplayVersion, Publisher, InstallDate

The result below shows the installed program information.

How to Get List of Installed Programs in Windows 10/11? – TheITBros (14)

And since you’re working with PowerShell, you can export this report to CSV, XML, HTML, JSON, and others.

Using the PowerShell Get-Package Cmdlet

On Windows Server 2022, Windows 10, and Windows 11, you can use three built-in PowerShell provider Programs, msu, and msi. Note that these providers are only available in Windows PowerShell by default.

To list existing provides, you can run the Get-PackageProviders cmdlet, as shown below.

How to Get List of Installed Programs in Windows 10/11? – TheITBros (15)

To list all packages, run the Get-Package cmdlet without parameters. As you can see, the command returned desktop apps, installed via MSI packages, installed Windows Security Updates (MSU), available PowerShell modules (installed from PSGallery), and Microsoft Store apps.

How to Get List of Installed Programs in Windows 10/11? – TheITBros (16)

You can limit the results by specifying which provider to use. You can use one or more providers in the same command.

Get-Package -ProviderName Programs,msi

How to Get List of Installed Programs in Windows 10/11? – TheITBros (17)

If PowerShell remoting (WinRM) is enabled, you can query remote machines by running the cmdlet inside the script block of the Invoke-Command cmdlet.

Invoke-Command -ComputerName REMOTE_COMPUTER -ScriptBlock {Get-Package -ProviderName Programs}

How to Get List of Installed Programs in Windows 10/11? – TheITBros (18)

Using the PowerShell Get-AppxPackage Cmdlet

The Get-AppxPackage cmdlet is designed to list Windows Apps installed on the computer.

To generate a list of Universal Windows Platform (UWP) apps (formerly Windows Store apps and Metro-style apps) for the current user, run the following command:

# Current user Get-AppxPackage | Select-Object Name, Version

# All users
Get-AppxPackage -AllUsers | Select-Object Name, Version

How to Get List of Installed Programs in Windows 10/11? – TheITBros (19)

Using NirSoft UninstallView

Stepping into third-party territory, the NirSoft UninstallView is a free, small utility that graphically displays all installed programs on your computer. It is available in 32-bit and 64-bit versions and does not require installation.

Once you downloaded the tool, extract the ZIP archive and run the UninstallView.exe file. The UninstallView window shows up with the list of installed programs.

How to Get List of Installed Programs in Windows 10/11? – TheITBros (20)

The default view does not show the system components and Windows apps (from the Microsoft Store). But you can enable to show those items by clicking Options and choosing which items to reveal.

How to Get List of Installed Programs in Windows 10/11? – TheITBros (21)

It has a built-in option to save the report to text and HTML files.

How to Get List of Installed Programs in Windows 10/11? – TheITBros (22)

Below is a sample HTML report.

How to Get List of Installed Programs in Windows 10/11? – TheITBros (23)

Using RevoUninstaller

Our last third-party tool in the list is the RevoUninstaller. It has a freeware version that is sufficient for regular and power users.

How to Get List of Installed Programs in Windows 10/11? – TheITBros (24)

You can download the portable version or the installer. Whichever one you choose will give you the same version of the tool.

The Uninstaller view shows the classic desktop applications installed.

How to Get List of Installed Programs in Windows 10/11? – TheITBros (25)

On the other hand, the Windows Apps view shows all Windows Apps installed (from the Microsoft Store.)

How to Get List of Installed Programs in Windows 10/11? – TheITBros (26)

Right-click any item in the list, and you can export the list to a text or HTML file.

How to Get List of Installed Programs in Windows 10/11? – TheITBros (27)

You can even choose which columns to include in the report.

How to Get List of Installed Programs in Windows 10/11? – TheITBros (28)

Below is a sample of an HTML report generated by RevoUninstaller.

How to Get List of Installed Programs in Windows 10/11? – TheITBros (29)

Bonus: PowerShell Script to Get a List of Installed Programs

This PowerShell script uses the Windows registry entries to retrieve details about installed programs on one or more local/remote computers.

Copy the code and save it to your computer as Get-InstalledApps.ps1. You can also download the script from this Gist.

[CmdletBinding()] param ( [parameter()] [switch]$Credential,

[parameter(ValueFromPipeline = $true)]
[String[]]$ComputerName = $env:COMPUTERNAME
)
begin {
$key = “SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\”
}
process {
$ComputerName | ForEach-Object {
$Comp = $_
if (!$Credential) {
$reg = [microsoft.win32.registrykey]::OpenRemoteBaseKey(‘Localmachine’, $Comp)
$regkey = $reg.OpenSubKey([regex]::Escape($key))
$SubKeys = $regkey.GetSubKeyNames()
Foreach ($i in $SubKeys) {
$NewSubKey = [regex]::Escape($key) + “” + $i
$ReadUninstall = $reg.OpenSubKey($NewSubKey)
$DisplayName = $ReadUninstall.GetValue(“DisplayName”)
$Date = $ReadUninstall.GetValue(“InstallDate”)
$Publ = $ReadUninstall.GetValue(“Publisher”)
New-Object PsObject -Property @{“Name” = $DisplayName; “Date” = $Date; “Publisher” = $Publ; “Computer” = $Comp } | Where-Object { $_.Name }
}
}
else {
$Cred = Get-Credential
$connect = New-Object System.Management.ConnectionOptions
$connect.UserName = $Cred.GetNetworkCredential().UserName
$connect.Password = $Cred.GetNetworkCredential().Password
$scope = New-Object System.Management.ManagementScope(“$Comprootdefault”, $connect)
$path = New-Object System.Management.ManagementPath(“StdRegProv”)
$reg = New-Object System.Management.ManagementClass($scope, $path, $null)
$inputParams = $reg.GetMethodParameters(“EnumKey”)
$inputParams.sSubKeyName = $key
$outputParams = $reg.InvokeMethod(“EnumKey”, $inputParams, $null)
foreach ($i in $outputParams.sNames) {
$inputParams = $reg.GetMethodParameters(“GetStringValue”)
$inputParams.sSubKeyName = $key + $i
$temp = “DisplayName”, “InstallDate”, “Publisher” | ForEach-Object {
$inputParams.sValueName = $_
$outputParams = $reg.InvokeMethod(“GetStringValue”, $inputParams, $null)
$outputParams.sValue
}
New-Object PsObject -Property @{“Name” = $temp[0]; “Date” = $temp[1]; “Publisher” = $temp[2]; “Computer” = $Comp } | Where-Object { $_.Name }
}
}
}
}

Once you’ve saved the script, open PowerShell and change the working directory to the script location.

Related. Navigating the Filesystem with PowerShell Change Directory commands.

Push-Location <path_to_script>

Execute the script without parameters to get the list of installed apps on the local computer.

.\Get-InstalledApps.ps1

How to Get List of Installed Programs in Windows 10/11? – TheITBros (30)

To get lists of installed software from one or more computers (local and remote), specify the -ComputerName parameter followed by the computer names.

.\Get-InstalledApps.ps1 -ComputerName Jenkins

How to Get List of Installed Programs in Windows 10/11? – TheITBros (31)

Conclusion

We’ve discussed several methods to get a list of installed programs on Windows. We used the classic Control Panel applet, the virtual Application folder, the wmic command, the modern Windows Settings, and some PowerShell commands and scripts.

We also explored the UninstallView from NirSoft and RevoUninstallers. both of which are free third-party tools.

Thank you for reading this post, and we hope you learned something new today!

CMDPowershellwindows 10

How to Get List of Installed Programs in Windows 10/11? – TheITBros (32)

June Castillote

June started in IT back in 2002. Since then, he has worked as a programmer, technical support specialist, and systems administrator. He is currently a technology consultant working with Microsoft 365, Azure, and various Messaging and Collaboration systems. June is always on the lookout for automation opportunities and prefers to write code in PowerShell whenever possible.

As an IT professional with over two decades of experience, I have navigated the intricate landscape of computer systems, troubleshooting diverse issues, and optimizing performance. My journey started in 2002, evolving through roles such as a programmer, technical support specialist, and systems administrator. Currently, I serve as a technology consultant, specializing in Microsoft 365, Azure, and various Messaging and Collaboration systems. My inclination towards automation is evident in my preference for coding in PowerShell whenever opportunities arise.

Now, let's delve into the concepts covered in the provided article:

1. Programs and Features in the Control Panel:

  • Familiar tool for finding installed programs.
  • Accessed via WIN+R and running appwiz.cpl.
  • Displays a list of installed programs but lacks the ability to export the list.

2. Shell:AppsFolder System Folder:

  • Opening Shell:AppsFolder via WIN+R provides a quick way to view installed programs.
  • It's a virtual folder listing shortcuts to installed programs.
  • Doesn't allow exporting the list of installed applications.

3. Windows Settings Apps & Features:

  • Modern counterpart of Programs and Features in Control Panel.
  • Accessed via WIN+X or ms-settings:appsfeatures.
  • Offers a view of installed apps but lacks an export feature.

4. WMIC Command Line Tool:

  • Windows Management Instrumentation (WMI) tool.
  • Accessed via an elevated command prompt.
  • Utilizes commands like wmic product get name,version to list installed programs.
  • Allows exporting the list to CSV or HTML but is criticized for performance issues.

5. PowerShell to Query the Uninstall Registry:

  • Utilizes PowerShell's Registry provider to query uninstall registry entries.
  • Retrieves information from registry paths like HKLM:\Software\Wow6432Node\Microsoft\Windows\CurrentVersion\Uninstall\*.
  • Enables exporting the list to various formats like CSV, XML, HTML, JSON, etc.

6. PowerShell Get-Package Cmdlet:

  • Available on Windows Server 2022, Windows 10, and Windows 11.
  • Utilizes the Get-Package cmdlet to list installed packages.
  • Supports different providers like Programs, msu, and msi.

7. PowerShell Get-AppxPackage Cmdlet:

  • Specifically designed to list Windows Apps installed on the computer.
  • Differentiates between apps for the current user and all users.

8. NirSoft UninstallView:

  • Third-party tool providing a graphical display of installed programs.
  • Allows saving the report to text and HTML files.
  • Can reveal system components and Windows apps if configured.

9. RevoUninstaller:

  • Another third-party tool with both freeware and paid versions.
  • Distinguishes between classic desktop applications and Windows Store apps.
  • Offers export options for list customization.

10. Bonus: PowerShell Script for Installed Programs:

  • Presents a PowerShell script leveraging Windows registry entries.
  • Retrieves details about installed programs on local/remote computers.
  • Allows customization by specifying computer names and supports remote execution.

In conclusion, the article comprehensively covers various methods, both native and third-party, to obtain a list of installed programs on Windows systems, catering to different preferences and scenarios.

How to Get List of Installed Programs in Windows 10/11? – TheITBros (2024)
Top Articles
Latest Posts
Article information

Author: Kieth Sipes

Last Updated:

Views: 5810

Rating: 4.7 / 5 (67 voted)

Reviews: 90% of readers found this page helpful

Author information

Name: Kieth Sipes

Birthday: 2001-04-14

Address: Suite 492 62479 Champlin Loop, South Catrice, MS 57271

Phone: +9663362133320

Job: District Sales Analyst

Hobby: Digital arts, Dance, Ghost hunting, Worldbuilding, Kayaking, Table tennis, 3D printing

Introduction: My name is Kieth Sipes, I am a zany, rich, courageous, powerful, faithful, jolly, excited person who loves writing and wants to share my knowledge and understanding with you.