Table of Contents
Restart Explorer from Task Manager
Or you can simply right-click on the Windows Taskbar the select Task Manager.

Click the Processes tab in the Task Manager. Find the process named Windows Explorer. Right-click on it then click Restart in the context menu.

That’s all you should have to do. It may take a few seconds and things like your taskbar and Start menu may disappear momentarily, but when it restarts, things should behave better and you can exit Task Manager.
Restart Explorer from the Taskbar or Start Menu in Windows 10

Restart Explorer using a Batch File
If you’d prefer being able to restart Windows Explorer more quickly and avoid using Task Manager altogether, you can put together a simple batch file to do the job.
Open Notepad then copy the following text and paste it into three separate lines in your blank text document.
taskkill /f /IM explorer.exe
start explorer.exe
exit
Next, you’ll need to save the file with the instead of extension.
Click on the File menu and then click Save as. In the Save As window:
- Choose your location to store the batch file.
- On the Save as type drop-down menu, choose All files.
- Name your file whatever you want, followed by the .bat extension and then click Save.

Click on the File menu and then click Save as. In the Save As window:
- Choose your location to store the batch file.
- On the Save as type drop-down menu, choose All files.
- Name your file whatever you want, followed by the .bat extension and then click Save.
Store the batch file anywhere you like. You can then create a shortcut to the batch file that you can place wherever it makes the most sense for you. Once your shortcut is in place, you have one-click access to restart Windows Explorer whenever you need to.
Restart Explorer using command line
Alternatively, you can use command line in cmd or PowerShell to restart Windows Explorer
Execute the following commands to restart Explorer in Windows Command Prompt (cmd):
taskkill /im explorer.exe /f & explorer.exe
If you want to restart Explorer using PowerShell, let’s run below command:
Stop-Process -Name 'explorer' -Force