Windows find exe in path

  • Home
  • News
  • Full Guide to Find the EXE File of a Program on Windows

By Andrea | Follow |
Last Updated

Any installed programs have executable files on Windows. How can you find the exe file of a program if you need to change some configurations? This post from MiniTool post provides you with several methods to quickly locate the executable file.

The exe file is a kind of executable file that can be run on the computer by clicking it. Sometimes, you need to find the exe file of a program to change the settings of the application. The following is a detailed telling you how to locate a program’s exe file on Windows via the shortcut and other access.

Way 1. Find the Location of an Executable on Windows via the Shortcut

If there is a shortcut to the program on your desktop, you can find the exe file easily with the following steps.

Step 1. Find the shortcut of the program and right-click on it.

Step 2. Choose Open file location from the context menu. The computer will directly open the File Explorer and locate the executable file. To get the specific file location, you can choose Properties from the context menu. The file path is listed under the Shortcut tab.

Way 2. Locate the EXE File of a Program Using the Task Manager

When there is no icon of the program on your desktop and the program is running, you can get its executable file via the Task Manager. Here is how:

Step 1. Right-click on the Windows icon and choose Task Manager to open the window.

Step 2. Locate the program and right-click on it to choose Open file location.

locate the exe file via Task Manager

You can also find the installed programs in the Start menu on your computer; thus, when there is no shortcut on the desktop, you can try to find the exe file of a program via the Start menu.

Step 1. Click on the Windows icon to open the Start menu.

Step 2. Look through the application list to locate the found software. Right-click on it and choose More > Open file location.

find the exe file through the Start menu

Alternatively, you can directly type the name of the program into the Windows Search box. When the computer displays the best-matched result, you can right-click on it to choose Open file location.

Way 4. Find the Executable File Using File Explorer

This method must work but it could be a time-consuming approach compared with other ways as there are numerous files in File Explorer.

First, press Win + E to open File Explorer directly. Typically, installed software saves their files in the C drive. You can go to C:\Program Files or C:\Program Files (x86) to have a check. If you have changed the installation path of the software, head to the corresponding file path to find the executable file.

find the exe file by browsing the file list in File Explorer

Bonus Tip: Fix If the Executable File Can’t Be Found

What if you can’t find the executable file properly on your computer? Exe files, similar to other files, are prone to be lost due to various reasons. If you accidentally delete the exe file, you can go to the Recycle Bin to find and recover the executable file from the Recycle Bin.

If you cannot find the executable file in the Recycle Bin, try professional data recovery software to get it back. MiniTool Power Data Recovery is recommended with its robust data recovery algorithm, wide compatibility with file types and devices, and secure data recovery environment. As long as your exe file is not overwritten, you can try MiniTool Power Data Recovery Free to find and recover it.

MiniTool Power Data Recovery FreeClick to Download100%Clean & Safe

Final Words

This post shows you four ways to find the exe file of a program on Windows. It could be an easy task when there is a shortcut on the desktop. If you cannot locate the shortcut of the program properly, hope this post gives you some inspiration.

About The Author

Position: Columnist

Andrea graduated in English and has a keen interest in the IT industry and questions that arise when computers are used. She is passionate about new things and challenging things and has a wide range of interests like playing guitar, gaming, and crafting.

Sign in to your How-To Geek account

A list of startup apps on Windows 10.

Jason Fitzpatrick / How-To Geek

Quick Links

  • How to Find an EXE from a Shortcut

  • If You Can’t Find a Shortcut to Use

  • Where are EXEs for Apps From the Microsoft Store Located?

Summary

  • Locate an EXE file from a shortcut by opening its properties window and clicking «Open File Location.»
  • If a shortcut is not available, check «C:\Program Files» or appdata folder for the application’s main program folder.
  • EXEs for apps from the Microsoft Store are located in «C:\Program Files\WindowsApps,» but we do not recommended to modify or take ownership of this folder.

If you’re doing advanced troubleshooting or configuration of a Windows 10 application and need to locate the program’s EXE file in File Explorer, there’s a quick way to do it if you have access to a shortcut. Here’s how.

