Как можно заметить после ознакомления с этой статьей, перезапустить «Проводник»
в Windows 10 несложно, и неважно, требуется это делать потому, что он завис, или по каким-либо иным причинам.
With a nifty little trick, you can close File Explorer without the use of any external programs. This may work even if you have a frozen taskbar. Here’s how:
- Ctrl + Shift + right-click on your taskbar
Doing so will bring up the regular context menu, but with an addition at the bottom: “Exit Explorer”
. Click it to kill Explorer.exe. With that done, you can move onto the next section to start it again.
How to Restart Windows Explorer in Windows 10 via Command Prompt
If you prefer the command-line or can’t access Task Manager for whatever reason, you can make use of Command Prompt’s kill and start commands.
- Open Command Prompt
Press Start
then type “Command Prompt”
and click the top result.Alternatively, if you can’t access the Start menu, press Ctrl + R
, type “cmd”
, and press “OK”
.
- Run the taskkill command and start explorer again
taskkill /f /im explorer.exe
start explorer.exe
How to Start Windows Explorer via Task Manager
Most of us use Task Manager to kill processes but forget that it can be used to start them, too. Here’s how you can use it to start explorer.exe when it’s not working.
- Open Task Manager
Press the? Start
button and type “Task Manager”
, then click the top result. Or, if you can’t access the Start menu, press? Ctrl + Shift + Esc
.
- Click File > Run new task
- Restart explorer.exe with Task Manager
In the “Create new task”
dialog, next to the “Open:”
heading, type “explorer.exe”
. Press “OK”
to start the process again.If your taskbar doesn’t show up immediately, try clicking the space where it usually is.?
There are many issues whose solutions involve restarting the Windows Explorer (Explorer.exe) process. The most common way to restart explorer.exe is by terminating it and reopen it via the Task Manager. However, if you cannot access Task Manager, you can restart explorer.exe using command line in CMD (Command Prompt) or Windows PowerShell.
Also see
: Can’t Click Anything on Desktop in Windows 11 (Fix)
This short tutorial will show you how to restart explorer.exe without Task Manager in Windows 11 using Command Prompt, PowerShell or Windows Terminal.
How to Quickly Restart the explorer. exe Process with Task Manager
The easiest way to restart Windows Explorer in Windows 10 is via the trusty Task Manager, which includes a way to stop and start it with a single click.
- Open Task Manager
Press the? Start
button and type “Task Manager”, then click the top result.If you can’t access the Start Menu due to your explorer issues, instead press? Ctrl + Shift + Esc
.
- Restart Windows Explorer
Scroll down the list in Task Manager until you find the “Windows Explorer”
process. Click it, then press “Restart”
in the bottom-right corner.
- OR: Restart with right-click
You can also right-click Windows Explorer and press “Restart”
in the context menu for a little bit of extra speed.
Issue
You want to create a Task scheduler that runs a batch file script to kill the current and restart the process.
What is Batch file
Before we continue, let see what is the batch file? According to Wikipedia
— A batch file is a script file in DOS, OS/2 and Microsoft Windows. It consists of a series of commands to be executed by the command-line interpreter, stored in a plain text file. A batch file may contain any command the interpreter accepts interactively and use constructs that enable conditional branching and looping within the batch file, such as IF, FOR, and GOTO labels. The term “batch” is from batch processing, meaning “non-interactive execution”, though a batch file may not process a batch of multiple data.
Resolution
@echo off taskkill /f /im notepad TASKLIST | FINDSTR notepad.exe || start notepad.exe EXIT
- @echo off —
Shows the message on a clean line disabling the display prompt. Typically, this line goes at the beginning of the file. ( You can use the command without the “@” symbol, but using it hides the executing command to create a cleaner return.) - taskkill
— Kill process on windows system. /f parameter Specifies to forcefully terminate the process(es). And /im parameter Specifies the image name of the process to be terminated. Wildcard ‘*’ can be used to specify all tasks or image names. - tasklist
— Displays a list of currently running processes on either a local or remote machine.


Windows Explorer is a vital part of your Windows operating system. As well as providing you with the trusty File Explorer, it powers much of the desktop interface as we know it. Unfortunately, it also tends to stop working when your computer runs into problems. This is usually noted in Windows 10
with the error “Windows explorer is not working. Please restart explorer.exe”, or something similar.
What is explorer.exe?
If you get this error, it’s important not to panic. While a frozen desktop, taskbar, or Start Menu looks scary, it’s easily resolved in most cases. Explorer.exe is only responsible for running the above tasks. Though it’s a Windows component, Microsoft has built it in such a way that it won’t cause serious instability to your system if it crashes.
Taskbar disappeared in Windows 10? It’s also Explorer.exe
If your Taskbar disappeared on Windows 10, explorer.exe might have crashed and can be easily restarted.
The easiest way to fix if Windows Explorer is not working is a simple PC restart. However, if you have work that you still need to save, it’s possible to recover your desktop through other means. As Task Manager, Command Prompt, and other programs are separate from the Explorer process, we can still launch those and restart explorer.exe.
Restart Taskbar, Desktop and File Explorer all at once
Today we’re going to teach you how to restart Windows Explorer in Windows 10 using Task Manager, and the command prompt. This should resolve most temporary issues with the Start Menu, Taskbar, or desktop that you’re having.
Introduction: Make a Program Restart Command
I was making much modifications on Windows, so I had to restart “explorer.exe” fairly often. I used it that much that I created a restart command.
Step 1: Make the Batch File
Open windows explorer, and navigate to an easy accessible path where you want to temporary save a file. Click the right mouse button, hover over “New”, and click “Text Document”.
Right click the file and click “Edit”.
Step 2: Typing Some Code.
So, you probably have notepad open with in the title bar “yourFileName.bat – Notepad”.
Okay, let’s add some code!
1)
First, we have to check that there is an argument passed, the program name. This can be done using:
@if %1.==. (goto error) ELSE (goto restart)
2)
Next, add the function “restart”:
:restart
The command to kill the program:
@taskkill /f /im %1 >nul
Wait a couple of seconds
:
@timeout /t 3 /nobreak >nul
Start the program again:
@start %1 >nul
Say something, and go to the end of the file:
@echo restart complete @goto exit
3)
Add the function “error”:
:error
Say something, and go to the end of the file:
@echo Oops. something went wrong!
4)
Add the function “exit”:
:exit