Skip to content

TechDirectArchive

Hands-on IT, Cloud, Security, Veeam & DevOps

  • Home
  • About
  • Advertise With US
  • Reviews
  • Contact
  • Toggle search form

How to query a list of installed programs in Windows

Posted on 17/08/202003/09/2026 Christian By Christian No Comments on How to query a list of installed programs in Windows
  1. Home
  2. Windows Server
  3. How to query a list of installed programs in Windows
Image featuring a laptop corner with the text 'What Software Is Installed?' on a dark wooden background, alongside a blue Windows 10 logo.

In this guide, you will learn How to query a list of installed programs in Windows. There are multiple ways to view programs installed on a computer. Please see “WinRM cannot complete the operation, verify that the specified computer name is valid, that the computer is accessible over the network, and that a firewall exception for the WinRM service is enabled“, and how to set the PowerShell Execution Policy via Windows Registry.

Below are the various methods if you wish to query the list of installed applications on Windows 10 or Windows Server.

Also, see how to set PowerShell Execution Policy via Windows Settings, and how to set Execution Policy via Windows PowerShell.

1: Get the list of installed Apps via Windows Settings

This is the easiest way to view the list of installed applications in Windows. Navigate to Windows Settings as shown below or use press the Windows key + I to open settings and click on Apps

Screenshot of a Windows desktop showcasing the Start Menu with icons for various applications including BlueStacks, and a settings window highlighting options for System, Devices, Phone, Personalization, Apps, Accounts, and Time & Language.

Next, click on the installed programs as shown below. There you should be able to see the list of installed programs on Windows

Screenshot of the Windows Settings menu displaying the 'Apps & features' section with a list of installed applications, including details like name, size, publisher, and installation date.

Here is a list of some interesting guides: How to remove pre-provisioned apps from Windows Image and how to determine Apps UWP and remove pre-provisioned appx in Windows 10,

2: Get the list of installed Applications via the Control Panel

This method is similar to using Windows Settings but a bit old-fashioned. In the search box on the taskbar, type control panel, and click on Control Panel as shown below

Screenshot of the Windows search bar showing 'Control Panel' with options to open the app and a list of recent activities.

Next, click on the programs

Screenshot of the Windows Control Panel, featuring categories like System and Security, Network and Internet, and Programs with highlighted option to uninstall a program.

Now, click on Programs and Features

Screenshot of the 'Programs' section in the Windows Control Panel, highlighting 'Programs and Features' with options to uninstall programs and manage features.

Below is a list of installed programs via the Windows Control Panel.

Screenshot of the Windows Control Panel 'Programs and Features' section displaying a list of installed software programs with their names, publishers, and installation dates.

3: Get lists of installed Apps via Windows Management Instrumentation Command-line (WMIC)

The WMIC is a command-line and scripting interface that simplifies the use of Windows Management Instrumentation (WMI) and systems managed through WMI. Below are the various steps to make this work.

Run the command below with the desired name in which you wish to have the installed programs listed. In my case, this is “InstalledProgramsonmyPC.txt“.

wmic /OUTPUT:InstalledProgramsonmyPC.txt product get name
Screenshot of Windows PowerShell command line, with a command to generate a list of installed programs displayed in a text file, alongside a Windows File Explorer view showing the file's location.

Alternatively, you can execute the wmic this way as shown below. Type “wmic” and press Enter.

Windows PowerShell window displaying the command 'wmic' executed in the system32 directory.

At the “wmic:root\cli>” prompt, type the following command:

/node:EnterComputerNameHere product get name, version, vendor
Windows PowerShell window displaying the output of the command 'wmic product get name, version, vendor'.

Lastly, you could pull a list of installed programs, and have it saved to a text file of your choice. Please specifiy a desired path.

wmic product list brief > C:\temp\installed.txt

List of Installed Programs via PowerShell

Run the following code in order to query the registry for installed programs

$loc = Get-ChildItem HKLM:\Software\Microsoft\Windows\CurrentVersion\Uninstall
$names = $loc |foreach-object {Get-ItemProperty $_.PsPath}
foreach ($name in $names)
{
Write-Host $name.Displayname
}
Screenshot of a PowerShell script displaying installed software on a Windows system, including Git, MATLAB, Microsoft SQL Server 2019, and other applications.

5: Get list of installed applications via the Windows Registry

Alternatively, you could use the command below to view the list of installed programs to query the registry. This will query the registry for all programs that are installed with the MSI installer on the system and place the results in a text file.

Use the command below via the Command Prompt or PowerShell