How to Find an EXE from a Shortcut

First, locate a shortcut that points to the application whose EXE you need to find, because you will need to open its properties window. If the shortcut is on your desktop, right-click it and select «Properties.»

In Windows 10, right-click a desktop shortcut and select "Properties."

If the shortcut is pinned to your taskbar, right-click it, then right-click its name again in the menu that pops up just above it. In the menu that appears, click «Properties.»

In Windows 10, right-click the taskbar icon then right-click the shortcut and select "Properties."

If the shortcut is in your «Start» menu, you have more hoops to jump through (and this method only works with traditional Windows Desktop Apps and not UWP apps). Right-click the «Start» menu shortcut for the application, and select More > Open file location.

Finding an application's shortcut location using the Start Menu in Windows 10

This will open a File Explorer window that points to the actual application shortcut file. Right click on that shortcut, and select «Properties.»

No matter how you located the shortcut, a properties window will appear. Make sure you’re on the «Shortcut» tab, then click «Open File Location.»

To find an application's EXE file, right-click a shortcut and click "Open File Location" in the Properties window on Windows 10.

You’ll be taken directly to the EXE’s location in File Explorer.

Locating an application's EXE file in File Explorer on Windows 10.

What you do next depends on what you’re trying to achieve. Just be careful in there—modifying or moving a program’s files can make it not work properly.

If You Can’t Find a Shortcut to Use

If a shortcut to the program whose EXE you want to find isn’t easily available, you should first check «C:\Program Files» or «C:\Program Files (x86)» on your machine to find the application’s main program folder. Look for a folder with a name similar to the publisher of the program, or the name of the application itself. Open it, and you might find the EXE you’re looking for inside.

Other programs install to locations in your appdata folder. To open your appdata folder, launch File Explorer, then enter %appdata% in the address bar.

Enter %appdata% into the address bar.

There is no hard and fast rule about what apps will install to one of the Program Files folders and which will install to the appdata folder, though most install to Program Files.

Where are EXEs for Apps From the Microsoft Store Located?

Apps you install from the Microsoft Store, and their executables, are stored in «C:\Program Files\WindowsApps.»

The WhatsApp exe located in the WindowsApps folder.

The WindowsApp folder has very restricted permissions applied to it that will prevent regular user accounts (and even administrator accounts) from even viewing the contents by default. You can take ownership of the folder if you want, but we don’t recommend it—it could cause issues with the apps.

If you’ve ever worked with the Windows operating system, especially in a programming context, you might have used the Process.Start(yourapp) (e.g. Process.Start(Outlook)) method in languages like C#.
This method is used to start a process — essentially to run an executable file. But have you ever stopped to think about how Windows knows where to find the executables you’re trying to run? Let’s dive into the inner workings of Windows and uncover this mystery.

Understanding the PATH Environment Variable

One of the first things that come into play is the PATH environment variable. This variable is crucial for the operating system to locate the executables.

What is the PATH Variable?

The PATH environment variable is a system-wide or user-specific setting that lists directories where executable files are stored. When you run a command in the command prompt or use Process.Start(...), Windows looks through these directories to find the executable file.

The PATH environment variable can be viewed via the system settings:

x

… there is also a nice editor now build into Windows for the PATH environment variable:

x

How Does PATH Work?

If the executable is not in the current directory, Windows searches through each directory specified in the PATH variable. The order of directories in PATH is important — Windows searches them in the order they are listed. If it finds the executable in one of these directories, it runs it.

However, the PATH variable isn’t the only mechanism at play here.

The Role of App Paths in the Windows Registry

Another less-known but equally important component is the “App Paths” registry key. This key is located in HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\App Paths.

Understanding App Paths

The App Paths key is used to specify paths to specific applications. Each application can have its entry under the App Paths key, which means that Windows can find and run these applications even if their directories are not listed in the PATH variable.

x

How Do App Paths Work?

When you use Process.Start(...) and specify an application name like “OUTLOOK”, Windows first checks the App Paths registry key before it checks the PATH variable. If it finds an entry for the application here, it uses this path to start the application. This is particularly useful for applications that are not in common directories or have multiple executables in different locations.

