When File Explorer on Windows 10 or 11 has issues like freezing, it can often be resolved by restarting it. There are several methods to restart File Explorer:
1. From Task Manager: Press Win+Shift+Esc, go to the Processes tab, right-click Windows Explorer, and select Restart.
2. Kill explorer.exe and run a new instance: Open Task Manager, right-click Windows Explorer, choose End task, then click Run new task, type explorer.exe, and hit OK.
3. From the command line: Use PowerShell or Command Prompt as an administrator and execute the commands:
- taskkill /f /im explorer.exe
- start explorer.exe
4. Create a Batch File: Write the following in Notepad:
taskkill /f /IM explorer.exe
start explorer.exe
exit
Save it with a .bat extension for quick access.
These methods help restore access to files and folders when File Explorer is unresponsive.