reg query HKEY_LOCAL_MACHINE\Software\Microsoft\Windows\CurrentVersion\Uninstall >> ListofInstalledPrograms.txt
Command prompt window displaying a query for installed programs in Windows registry, alongside a Notepad document listing installed programs with their registry paths.

I hope you found this blog post on how to query a list of installed programs in Windows helpful. If you have any questions, please let me know in the comment session.

Thank you for reading this post. Kindly share it with others.

  • Share on X (Opens in new window) X
  • Share on Reddit (Opens in new window) Reddit
  • Share on LinkedIn (Opens in new window) LinkedIn
  • Share on Facebook (Opens in new window) Facebook
  • Share on Pinterest (Opens in new window) Pinterest
  • Share on Tumblr (Opens in new window) Tumblr
  • Share on Telegram (Opens in new window) Telegram
  • Share on WhatsApp (Opens in new window) WhatsApp
  • Share on Mastodon (Opens in new window) Mastodon
  • Share on Bluesky (Opens in new window) Bluesky
Windows Server Tags:Microsoft Windows, Programs, Windows 10, Windows 11, Windows Server 2016

Post navigation

Previous Post: How to link your Android or iPhone to your Windows PC
Next Post: No valid offer received: WDS PXE-E16 error when booting clients

Related Posts

  • sql server installation
    How to Install all Editions of Microsoft SQL Server 2025 Oracle/MSSQL/MySQL
  • ansible business cards 1600x0 c default
    Kerberos error: Clock skew too great while getting initial credentials Windows Server
  • Create Password Policies via GPO
    How to Create a Password Policy with Group Policy Object Windows
  • Windows10 SCCM 20161
    What is ADK, MDT, Microsoft Endpoint Configuration Manager (SCCM), Intune, Autopilot, and WSUS Windows Server
  • WDS
    An error occurred while trying to start the Windows deployment services error 0x906 Windows Server
  • Screenshot 2020 07 25 at 13.09.08
    Fix the following error occurred when DNS was queried for the service location Windows Server

More Related Articles

sql server installation How to Install all Editions of Microsoft SQL Server 2025 Oracle/MSSQL/MySQL
ansible business cards 1600x0 c default Kerberos error: Clock skew too great while getting initial credentials Windows Server
Create Password Policies via GPO How to Create a Password Policy with Group Policy Object Windows
Windows10 SCCM 20161 What is ADK, MDT, Microsoft Endpoint Configuration Manager (SCCM), Intune, Autopilot, and WSUS Windows Server
WDS An error occurred while trying to start the Windows deployment services error 0x906 Windows Server
Screenshot 2020 07 25 at 13.09.08 Fix the following error occurred when DNS was queried for the service location Windows Server

Leave a Reply Cancel reply

You must be logged in to post a comment.

Microsoft MVP

vexpert-badge-stars-5

Virtual Background

VEEAMLEGEND

Categories

veeaam100

Veeam Vanguard

  • ycx
    Install SysInternals from the Microsoft Store Windows
  • maxresdefault 2 1
    How to disconnect a Remote Desktop User Windows Server
  • screenshot 2020 05 05 at 10.26.12
    How to enable or disable User Account Control Windows
  • Microsoft365
    Microsoft 365 Backup: Why is it imperative to protect M365? Backup
  • VBR v12 to v13
    Upgrade Veeam Backup and Replication v12.3 to v13 on Windows Backup
  • How to Migrate Windows Servers from Hyper V to Proxmox Correctly
    Migrate Windows Servers from Hyper V to Proxmox Correctly Backup
  • update powershell in Windows
    Upgrade PowerShell Core Windows or Mac and Linux System Windows
  • UnregisterGitLabRunner
    How to unregister GitLab Runner in Windows Version Control System

Subscribe to Blog via Email

Enter your email address to subscribe to this blog and receive notifications of new posts by email.

Join 1,757 other subscribers
  • RSS - Posts
  • RSS - Comments
  • About
  • Authors
  • Write for us
  • Contact
  • Advertise with us
  • General Terms and Conditions
  • Privacy policy
  • Feedly
  • Telegram
  • Youtube
  • Facebook
  • Instagram
  • LinkedIn
  • Tumblr
  • Pinterest
  • Twitter
  • mastodon
  • Bsky

Tags

Active Directory Azure Bitlocker Microsoft Windows PowerShell WDS Windows 10 Windows 11 Windows Deployment Services Windows Server 2016

Copyright © 2026 TechDirectArchive

Loading Comments...

You must be logged in to post a comment.