Conclusion

Both PATH and App Paths play significant roles. While PATH is great for general-purpose directory searching (especially for system utilities and command-line tools), App Paths is more specific and tailored for individual applications.

There are probably even more options out there besides PATH and App Paths — Windows is full of hidden gems like this 😉.

Fun fact: I only discovered App Paths while debugging a problem. We use Process.Start(OUTLOOK) to start Microsofts Outlook Client and I was wondering why this even works.

Hope this helps!

Table of contents

  • Where Are the Executive Files for the Apps from the Microsoft Store Located?
  • How to Find EXE Files on Windows 10/11?
    • Method 1: Use the program’s shortcut
    • Method 2: Use the Task Manager
  • What if You Can’t Find the Right Shortcut?
    • Method 3: Go through File Explorer
    • Method 4: Go through the Start menu
  • What if the Search Function in the Start Menu Is Faulty?
    • Solution 1: Allow background applications
    • Solution 2: Rebuild the search index
    • Solution 3: Reinstall the Start menu
    • Solution 4: Check for faulty system files and replace them
    • Solution 5: Use a different user account
    • Solution 6: Run a full malware scan
  • How to Quickly Find a Program’s EXE File in Windows 10/11: Answered
  • FAQ

Finding the exact location of an executable file can sometimes feel like searching for a needle in a digital haystack—but it doesn’t have to be.There is a quick and easy way to locate a program’s EXE file—and if this doesn’t work, we have a few workarounds for you. Let’s get right to it. Here’s how to find EXE files on Windows 10 and 11.

Where Are the Executive Files for the Apps from the Microsoft Store Located?

By default, the apps you download from the Microsoft Store, along with their executable files, are stored in the following directory: C:\Program Files\WindowsApps. The WindowsApps folder has strict access controls. This prevents most users (including administrators) from accessing and even viewing its contents.  You can change this by taking ownership of the folder, but this is generally not advised as you will be risking having issues with your installed apps.


Also read:Where Are Microsoft Store Apps and Games Installed on Windows 10/11?


How to Find EXE Files on Windows 10/11?

Method 1: Use the program’s shortcut

This first method is as simple as right-clicking the app’s desktop shortcut and selecting Open file location from the context menu. You can also right-click the shortcut, select Properties , and then click on the Open File Location button under the Shortcut tab of the Properties dialog window.

Open File Location

Method 2: Use the Task Manager

Secondly, you can easily open the installation folder of any program by going through the Task Manager. Note that the program has to be running for this to work.

Follow these steps:

  • Press the Ctrl, Shift, and Esc keys together while the program is running to open the Task Manager.
  • After the Task Manager opens, click on More details if you don’t see the Processes tab.
  • Now, locate the program under the Processes tab, right-click it, and then select Open file location in the context menu.

Task Manager>Processes tab>Open File Location» src=»https://www.auslogics.com/en/articles/wp-content/uploads/2020/11/3.png»></p>
<div class= Картинка с сайта: www.auslogics.com


Also read:Ultimate Guide: How to Set Priority Using Windows Task Manager


What if You Can’t Find the Right Shortcut?

Method 3: Go through File Explorer

The next method involves using File Explorer. All you have to do is launch File Explorer by pressing the Windows and E keys simultaneously and then navigate to any of these paths:

C:\Program Files 

File Explorer C:Program Files

C:\Program Files (x86) 

C:Program Files (x86)

Open the folder named after the program you’re looking for to locate its executable file.


Also read:Windows File Explorer Not Responding? Try These Solutions


The forth method for finding the path or location of any executable application in Windows 10/11 is going through the Start menu. This is the method to use if you don’t have the app’s desktop shortcut or if the shortcut you have is broken.

