Share via

windows update hangs

Bernie Dull 5 Reputation points
2025-06-24T23:45:36.2733333+00:00

the windows update dialog box does not load the little circle just continues to go around

Windows for business | Windows Client for IT Pros | User experience | Other
0 comments No comments

2 answers

Sort by: Most helpful
  1. Joseph Tran 4,080 Reputation points Independent Advisor
    2025-06-26T07:32:22.5+00:00

    If the Windows Update dialog box keeps spinning - the loading circle just keeps going, and never loads, it's usually due to a stuck Windows Update service, corrupt cache, or a problem with your system files. So I will give you some recommend to troubleshoot it step by step:

    - Step 1: Restart Windows Update Services

    • Press Win + R, type services.msc, and press Enter.
    • In the list, find and restart these services:
      • Windows Update
      • Background Intelligent Transfer Service (BITS)
      • Cryptographic Services

    -> Right-click each service → click Restart. If it's stopped, click Start.

    - Step 2: Clear Windows Update Cache

    • Open Command Prompt as Administrator (right-click → Run as administrator).
    • Run these commands one by one:
    net stop wuauserv
    net stop bits
    net stop cryptsvc
    
    • Delete the update cache folder:
    
    rd /s /q %windir%\SoftwareDistribution
    
    • Then restart the services:
    net start wuauserv
    net start bits
    net start cryptsvc
    

    - Step 3: Run Windows Update Troubleshooter

    • Go to Settings → System → Troubleshoot → Other troubleshooters
    • Click Run next to Windows Update.
    • Let it finish and follow any recommended actions.

    - Step 4: Run SFC and DISM

    • Open Command Prompt as Admin, then run the following commands:
    sfc /scannow
    
    • Let it finish. Then run:
    DISM /Online /Cleanup-Image /RestoreHealth
    

    -> This checks and repairs corrupted system files.

    - Step 5: Manually Check for Updates

    If the Settings app still hangs:

    • Open Command Prompt (Admin) and run:
    wuauclt /detectnow
    

    Or open Control Panel → Security and Maintenance → Check for Updates if available.

    - Finally you can use Windows Update Assistant

    If all else fails:

    Was this answer helpful?

    2 people found this answer helpful.
    0 comments No comments

  2. Kapil Arya 37,781 Reputation points Volunteer Moderator
    2025-06-25T16:40:04.0566667+00:00

    Please run Windows Update troubleshooter from Settings app > System > Troubleshoot > Other troubleshooters. See if it helps you.

    Was this answer helpful?

    1 person found this answer helpful.
    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.