Windows Guide ยท Updated June 2026

How to Find the EXE File Location of a Program in
Windows 10 & Windows 11

Need the exact folder where an application is installed? This guide shows every reliable way to locate a program's executable file, copy its full path, and avoid confusing shortcuts with real EXE files.

๐Ÿ“– 7 min read ๐Ÿ–ฅ Windows 10 & 11 ๐Ÿ“ EXE Location โœ… Beginner Friendly

Overview: How to Find Where a Program's EXE File Is Located in Windows

Most Windows applications are started by an executable file with the .exe extension. Finding this file is useful when you need to create a firewall rule, add a program to antivirus exclusions, repair a shortcut, run the app as administrator, check whether a file is legitimate, or manually copy a program path.

There is no single universal location for all EXE files. Traditional desktop applications are usually installed in C:\Program Files or C:\Program Files (x86), portable programs can run from almost any folder, and Microsoft Store apps use protected system directories. The fastest method depends on whether the program is running, pinned to Start, available as a shortcut, or installed as a Store app.

๐Ÿ”Ž
Start Menu Search
Fast
๐Ÿ–ฑ๏ธ
Desktop Shortcut
Easy
๐Ÿ“Š
Task Manager
Best for running apps
๐Ÿ’ป
PowerShell / CMD
Advanced
Important: a shortcut is not the actual program file. A shortcut usually has the .lnk extension and only points to the real EXE file. To find the real executable, open the shortcut properties and check the Target field.

How to Find an EXE File Location from the Start Menu

The Start menu is usually the quickest way to locate a classic desktop application's executable file. This method works well for apps that appear in Windows Search.

  1. Click Start or press the Windows key.
  2. Type the name of the program, for example Notepad++, Chrome, Steam, or VLC.
  3. Right-click the program in the search results.
  4. Select Open file location.
  5. If Windows opens a folder with a shortcut, right-click that shortcut and choose Open file location again.

After the final step, File Explorer should open the folder that contains the real .exe file.

Tip: if you only see a shortcut in the Start Menu folder, that is normal. Many Start menu entries are shortcuts stored under the user profile or the common Start Menu directory. Use Open file location a second time to jump from the shortcut to the actual EXE file.

How to Find a Program's EXE Location from a Desktop Shortcut

If the program has a desktop shortcut, you can find the executable path from its properties. This is one of the most reliable methods for traditional Win32 applications.

  1. Right-click the program shortcut on the desktop.
  2. Select Properties.
  3. Open the Shortcut tab.
  4. Look at the Target field. This usually contains the full path to the EXE file.
  5. Click Open File Location to open the folder directly.

A typical target path looks like this:

"C:\Program Files\Google\Chrome\Application\chrome.exe"

If the path contains extra text after the closing quotation mark, that text is usually a command-line argument. For example, a browser shortcut may include startup parameters. The EXE path is the part inside the quotation marks.

How to Open the EXE File Location of a Running Program Using Task Manager

If the application is currently running, Task Manager is often the best tool because it can show the executable behind an active process.

  1. Open the program whose EXE location you want to find.
  2. Press Ctrl + Shift + Esc to open Task Manager.
  3. If Task Manager opens in compact mode, click More details.
  4. Open the Processes tab.
  5. Find the program in the list.
  6. Right-click it and select Open file location.

Windows will open File Explorer in the folder that contains the executable file used by that running process.

Find the Exact EXE Name in Task Manager

Some programs use several processes. To see the exact executable name, right-click the column header in Task Manager, enable Process name or Command line, and check which .exe file is being launched.

Be careful: do not delete files from C:\Windows, C:\Program Files, or application folders just because you found them in Task Manager. Deleting executable files manually can break programs or Windows components.

How to Search for an EXE File in File Explorer

If you know the program name but cannot find it from Start or Task Manager, use File Explorer search. This method is helpful for portable apps, old software, or programs installed outside the default folders.

  1. Open File Explorer.
  2. Go to This PC or open the drive where the program is likely installed.
  3. Click the search box in the upper-right corner.
  4. Search for the executable name or part of the program name.

Useful search examples:

*.exe
chrome.exe
name:vlc extension:exe

For faster results, search first in common installation folders:

Note: the AppData folder is hidden by default. To open it quickly, press Win + R, type %localappdata% or %appdata%, and press Enter.

How to Find Installed App Location from Windows Settings

Windows Settings can help identify the app, its publisher, and sometimes provide advanced options. However, Settings does not always show the direct EXE path for every program.

Windows 11

  1. Open Settings.
  2. Go to Apps โ†’ Installed apps.
  3. Find the program in the list.
  4. Click the three-dot menu next to the program.
  5. Choose Advanced options if available.

Windows 10

  1. Open Settings.
  2. Go to Apps โ†’ Apps & features.
  3. Select the program.
  4. Check whether Advanced options or related app information is available.