Follow these steps:

  • Tap the Windows logo keyboard button or click on the Windows logo in the taskbar to open the Start menu.
  • Locate the program by typing its name. If the search function isn’t activated automatically, press the Windows + S keyboard buttons together, then perform the search.
  • Once you see the program in the search results, right-click it and click on Open file location in the context menu. You’ll have to place your mouse pointer over More in the menu in certain cases.
  • A File Explorer window will now show up. There you’ll find the main shortcut file for the application.
  • Right-click on the shortcut and select Open file location in the context menu. Alternatively, you can select Properties and then click on the Open File Location button under the Shortcut tab.
  • The folder that contains the EXE file will now pop up.

Start menu>any program>Open File Location» src=»https://www.auslogics.com/en/articles/wp-content/uploads/2020/11/6-1.png»></p>
<div class= Картинка с сайта: www.auslogics.com

We’re going to show you how to fix Windows 10/11 search when certain apps aren’t showing up in the search menu or when the search goes blank whenever you try to run a search query. There are different solutions to the problem, so follow them one after the other until the issue goes away.

Solution 1: Allow background applications

If you disabled your background apps , the Start menu search cannot update and add certain programs. Allow background apps, then try running the search function to check for the problem. Follow these steps:

  • Right-click the Windows logo in the taskbar.
  • Select Settings from the Power User menu.
  • You can also tap the Windows logo and S keyboard buttons simultaneously to launch the Settings application.
  • After Settings opens, click on Privacy.
  • Go to the left side of the next screen, scroll down, and then click on Background apps .

Settings>Privacy>Background Apps» src=»https://www.auslogics.com/en/articles/wp-content/uploads/2020/11/6-2.png»></p>
<div class= Картинка с сайта: www.auslogics.com

  • Switch to the right side of the window and switch on the Let apps run in the background option.

Let apps run in the background

  • Run a search to check for the problem.

Solution 2: Rebuild the search index

Windows 10 and 11, just like other Windows versions , have an indexing service that helps it create a database of apps and files to make the search process easy. If this database (index) becomes corrupt or encounters an issue, the search function will not work properly. One way to troubleshoot this issue is to rebuild the search index. The process involves deleting the current data and building the index from scratch. This way, Windows will get rid of whatever file is causing the problem. However, before you start, try troubleshooting the service and check if the issue is resolved. Follow these steps:

  • Right-click the Start button.
  • Click on Run in the Power User menu.
  • Pressing the Windows logo + R keyboard buttons will also open the Run dialog box.
  • After Run opens, type “Control Panel,” and then hit the Enter keyboard button.
  • Once the Control Panel opens, go to the top-right corner of the window and select Large icons in the View by drop-down menu.
  • Locate Indexing Options and click on it.

Indexing Options (highlighted)

  • Once the Indexing Options dialog window appears, click on the Advanced button.
  • When you see the Advanced Options dialog, go to Troubleshooting under the Index Settings tab and click on Troubleshoot search and indexing.
  • Select the problem you’re experiencing on the What problems do you notice? screen.
  • If prompted, choose the Try troubleshooting with administrator permissions option on the next screen.

Try troubleshooting with administrator permissions

  • If the troubleshooter finds and fixes the problem, run your search. If not, head to the next method.

The following steps will show you how to rebuild the search index:

  • Right-click the Start button.
  • Click on Run in the Power User menu.
  • Pressing the Windows logo + R keyboard buttons will also open the Run dialog box.
  • After Run opens, type “Control Panel,” and then hit the Enter keyboard button.
  • Once the Control Panel opens, go to the top-right corner of the window and select Large icons in the View by drop-down menu.
  • Locate Indexing Options and click on it.
  • Once the Indexing Options dialog window appears, click on the Advanced button.
  • When you see the Advanced Options dialog, go to Troubleshooting under the Index Settings tab and click on Rebuild .
  • Next, click on OK .
  • After the indexing process is complete, try running a search.

Before you start this, shut down the Start menu via the Task Manager. Follow these steps:

  • Press the Ctrl, Shift, and Esc keyboard buttons together to open the Task Manager.
  • Click on More details if you can only see apps that are currently running.
  • Switch to the Details tab, locate the StartMenuExperienceHost.exe process, and then terminate it.

StartMenuExperiencehost.exe


Also read:[FIXED] Is the Windows 10 Start Menu Not Working?


