Windows 10

How to Restart explorer.exe in Windows 10 Using CMD

In this tutorial, we are going to see how to restart explorer.exe in Windows 10 Using CMD. The explorer.exe process is an important part of Windows 10. It manages both the Start menu, the taskbar, and the file explorer. It is located at C:\Windows\explorer.exe.

In some cases, it can be useful to restart the explorer.exe process, for example when the taskbar or the Start menu is no longer responding. When the explorer.exe process has been stopped, you will see a blank desktop with your mouse pointer displayed.
 

 

How to Restart explorer.exe in Windows 10 Using CMD

Step 1: There are two ways to open the command line. Click on the Start menu, type CMD in the search box, then right-click on it and select Run as administrator. Or press WIN + R, type CMD, and press Enter.
 

 

 
Step 2: In the Command Prompt window that opens, enter the following command by copying, pasting and validating with the Enter key:

taskkill / f / im explorer.exe


 
Step 3: Finally, still in the command prompt, copy and paste the following command:

start explorer.exe


 
Then press Enter to start the explorer.exe process.
 
That’s All!
 

How to Restart Explorer.exe in Windows 10How to Restart Explorer.exe in Windows 10 [2 Methods]In this tutorial, we are going to see how to restart explorer.exe in Windows 10. The explorer.exe process is an important part of Windows 10.…Read More

2 thoughts on “How to Restart explorer.exe in Windows 10 Using CMD

  • MuppetGeeker

    If you start the CMD like you wrote with Win+R and only “Enter”-key you start it in regular mode.
    To start it in Administrator mode with Win+R you have to use STRG+SHIFT+ENTER.

    Reply
  • MuppetGeeker

    Oh and your command don’t work like you wrote:
    taskkill / f / im explorer.exe
    is wrong.
    The correct syntax is:
    taskkill /f /im explorer.exe

    And if you want a one-liner you can do:
    taskkill /f /im explorer.exe && start explorer.exe

    && makes sure that the first command is exited successfully.

    You should check your tutorials before you post it… 😉

    Reply

Leave a Reply

Your email address will not be published. Required fields are marked *