Share via

How to fix explorer

Евгений Козич 20 Reputation points
2026-02-13T13:09:45.82+00:00

Good afternoon. I'm having a problem with my computer where the desktop won't load. I have to restart Explorer through Task Manager, and then it will load the desktop, but everything is really slow. Has anyone encountered this problem?

Windows for home | Other | Apps
{count} votes

2 answers

Sort by: Most helpful
  1. David-M 106.8K Reputation points Independent Advisor
    2026-02-13T14:31:33.9633333+00:00

    Hi. I'm David, and I'm happy to help you.


    Please see if the same behavior occurs if you start Windows in Safe Mode.

    https://support.microsoft.com/en-us/windows/windows-startup-settings-1af6ec8c-4d4a-4b23-adb7-e76eef0b847f

    At the "Startup settings" step, press 4 or F4 to start Windows in Safe Mode.

    You don't have to run Windows in Safe Mode forever. This is just a test to help isolate the source of the problem.


    I await your reply.

    0 comments No comments

  2. Q&A Assist
    2026-02-13T13:09:59.6033333+00:00
    AI generated content. This question contains an answer created with AI from Q&A Assist. Learn more

    If you're experiencing issues with your desktop not loading and needing to restart Explorer through Task Manager, there are a few steps you can take to troubleshoot and potentially resolve the problem:

    1. Clear the Icon Cache: Sometimes, a corrupted icon cache can cause display issues. You can clear the icon cache by following these steps:
      • Open Task Manager (Ctrl + Shift + Esc).
      • Find Windows Explorer in the Processes tab, right-click it, and select End task.
      • In Task Manager, go to File > Run new task, type cmd.exe, and create a task with administrative privileges.
      • In the command prompt, type the following commands:
             CD /d %userprofile%\AppData\Local
             DEL IconCache.db /a
        
      • Restart Windows Explorer by going back to Task Manager, selecting File > Run new task, typing explorer.exe, and pressing Enter.
    2. Register Shell Experience Host: If the issue persists, you can try re-registering the Shell Experience Host:
      • Open Windows PowerShell as an administrator.
      • Run the following command:
             Get-AppXPackage -AllUsers | Where-Object {$_.InstallLocation -like "*ShellExperienceHost*"} | Foreach {Add-AppxPackage -DisableDevelopmentMode -Register "$($_.InstallLocation)\AppXManifest.xml"}
        
      • Restart your system to apply the changes.
    3. Check User Group Permissions: Ensure that the Authenticated Users and Interactive accounts are part of the local Users group, as missing permissions can lead to issues with loading the desktop. You can add them using the following commands in an elevated command prompt:
         Net localgroup Users Interactive /add
         Net localgroup Users "Authenticated Users" /add
      
      After adding, restart your computer.

    These steps should help in resolving the issue with your desktop not loading properly. If the problem continues, you may want to consider further troubleshooting or seeking assistance from Microsoft Support.


    References:

    0 comments No comments

Your answer

Answers can be marked as 'Accepted' by the question author and 'Recommended' by moderators, which helps users know the answer solved the author's problem.