This method is more useful for Microsoft Store apps and modern apps than for classic desktop programs. For a direct EXE path, the Start menu, shortcut properties, or Task Manager usually works better.

How to Find an EXE File Path with Command Prompt or PowerShell

Command-line tools are useful when you need the exact path for scripts, troubleshooting, or administration. They work best when the program is included in the system PATH environment variable.

Use Command Prompt with the where Command

  1. Press Win + R, type cmd, and press Enter.
  2. Run the following command, replacing the file name with the program you need:
where chrome

You can also include the extension:

where chrome.exe

If Windows can find the executable through the PATH variable, it will show a full path such as:

C:\Program Files\Google\Chrome\Application\chrome.exe

Use PowerShell with Get-Command

  1. Right-click Start and select Terminal or Windows PowerShell.
  2. Run:
Get-Command notepad.exe

To show only the executable path, run:

(Get-Command notepad.exe).Source

For software that is not in PATH, PowerShell may not return a result. In that case, use Start menu search, Task Manager, or File Explorer search instead.

Where Are Microsoft Store App EXE Files Located?

Microsoft Store apps are different from traditional desktop programs. Many of them are installed in the protected WindowsApps folder:

C:\Program Files\WindowsApps

This folder is hidden and access is restricted even for administrator accounts. Changing permissions manually is not recommended because it can break Store apps, updates, or Windows app registration.

If you need to launch or reference a Store app, it is usually better to use its Start menu entry, app execution alias, URI protocol, or package name rather than manually editing files inside WindowsApps.

Check App Execution Aliases

Some Store apps and developer tools create command aliases. To check them:

  1. Open Settings.
  2. Go to Apps โ†’ Advanced app settings โ†’ App execution aliases in Windows 11.
  3. Review the list of available aliases.

Troubleshooting: Why You Cannot Find the Program's EXE File

The Open File Location Option Is Missing

This usually happens with Microsoft Store apps, system components, web shortcuts, or special app entries that do not point to a normal desktop executable. Try Task Manager if the app is running, or check the app's settings and installation type.

The Shortcut Opens a Folder but Not the Real EXE File

You may be looking at the Start Menu shortcut folder. Right-click the shortcut inside that folder and select Open file location again, or open Properties and check the Target field.

The Program Is Portable

Portable programs do not always register in Windows. They can be located in Downloads, Documents, Desktop, another drive, or a custom folder. Use File Explorer search for *.exe or search by the program name.

The EXE File Is Hidden in AppData

Some apps install per user under AppData\Local or AppData\Roaming. Examples include auto-updating apps, messengers, launchers, and utilities. Use %localappdata% and %appdata% in the Run dialog to check these folders quickly.

Security Software Reports a Suspicious EXE

If you found an unknown EXE in a temporary folder, Downloads folder, or an unusual path, do not run it. Check its digital signature, scan it with Windows Security, and verify whether it belongs to a known application before allowing it through a firewall or antivirus exclusion list.

Best Practices When Working with EXE File Locations

FAQ: Finding EXE File Locations in Windows

Q What is an EXE file in Windows? โ–ผ
An EXE file is an executable program file. In most desktop applications, the EXE file is what Windows runs when you launch the program from Start, a shortcut, File Explorer, or a command.
Q What is the fastest way to find a program's EXE file? โ–ผ
If the program is running, use Task Manager โ†’ right-click the process โ†’ Open file location. If it is not running, search for it in the Start menu, right-click it, and choose Open file location.
Q Where are most Windows programs installed? โ–ผ
Most classic desktop applications are installed under C:\Program Files or C:\Program Files (x86). Some per-user applications install under C:\Users\YourName\AppData\Local or C:\Users\YourName\AppData\Roaming.
Q Why does Open file location show a shortcut instead of the EXE file? โ–ผ
The Start menu often stores shortcuts rather than actual program files. Right-click the shortcut and choose Open file location again, or open Properties and check the Target field.
Q Can I copy a program by copying its EXE file? โ–ผ
Usually no. Most installed programs also use DLL files, configuration folders, registry entries, services, drivers, and licensing data. Copying only the EXE file may not make the program work on another computer. Portable apps are the exception.
Q Is it safe to open the WindowsApps folder? โ–ผ
It is better not to change permissions or modify files inside C:\Program Files\WindowsApps. This folder is protected because it contains Microsoft Store app packages and system-managed app files.

Final Thoughts

Finding the location of a program's EXE file in Windows is straightforward once you choose the right method. For a running app, Task Manager is the fastest option. For an installed desktop program, the Start menu or shortcut properties usually gives you the exact path. For portable or hard-to-find tools, File Explorer search, Command Prompt, and PowerShell can help.

Always distinguish between a shortcut and the real executable file, keep full paths in quotation marks when using them in commands, and avoid modifying protected folders unless it is absolutely necessary.