Now follow these steps to reinstall the Start menu:

  • Right-click the Windows logo in the taskbar.
  • After the Power User menu opens, select Windows PowerShell (Admin).
  • Click on Yes once the User Account Control dialog window opens.
  • Once the PowerShell window opens, type the following line and hit the Enter key:
Get-AppXPackage -AllUsers | Foreach {Add-AppxPackage -DisableDevelopmentMode -Register “$($_.InstallLocation)\AppXManifest.xml”} 

StartMenuExperiencehost.exeGet-AppXPackage -AllUsers | Foreach {Add-AppxPackage -DisableDevelopmentMode -Register “$($_.InstallLocation)AppXManifest.xml”}

  • Once the command completes, restart your system and try running a search.

Related:Most Useful Powershell Commands: Cheat Sheet with Examples


Solution 4: Check for faulty system files and replace them

The search function could be malfunctioning because some important Windows files are corrupt. Fixing the problem here involves repairing those corrupted system files. To do that, you have to run the DISM (Deployment Image Servicing and Management) and SFC (System File Checker) tools. Follow these steps:

  • Right-click the Start button.
  • Click on Run in the Power User menu.
  • Pressing the Windows logo + R keyboard buttons will also open the Run dialog box.
  • After Run opens, type “command prompt” into the text box, and then press the Ctrl, Shift, and Enter keyboard buttons together.
  • Once the User Account Control dialog window pops up, click on the Yes button.
  • After the Command Prompt appears, go to the black screen, type the following line, and then hit the Enter key:
DISM.exe /Online /Cleanup-image /Restorehealth 

Reestorehealth

  • DISM will now fetch the system files that SFC will use to run the repair process. Normally, the tool uses the Windows Update utility to fetch these files. Once the command executes, move to the next step.
  • Now, type sfc /scannow,” then hit the Enter key.

sfc scannow

  • If you see a completion message that reads, “Windows Resource Protection found corrupt files and successfully repaired them,” restart your system, and the issue should be resolved.

Solution 5: Use a different user account

The issue might be connected to your current user account. Log off and log into another account and try performing a search. If the search function works without issues, then your usual user account is the problem.

If you don’t have another user account, you have to create it . The steps below will show you how to do that:

  • Press the Windows and I keys on your keyboard simultaneously to summon the Settings application.
  • Click on Accounts .
  • Go to the left pane of the Accounts screen and click on Family & other users.

Accounts>Family & Other People» src=»https://www.auslogics.com/en/articles/wp-content/uploads/2020/11/18.png»></p>
<div class= Картинка с сайта: www.auslogics.com

  • Now click on Add someone else to this PC under Other users in the right pane.

Add someone else to this PC

  • Once the new screen pops up, click the I don’t have this person’s sign-in information option.

I don’t have this person’s sign-in information

  • Click on Add a user without a Microsoft account on the next page, and then enter the name and password of the account when the next screen shows up.

Add a user without a Microsoft account

  • Now go back to the Family & other users tab in the Accounts section of Settings.
  • Locate the user account you just created, click on it, and then click on the Change account type button.
  • Choose Administrator under the Account type drop-down and then click OK .
  • Reboot your system and log into the new account, then try running a search.

Solution 6: Run a full malware scan

The search function might be affected by malware . Run a full and comprehensive malware scan to fish out the virus and remove it. 


Also read: How to Prevent Malware: Lock Down Your Online Safety


Here’s what you can do on Windows 10/11:

  • Click on the Start menu and type “Windows Security.”
  • Click on the Windows Security app from the search results to open it.
  • Once Windows Security opens, click on Virus & threat protection from the menu on the left.
  • Under the Current threats section, click on Quick scan to scan the most vulnerable areas of your PC.

Note

If you want a thorough scan, in the Virus & threat protection window, scroll down and click on Scan options and choose Full scan from the list of scan types. This option will thoroughly check all files and running programs on your hard disk.

The scan might take some time, depending on the size of your hard drive and the number of files. You can continue using your PC during the scan, but it may run slower due to resource usage. If any threats are identified, you will be given prompts on how to remove them.

