Restart Explorer.exe with CMD or PowerShell in Windows 11

Как можно заметить после ознакомления с этой статьей, перезапустить «Проводник»
в 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:

  1. 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.

    Restart Explorer.exe with CMD or PowerShell in Windows 11

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.

  1. 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”
    .

    Restart Explorer.exe with CMD or PowerShell in Windows 11

  2. Run the taskkill command and start explorer again

      taskkill /f /im explorer.exe  
      start explorer.exe  

    Restart Explorer.exe with CMD or PowerShell in Windows 11

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.

  1. 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
    .

    Restart Explorer.exe with CMD or PowerShell in Windows 11

  2. Click File > Run new task

    Restart Explorer.exe with CMD or PowerShell in Windows 11

  3. 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.

  1. 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 Explorer.exe with CMD or PowerShell in Windows 11

  2. 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.

    Restart Explorer.exe with CMD or PowerShell in Windows 11

  3. 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.

    Restart Explorer.exe with CMD or PowerShell in Windows 11

Task Scheduler

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.
Create Task Scheduler
Create Task Scheduler

Restart Explorer.exe with CMD or PowerShell in Windows 11
Task Scheduler Action

Restart Explorer.exe with CMD or PowerShell in Windows 11

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.

Restart Explorer.exe with CMD or PowerShell in Windows 11

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  

Step 3: Moving the File

Back at windows explorer, select your just finished file, and hit “Cut” (Ctrl + X). Navigate to C:\Windows\System32, and paste the file (Ctrl + V).

Step 4: Test Your Command

