Windows 10 Extended Security Error

WalterGoodman

Member
Joined
Oct 17, 2025
Messages
6
Basically it just loads I've done everything I can following tutorials positing it on windows help forum deleting all vpn, firewall, and that good stuff. It just loads and I cant do anything about it. If anyone has any idea whats going on please let me know. This issue has been bugging me for the past 3 weeks.
 
Thanks — I hear you. Since this has been stuck for three weeks and you’ve already tried VPN/firewall removals and the usual tutorials, let’s move to a focused set of diagnostics and a few stronger fixes. I’ll keep it step‑by‑step so you can try one thing at a time and paste results back here.
First — the 2 quick things I need right away
  • Run winver (press Windows+R, type winver, Enter) and paste the exact text it shows (Windows edition and build).
  • Is this a personal/home PC or a corporate/managed device (domain, Intune, or company image)? Also tell me whether you have an ESU product key (yes / no / don’t know).
Then try these steps in order:
A — Very quick checks (if you haven’t already)
  • Confirm system date/time is correct and synced (clock in taskbar).
  • Sign out of your account and sign back in (or reboot).
  • Try enrolling using a different local admin user (create one temporarily: Settings > Accounts > Family & other users > Add someone else to this PC, make admin). Does the dialog still hang?
  • Open Settings > Accounts > Access work or school — do you see any errors there?
B — Reset the Settings app (safe, often fixes hung Settings dialogs)
  • If you can open Settings normally: Settings > Apps > Apps & features > find “Settings” (or “Windows Settings”), click it > Advanced options > Reset. Then try the enrollment again.
  • If Settings won’t let you reset, run an elevated PowerShell to re-register the Settings package:
  • Open PowerShell as Administrator.
  • Run:
    powershell -Command "Get-AppxPackage immersivecontrolpanel | % { Add-AppxPackage -DisableDevelopmentMode -Register \"$($_.InstallLocation)\AppXManifest.xml\" }"
  • Reboot and try again.
    Note: that command is safe but if you’re uncomfortable I can walk you through making a restore point first.
C — Clean boot (rules out conflicting apps/services)
  • Press Windows+R → msconfig → on the Services tab check “Hide all Microsoft services” → click Disable all.
  • On Startup open Task Manager and disable non‑Microsoft startup items.
  • Reboot and try the enrollment again. If it works, re-enable services/startup items in groups to find the culprit.
D — Network / time / service resets (common causes)
Open an elevated Command Prompt and run these (paste any errors you see):
  • net stop wuauserv
  • net stop bits
  • net stop cryptsvc
  • netsh winsock reset
  • ipconfig /flushdns
  • w32tm /resync
  • net start cryptsvc
  • net start bits
  • net start wuauserv
    Reboot and try the enrollment.
E — Collect the logs we need to debug (if it still hangs)
  • In an elevated PowerShell run:
    Get-WindowsUpdateLog -LogPath C:\Temp\WindowsUpdate.log
    Attach C:\Temp\WindowsUpdate.log here (or paste the final ~100 lines).
  • Open Event Viewer and navigate to:
    Applications and Services Logs → Microsoft → Windows → WindowsUpdateClient → Operational
    Export or copy any errors that appear around the time you tried to enroll. Also check System and Application for errors at that time. Paste the Event IDs/messages.
  • Run these and paste outputs (in an elevated CMD):
    sc query wuauserv
    sc query bits
    sc query wuasvc
    (these show whether the services are running and their state)
F — If this is an ESU licensing/activation issue
  • ESU enrollment sometimes stalls if prerequisites (specific KB updates/SSU or a product key) are missing or if the device is not eligible. If you do have an ESU MAK key and this is an unmanaged device, tell me and I’ll give the exact slmgr / other commands to apply it. If the device is managed by IT, your org may need to complete enrollment (Intune or portal).
G — If you want deeper tracing (only if comfortable)
  • We can run Process Monitor (Procmon) while you reproduce the hang to capture which process or registry call is waiting. This gives a smoking‑gun but produces a large capture — I’ll guide you if you want to do this.
What to post back here
  • The winver text (exact edition + build).
  • Whether PC is managed and whether you have an ESU key.
  • Results of the Settings reset attempt and whether a new admin account reproduces the problem.
  • The WindowsUpdate.log (or last 100 lines) and any Event Viewer error IDs/messages.
  • Outputs of sc query commands above.
If you prefer I can give a compressed checklist you can run start‑to‑finish and paste one combined log file (WindowsUpdate.log + Event Viewer exports). Tell me which you prefer and I’ll post that exact checklist/commands.
 
A - 4 View attachment 111339
I got that error I followed every instruction

B - I dont want to reset my settings

C - did not work I had to restart by laptop 3 times
D- I was in cmd adminsitrator mode there was a error attached photoView attachment 111344
 
Thanks — that helps. I know this has been painful; let’s focus and get the exact facts so we can zero in.
A few quick clarifications I need first
  1. Please run winver (Windows+R → winver → Enter) and paste the full text it shows (Windows edition and build).
  2. Is this a personal/home PC or managed by an organization (domain/Intune)?
  3. You mentioned an error from the elevated CMD — please paste the exact text of that error (or re-run the commands and copy the output). Screenshots are OK, but plain text is much faster for diagnosis.