PRO TIP

To keep your PC safe from a variety of online threats, consider adding an extra level of security with Auslogics Anti-Malware. The program can instantly detect even the newest and rarest forms of malware and give your system all-round protection with scheduled automatic scans.

Plus, Auslogics Anti-Malware is meant to run alongside your main antivirus with zero conflict.

How to Quickly Find a Program’s EXE File in Windows 10/11: Answered

Locating a program’s EXE file in Windows 10 or 11 is typically quite straightforward. The quickest way to find the needed exe file would be to simply right-click the program’s shortcut. But if you can’t locate the right shortcut, you can find the executive file location via the Task Manager or File Explorer.  If you can’t find the needed program through the search menu, consider allowing background applications, rebuilding the search index, reinstalling the Start menu, checking for corrupt system files, using a different user account, and running a full malware scan with Auslogics Anti-Malware .

FAQ

An EXE file is an executable file used to run programs on Windows. It’s important because it contains the instructions your computer needs to execute a specific program.

Yes, you can find an EXE file by navigating to the program’s installation folder. Such folders are typically found in the Program Files or Program Files (x86) directory on your C: drive.

The WindowsApps folder is protected by Windows to prevent unauthorized changes. You need administrative privileges to access it, and it’s typically hidden by default.

If the program’s EXE file remains elusive, it may have been deleted or corrupted, and reinstalling the program is your best option.

Источник

FTC disclaimer: This post contains affiliate links and I will be compensated if you make a purchase after clicking on my link.

Do you know that Executable file are known as the heart of the program. When you run any program it executes the program through .exe file.

It is not that easy to find Exe file on Windows 10 by going through folders. It may take long enough time to find Exe file by searching through folders.

When you click any program on your Desktop, Start and Taskbar; generally you are clicking on Shortcut of the program not the the executable file.

When you click on Shortcut of any program, it will link back to .exe file before it opens the program.

For example,some executable files are Skype.exe, Notepad.exe, chrome.exe and likewise.

So, the question arises where the executable file are located on Windows 10/8/7.

In order to find exe file on Windows 10, we have come up with two methods.

Method 1: Look for Shortcut on Start, Desktop and Taskbar

One of the easiest way to open the location of any exe file is through their Shortcuts.

Steps 1: Look for Shortcut on Start, Desktop and Taskbar. For reference of this article, we have taken Chrome as an example. we will look for Chrome on Start.

Step 2: Once you have located Shortcut of the program, you can now right click on it, hover it over “More” and then click on “Open file location“. It will take you to the Shortcut of the program.

Step 3: Now, right click on the Shortcut of the program and click on “Properties“. It will open “Google Chrome properties“.

Step 4: In  “Google Chrome Properties“, you can see “Target” which contain the exact Exe file of the Chrome on Windows 10.

Step 5: Now, you can either keep the location of the executable file or you can open the file location. For this, you need to click on “Open file Location“. It will open the program executable file (here it is Chrome).

Method 2: Find Exe file on Windows 10 by Searching

It is one of the easiest way to open any executable file on Windows 10. For this, you need to follow the below process.

Step 1: Press Windows key + S, and type in “Chrome”. Then, right click on Google Chrome and click on “Open file location”

Step 2: Again, it will open the program Shortcut. Now, you need to right click on it and click on “Properties” to open the target location of the executable file. You can follow Method 1: Step 3 to Step 5.

All these method would be helpful in finding Exe file in Windows 10.

If you know any other method to locate Exe file on Windows 10, then please let us know in a comment below.

Источник

Понравилась статья? Поделить с друзьями:
0 0 голоса
Рейтинг статьи
Подписаться
Уведомить о
guest

0 комментариев
Старые
Новые Популярные
Межтекстовые Отзывы
Посмотреть все комментарии
  • Сброс пароля windows 10 через командную строку с флешки
  • Как открыть расположение файла в windows 11
  • Usb сетевая карта dexp драйвера windows 7
  • Прокси сервер для обновлений windows
  • Ноутбук dell windows 7 восстановление системы