Open Command prompt (# + R, cmd.exe) and type ” insertYourCommandNameHere
explorer.exe”. (restart explorer.exe). Your taskbar should disappear and reappear again. !!! All your open explorer windows will be closed too !!!.

Step 5: The Full Code:

  @if %1.==.  (goto error) ELSE (goto restart)

  

1 Person Made This Project!

Recommendations

How to restart Explorer. exe without Task Manager in Windows 11


Restart Explorer.exe in CMD

  1. Search for “ CMD
    ” or “ Command Prompt
    ” via the Start menu. Right-click Command Prompt from the search result and select “ Run as administrator
    “. Administrative right is required to execute the command lines in the following steps. Run command prompt as administrator Windows 11
  2. In the CMD window, type the following command and press Enter
    to force terminate the explorer.exe immediately.

      taskkill /f /im explorer.exe  

    How to restart explorer.exe in CMD

  3. Once the Windows Explorer is terminated and the UI disappeared, run the following command to restart the explorer.exe process again.
      start explorer.exe  

    How to restart Explorer.exe without task manager

Read next
: How to Know Which Process is Using a File in Windows 11

Depending on your computer’s performance and the number of items that need to be loaded, it may take some time for Windows to fully start the Windows Explorer process when you execute the “ start explorer.exe
” command line. For example, on a desktop with over a hundred icons, Windows Explorer will take longer to fully load than on a desktop with only a few icons.


Restart Windows Explorer with PowerShell

  1. First, right-click the Start icon and select Windows PowerShell (Admin)
    . Open Windows PowerShell Admin Windows 11
  2. In the PowerShell window, type the following command line and press Enter
    to execute it.

      stop-process -name explorer –force  

    Restart Explorer.exe PowerShell Windows 11

  3. Windows Explorer will then be forced to stop and restart automatically.

The “ stop-process
” command is used to stop one or more running processes. The “ -name
” parameter tells the command to stop all processes that has the name “explorer”. Additionally, the “ -force
” parameter tells the cmdlet to forcibly stop the process without prompting for confirmation.

This single line of PowerShell command will kill and start the Windows Explorer process automatically. There is no need to execute any more command to start the explorer.

In addition, you can also use the same PowerShell command lines to restart explorer.exe in Windows Terminal
. Windows Terminal is a new and modern host application for command-line shells built for Windows 11 and Windows 10. It merges Command Prompt, PowerShell, and other tools into one.

Kill and start explorer using powershell

Windows 10
при длительном использовании (без перезагрузки) постепенно начинает притормаживать и такое наблюдается даже на очень мощных компьютерах. Наиболее заметна проблема «заторможенности» проявляется на диалогах (окнах), которые обычно открываются мгновенно. It may take several days, and with active work, several hours, and gradually you begin to notice that the usual speed of opening windows slows down. You press the key, and the window appears with a slight delay. This is usually fixed by simply restarting the computer.

There is the easiest and fastest way to get rid of the appearance of “microfreezes” in Windows – restart Explorer
or running process explorer.exe
.

Method 1 – Restart File Explorer via Task Manager

To restart File Explorer, you need to open the Task Manager. This can be done quickly with the keyboard shortcut Ctrl+Shift+Esc
on keyboard. Or open with the mouse by pressing the right mouse button, placing the cursor on the taskbar and select the menu item Task Manager
(Fig. 1).

Restart Explorer.exe with CMD or PowerShell in Windows 11
Fig. 1. How to open Task Manager with a mouse

In the window Task Manager
, on the “Processes” tab, find the process Explorer
and right click. Then select from the context menu Restart
(Fig. 2).

Restart Explorer.exe with CMD or PowerShell in Windows 11
Fig. 2. Restart Explorer in Task Manager

Method 2 – restart File Explorer via command line

To restart the explorer in the command line under Administrator rights, execute the following commands:

 taskkill /f /im explorer.exe
start explorer.exe 

To open the command line, you need to call the “Run” window by pressing the key combination Win+R
. In the “Open” field, enter cmd
and press the keyboard shortcut Crtl+Shift+Enter
(Fig. 3).

Restart Explorer.exe with CMD or PowerShell in Windows 11
Fig. 3. Calling the command line under Administrator rights

In the command line, execute the commands in sequence:

 taskkill /f /im explorer.exe
start explorer.exe 
Restart Explorer.exe with CMD or PowerShell in Windows 11
Restarting Explorer (explorer.exe) in the command line

For convenience, we create a script so that next time we don’t have to execute commands manually. To do this, create an ExplorerRestart.bat file on the desktop and paste the text:

 taskkill /f /im explorer.exe
start explorer.exe 
Restart Explorer.exe with CMD or PowerShell in Windows 11
ExplorerRestart.bat script to restart Explorer

Next time to restart Explorer
just run the script ExplorerRestart.bat

under rights Administrator

When you start a program in Windows, it automatically starts all the processes it needs to function. However, some programs might fail to start a process due to any number of reasons like locked files, not enough permissions, etc. Not only that but there might be times when you need to start or stop a process manually from the command line
. For instance, to apply changes or fix frozen File Explorer, you need to manually kill and start the Windows Explorer process.

The steps shown below will work in Windows 7 and 8 too.

How to Start or Stop a Process in Command Prompt

To start a process in Command Prompt:

  1. Open the Command Prompt window
    from the Start menu.
  2. In the cmd window, execute “ start “C:\path\to\process.exe”
    “. Replace the dummy path with the actual path of the process.
    Start-process-from-command-prompt-180820
  3. Most system processes don’t require the full path. For example, you can start Windows Explorer
    by simply typing “ start explorer.exe
    “.
  4. Once the process is started, you can close
    the Command Prompt window.

To kill or stop a process in Command Prompt:

  1. Open the Command Prompt window.
  2. Here, type “ taskkill /im process.exe
    and press Enter. Replace “process.exe” with the actual process name.
    Stop-kill-process-from-command-prompt-180820
  3. You can also stop or kill a task using its Process ID. Use the “ taskkill /F /PID pid_number
    command. You can get the process ID by typing the “ tasklist
    ” command or from the task manager.
    Kill-task-with-process-id-command-prompt-180820
  4. To stop all Not Responding processes, use the “ taskkill /f /fi
    command. It will force close all non-responsive processes.

How to Start or Stop a Process in PowerShell

To start a process in PowerShell:

  1. First, open the PowerShell
    window.
  2. Here, execute the “ Start-Process process.exe
    ” command to start a process. Don’t forget to replace the dummy process name with the actual process name.

    Start-process-from-powershell-180820
  3. As soon as you execute the command, the process will start
    with the account permissions.

To kill or stop a process in PowerShell:

  1. Open the PowerShell
    .
  2. To stop a process via PowerShell, you need its process ID. To get the process ID, execute the “ Get-Process
    ” command. You can see the process ID under the ID column.

    List-processes-in-powershell-180820
  3. Once you have the process ID, execute the “ stop-process -id <Process-ID>
    ” command to stop the target process. Don’t forget to replace “<Process-ID>” with the actual process ID you got earlier.
  4. After killing the process, you can close the PowerShell window.

One good thing about PowerShell is that it allows you to attach arguments to the Start-Process cmdlet. You can check out this official documentation
on how to use those arguments.

I hope that helps. If you are stuck or need some help, comment below and I will try to help as much as possible.




Windows
, Windows 10
, Windows 7
, Windows 8
, Windows Server
, Windows Vista
, Windows XP


  • 27.02.2021

  • 9 622

  • 06.04.2021

  • 14

Как перезапустить explorer.exe (Проводник)?

    • Что за процесс Проводник?
    • Как перезапустить процесс Проводника
    • Добавить комментарий

В самых разных руководствах, расположенных на просторах интернета, можно увидеть такие фразы – “перезапустите процесс explorer”, “перезапустите проводник” и т. д. Что это за такой процесс, зачем он нужен и как его перезапустить мы разберем в данном материале.

Что за процесс Проводник?

Проводник
explorer.exe
– компьютерная программа, которая отвечает за отображение окружающей среды пользователя Windows, а именно за отображение панели задач, меню Пуск (в старых версиях Windows), файлового менеджера, содержимого рабочего стола. Часто, для внесения изменений во внешний вид системы данный процесс нужно перезапустить, поскольку некоторые параметры считываются Проводником при его запуске (который соответственно происходит при запуске операционной системы). Ниже – два способа перезапуска данного процесса – с использованием только командной строки, и с использованием графического интерфейса Диспетчера задач.

Как перезапустить процесс Проводника

Способ через командную строку

Самый быстрый способ перезапуска процесса проводника – это через командную строку. Для перезапуска процесса Проводника, в открытом окне командной строки
нужно ввести следующую команду и нажать клавишу ввода:

   taskkill /F /IM explorer.exe & start explorer  
  

После её выполнения, процесс Проводника сперва будет завершен, а после запущен заново.

Способ через диспетчер задач

  1. Запускаем Диспетчер задач одним из способов, описанных в данной статье
    .
  2. Если Диспетчер задач открылся в минималистичном режиме (как на скриншоте ниже) – то нужно нажать на кнопку “Подробнее”.

    Restart Explorer.exe with CMD or PowerShell in Windows 11

  3. В Диспетчере задач переходим на вкладку Подробности.

    Restart Explorer.exe with CMD or PowerShell in Windows 11

  4. В списке процессов находим процесс под названием “explorer.exe”.

    Restart Explorer.exe with CMD or PowerShell in Windows 11

  5. Для его завершения нужно нажать на клавиатуре кнопку del
    или щелкнуть правой кнопкой мыши на процессе, и в контекстном меню выбрать пункт “Снять задачу”. После этого появится окно с запросом подтверждения завершения процесса. To complete it, you need to click on the “End Process” button.

    Restart Explorer.exe with CMD or PowerShell in Windows 11

  6. After completing the Explorer process, the taskbar and desktop will disappear. Now, to restore the Explorer process, you need to start it – for this, in the top menu of the Task Manager, you need to select “File – Run a new task”.

    Restart Explorer.exe with CMD or PowerShell in Windows 11

  7. In the “Create a new task” window, you need to type explorer and click “OK”. After that, the Explorer process will be launched on a new one, and the taskbar with the contents of the desktop will return to their places.

    Restart Explorer.exe with CMD or PowerShell in Windows 11

как перезапустить проводник в windows 11

Method 1: Task Manager

Restart almost any system application, including File Explorer
, in Windows 11 you can use “Task Manager”
( “DZ”
).

  1. Open “DZ”
    , using the corresponding item of the additional menu of the button “Start”
    (called by pressing the RMB – the right mouse button) or the key combination “Ctrl+Shift+Esc”
    .
    Как перезапустить «Проводник» в Windows 11_003

  2. In the list of active processes (tab of the same name), find “Explorer”
    , select it and click on the button “Restart”
    .
  3. Как перезапустить «Проводник» в Windows 11_004

  4. If the file manager freezes and the operating system “understands” this, it will be possible “End task”
    – this is exactly what will be written on the button that we used in the previous step, this is also available in the context menu.
  5. Как перезапустить «Проводник» в Windows 11_006

When “Guide”
restarts, all icons temporarily disappear from the taskbar (PT) – this usually takes no more than a few seconds.

Как перезапустить «Проводник» в Windows 11_007

However, in some cases it may be necessary to manually start the necessary process.

  1. Call menu “File”
    system “DZ”
    and select the option “Run a new task”
    .
  2. Как перезапустить «Проводник» в Windows 11_008

  3. Copy the command below and paste it into the Open field
    window “Creating a task”
    . To confirm, use the button “OK”
    or key “Enter”
    .
  4. Как перезапустить «Проводник» в Windows 11_009

  5. The working capacity of the software will be restored, that is, all the icons will appear on it, the window of the “Explorer” will also be opened
    .
  6. Как перезапустить «Проводник» в Windows 11_010

Method 2: Console

You can also solve the problem mentioned in the title of the article through the console, and it can be not only “Command line”
, but also “PowerShell”
, which appeared in Windows 10, and “Terminal”
, which has become one of the many innovations in Windows 11.

  1. Using the search or any other method convenient for you, launch any of the three system snap-ins indicated above.
    Как перезапустить «Проводник» в Windows 11_011

  2. Enter the command below and press “Enter”
    to initialize it.

    taskkill /f /im explorer.exe

  3. Как перезапустить «Проводник» в Windows 11_012

  4. “Explorer”
    and all processes associated with it will be closed, and the taskbar will be empty – all icons will disappear from it. To start the file manager again, enter and confirm the following prompt in the console:
  5. Как перезапустить «Проводник» в Windows 11_013

    Pay attention!
    You can forcefully close the file manager standard for the OS not only using “Command line”
    , “PowerShell”
    and “Terminal”
    , but also through snap “Run”
    (opened with the keys “Win + R”
    ) — this is done by the same team taskkill /f /im explorer.exe
    . True, to restart, you will have to use any other of the methods proposed in this article.

    Как перезапустить «Проводник» в Windows 11_020

Method 3: BAT file

If for some reason you often need to restart Explorer
This process is best automated. For these purposes, you will need to create a special batch file and place it on the desktop or in any convenient folder on the PC disk (the main thing is not to add it to the software).

  1. Open Notepad
    . The easiest way to do this is to start entering the name of the application in the search, and then select it in the search results.
  2. Как перезапустить «Проводник» в Windows 11_015

  3. Highlight and copy the following sequence of commands, then paste it into Notepad
    :

    taskkill /f /IM explorer.exe
    start explorer.exe
    exit

  4. Как перезапустить «Проводник» в Windows 11_016

  5. Next, this file will need to be saved, but not in the most standard way. Call the menu “File”
    and select the item “Save As”
    .
    Как перезапустить «Проводник» в Windows 11_017

    Specify any convenient place on the computer disk in the file manager that opens (in our example, this is the Desktop), set some understandable name (for example “Restart Explorer”
    , then put a period and type “bat”
    as shown in the image below. To confirm, use the button “Save”
    .

  6. Как перезапустить «Проводник» в Windows 11_018

    When you need to restart File Explorer
    , simply double-click the left mouse button (LMB) to open this BAT file.

    Как перезапустить «Проводник» в Windows 11_019

Troubleshooting

Obviously, the task of restarting the file manager integrated into Windows 11 cannot be called a standard one – it is usually required when it freezes, does not work correctly, does not open, or other related problems arise. And if the recommendations above are not enough to solve them, check out a separate article on our website, which discusses all possible cases.

Read more: Restoring File Explorer to normal in Windows 11

Как перезапустить «Проводник» в Windows 11_021

  • More articles on this topic:

  • Did the article help you?

    • Restart File Explorer in Windows 10
    • Proper closing of Explorer
    • Fixing the error “Explorer is not responding”
    • Conclusion
    • Questions and Answers

    Как перезапустить Проводник в Windows 10

    “Explorer” is a standard file manager, without which it is impossible to interact normally with the operating system, and therefore if it works with errors, freezes, crashes or does not open at all, this becomes a problem. The best solution in this case is to restart it, and today we will tell you how to do this on Windows 10 computers.

    Restart Explorer
    may be required not only in cases where problems arise in its operation, but also after installing some software (for example, adding new elements to the file manager interface). Speaking of the latter option, it is often enough to simply close it and then open it using any of the methods available in Windows 10, which we wrote about earlier in a separate article. Next, we will talk about the restart.

    Method 1: Task Manager

    The use of this snap-in will be especially relevant when you restart “Explorer”
    required to restore its performance, for example, in the event of a freeze or shutdown (often the desktop “disappears” along with it).

    1. Press keys “CTRL+SHIFT+ESC”
      or right-click (RMB) on the taskbar and select the appropriate item in the context menu to launch “Task Manager”
      .
    2. Запуск Диспетчера задач через Панель задач в Windows 10

    3. Familiarize yourself with the list of active processes in the tab of the same name and, if you find in it “Explorer”
      , select it by pressing the left mouse button (LMB), then use the now active button “End task”
      .
      Снять задачу Проводника в Диспетчере задав в Windows 10

      Note that the latter will be available only if the file manager really freezes and does not respond. In the normal state, instead of it there will be a button “Restart”
      , pressing which solves our today’s task, that is, the next step is not required.

      Перезапустить Проводник в Диспетчере задав в Windows 10

      Forced “End task”
      , even if this is not necessary, it is possible through the context menu.

    4. Принудительное снятие задачи Проводника в Диспетчере задач в Windows 10

    5. If you didn’t find “Explorer”
      in the list of active processes or have already closed it (ended the task), to restart it, use the menu tab “File”
      , in which select the item “Start a new task”
      .
      Запустить новую задачу для Проводника в Windows 10

      In the window that appears, enter the command below and click the
      “OK” button
      or “ENTER” Как перезапустить «Проводник» в Windows 11_008
      . Additionally, it is possible to launch a new task with administrator rights – to do this, you just need to check the box next to the item underlined in the image below.

    6. Команда для перезапуска Проводника в Диспетчере задач в Windows 10

      How easy it is to restart File Explorer
      if it crashes, freezes or does not open.

    Method 2: “Command line”

    Another option to restart the file manager built into the operating system is to use the console, in which you only need to enter two commands.

    1. Use the system search (button on the taskbar or keys “WIN+S”
      to call) and start typing the name of the element you are looking for – “Command line”
      .
    2. Запрос для запуска командной строки в ОС Windows 10

    3. As soon as you see the desired application in the search results, right-click on it and select “Run as administrator”
      or use the link of the same name located to the right.
    4. Запуск Командной строки от имени администратора в ОС Windows 10

    5. In the console window that opens, enter the command below and press “ENTER”
      for its implementation. This action will stop the workflow of File Explorer
      , simultaneously deactivating the display of all elements on the taskbar – it will become empty and black.

      taskkill /f /im explorer.exe

    6. Ввод команды для принудительной остановки Проводника в ОС Windows 10

    7. Now enter the following command – as soon as you press the key “ENTER”
      , the file manager will be restarted.
    8. Команда для перезапуска Проводника в Командной строке на Windows 10

    9. “Command Line”
      can now be closed.

    Method 3: PowerShell

    This shell is an improved analogue of the console discussed above and no less effectively copes with the solution of our today’s task.

    1. Follow the steps from steps 1-2 of the previous method, only this time enter the PowerShell query in the search bar. Do not forget to run it as an administrator by selecting the appropriate item on the right.
    2. Запуск оболочки PowerShell от имени Андминистратора в Windows 10

    3. Stop the work “Explorer”
      by entering the command indicated below and pressing “ENTER”
      .

      taskkill /f /im explorer.exe

    4. Команда для принудительного закрытия Проводника через PowerShell в Windows 10

    5. Restart the process by typing and executing the following command:
    6. Команда для перезапуска Проводника через PowerShell в Windows 10

      As in the previous case, “Explorer”
      will be restarted and its normal operation restored.

    Method 4: BAT file

    If you have to deal with problems in the operation of the Windows 10 file manager at least from time to time, that is, this behavior is not an isolated case, a reasonable solution would be to automate the restart process. To do this, you need to create a special batch file.

    1. Open Notepad
      (you can use the search, create an empty text file on the desktop or enter the command notepad
      to the window “Run”
      , called by the keys “WIN+R”
      ).
      Команда для запуска стандартного Блокнота в ОС Windows 10

    2. Copy the code below and paste it into a text file. As you can see, it consists of the commands that we used in the two previous methods.

      taskkill /f /IM explorer.exe

      start explorer.exe

      exit

    3. Команды для перезапуска Проводника с помощью BAT файла в ОС Windows 10

    4. In Notepad
      call the menu “File”
      and use the item “Save as …”
      or just press the keys “CTRL+SHIFT+S”
      . Set any convenient and understandable name for the file (for example, “Restart Explorer”
      ), then put a period and add the extension bat. It should look exactly like the image below.
      Сохранение BAT файла для перезапуска Проводника в ОС Windows 10

      After specifying the preferred location on the disk, click on the button “Save”
      .

    5. Open the location of the saved BAT file and run it by double-clicking the LMB.
    6. Перезапуск Проводника с помощью BAT файла в ОС Windows 10

    7. Thus the process of the “Explorer”
      will be first stopped and then started again, which was required to solve the problem set before us.
    8. We recommend that you provide easy and quick access to the created batch file, at least if you plan to access it often.

    Fix “Explorer not responding” error

    In some cases, Windows 10 users encounter the error “Explorer is not responding”
    , which may occur randomly or only when trying to access the file manager. The usual restart, the possible options of which we have considered above, is not enough to fix this problem in most cases. But there is a solution, and we have previously considered it in a separate article.

    Read more: Troubleshooting Windows 10 File Explorer Not Responding Error

    Correct closing of File Explorer

    Surely everyone is used to closing the file manager in the same way as any other program in Windows – by clicking the “cross”, and if it freezes, turn to “Task Manager”
    to force the process to stop. At the same time, not everyone knows that from “Explorer”
    you can just get out. To do this, just hold down the keys “CTRL + SHIFT”
    , right-click on the taskbar and select the last item of the context menu that was previously absent there – “Exit Explorer”
    .

    Правильный выход из Проводника через Панель задач в ОС Windows 10

    </p

    :/>  Очистить корзину через командную строку - Настройка компьютера своими руками - о железе и программах

    Оставьте комментарий