While you paste those, try these targeted steps (do them one at a time and report results):
Step 1 — Restart the Settings process (quick, no resets)
  1. Open Task Manager (Ctrl+Shift+Esc).
  2. Find SystemSettings.exe (or “Settings”), select it and click End task.
  3. Press Windows key, type settings, open Settings and try the ESU enrollment again.
    Tell me whether it still hangs.
Step 2 — Run these service/status checks and paste results
Open an elevated Command Prompt and run (copy/paste the entire output here):
  • sc query wuauserv
  • sc query bits
  • sc query cryptsvc
  • net start wuauserv
    (If any command shows an ERROR or other message, paste it exactly.
Step 3 — Repair system files (safe)
In an elevated Command Prompt or PowerShell run these two commands (they may take a while). Paste any errors if they appear:
  • DISM /Online /Cleanup-Image /RestoreHealth
  • sfc /scannow
    Reboot and try Settings again.
Step 4 — WebView2 (very likely cause of “Just a moment…”)
The ESU enrollment UI in Settings uses an embedded web control (WebView2). If WebView2 is broken the dialog can hang on the spinner. Please check if "Microsoft Edge WebView2 Runtime" is installed (Settings → Apps → Apps & features, search WebView2). If it’s present, try to Repair or Uninstall→Reinstall it. If you’re comfortable, reinstall the Evergreen WebView2 runtime from Microsoft and then reboot (I can show the exact installer command if you want). If you prefer a command:
  • If you have winget available, try (in admin PowerShell):
    winget install --id=Microsoft.WebView2Runtime -e
    Then reboot and retry the enrollment.
Step 5 — Collect Windows Update log + Event Viewer errors (if it still hangs)
  1. Open elevated PowerShell and run:
    Get-WindowsUpdateLog -LogPath C:\Temp\WindowsUpdate.log
    Then attach or paste the last ~100 lines from C:\Temp\WindowsUpdate.log.
  2. In Event Viewer go to:
    Applications and Services Logs → Microsoft → Windows → WindowsUpdateClient → Operational
    and copy any Error/Warning entries that match the time you attempted the enrollment. Also check System and Application logs around that time. Paste the Event IDs/messages here.
If you want I'll walk you through running Process Monitor (Procmon) while you reproduce the hang — that will show the exact call that waits. It’s a bit advanced but is the most reliable next step if the above doesn’t reveal the cause.
Bottom line / next things for you to post here
  • winver text (exact edition + build).
  • Whether PC is managed.
  • Exact text output of the CMD error you mentioned (or re-run and paste).
  • Results of sc query commands and whether sfc / DISM found/fixed anything.
  • Whether WebView2 is installed and whether reinstall/repair changed behavior.
  • WindowsUpdate.log last ~100 lines and any Event Viewer error IDs/messages (if the problem persists).
Do that and I’ll give the exact next diagnostic (Procmon capture + how to filter it) or the specific WebView2 installer link/command. If you want, I can also post a one‑click checklist (copy/paste commands) you can run start→finish and then paste one combined log — say “yes” and I’ll prepare it.
 
Your “Just a moment…” issue is usually due to a broken WebView2 runtime. Check if it’s installed, repair or reinstall it, or run in admin PowerShell:

winget install --id=Microsoft.WebView2Runtime -e


Then reboot and try enrollment. Also run DISM /Online /Cleanup-Image /RestoreHealth and sfc /scannow to fix system files.
 
WebView2 can absolutely be the cause of a “Just a moment…” loop in Windows 10 flows that embed modern web UI (including some “enrollment”/sign-in dialogs). Your suggestion is reasonable — I’d just tighten it into a more reliable checklist and add two common missing pieces: repairing the existing runtime and clearing the WebView2 user cache.

1) Confirm / Repair WebView2 Runtime (preferred first)​

  1. Settings → Apps → Apps & features
  2. Find Microsoft Edge WebView2 Runtime
  3. Click it → Modify (or Advanced options) → Repair
If it’s not listed, install it.

2) Install WebView2 Runtime (Winget)​

In Windows Terminal / PowerShell (Admin):
winget install --id Microsoft.EdgeWebView2Runtime -e
Notes:
  • If winget isn’t recognized, the machine likely lacks App Installer (or it’s blocked). In that case you’ll need to install WebView2 via Microsoft’s standalone installer.

3) Clear WebView2 cache (often fixes “Just a moment…”)​

Close Edge + any apps that might be using WebView2 (Teams, Widgets, etc., then:
  1. Press Win + R
  2. Paste:
%LOCALAPPDATA%\Microsoft\
  1. Rename (or delete) this folder if present:
EdgeWebView
Reboot and try the enrollment again.

4) Repair system image + system files (good supporting step)​

Run these in Command Prompt (Admin):
Code:
DISM /Online /Cleanup-Image /RestoreHealth
sfc /scannow
Reboot afterward.

5) If it still hangs: we need the exact place it happens​

“Just a moment…” can also be caused by account-token (WAM) or “work/school” enrollment issues, proxy/TLS interception, or damaged Windows Update components.
Reply with:
  • Where exactly you see “Just a moment…” (Settings path / screenshot description)
  • Your Windows 10 version (winver)
  • Whether this is Microsoft Account sign-in, Access work or school, Intune enrollment, or Windows Update/ESU enrollment
  • Any error code in Windows Security / Settings / Event Viewer
With that, I can give a targeted next step (WAM/AAD cache reset vs Windows Update reset vs networking/proxy fixes).