Quick fix: Edge has multiple update mechanisms. Disabling one (service) doesn’t stop the others. Disable all: Services → stop and disable edgeupdate, edgeupdatem, EdgeElevation. Task Scheduler → disable all MicrosoftEdgeUpdate* tasks. Add Windows Defender Firewall outbound rule blocking MicrosoftEdgeUpdate.exe. After all three layers, updates won’t apply.
You disabled Edge auto-update in Settings or via service, but Edge updates anyway. Cause: Edge has redundant update mechanisms — the disabled-Edge-service is bypassed by scheduled tasks or downloaded-then-applied-on-restart logic. Block at all layers.
Affects: Microsoft Edge on Windows 11.
Fix time: ~10 minutes.
What causes this
Microsoft Edge has three update paths:
- Edge Update services: edgeupdate (active), edgeupdatem (medium-priority).
- Scheduled tasks: MicrosoftEdgeUpdateTaskMachine*, MicrosoftEdgeUpdateTaskUser*.
- Edge process itself: when Edge runs, it checks for updates in background.
Disabling one path doesn’t block others. Comprehensive block requires all three.
Method 1: Disable services, tasks, and firewall together
The standard route.
- Disable services:
- Open
services.msc. - Find Microsoft Edge Update Service (edgeupdate). Right-click → Properties → Startup type: Disabled. Stop.
- Find Microsoft Edge Update Service (edgeupdatem). Same.
- Find Microsoft Edge Elevation Service. Set to Disabled.
- Open
- Disable scheduled tasks:
- Open
taskschd.msc. - Task Scheduler Library → find MicrosoftEdgeUpdateTaskMachineCore, MicrosoftEdgeUpdateTaskMachineUA.
- Right-click each → Disable.
- Look for any MicrosoftEdgeUpdateTaskUser* tasks. Disable too.
- Open
- Add firewall block:
- Open
wf.msc(Windows Defender Firewall with Advanced Security). - Outbound Rules → New Rule.
- Pick Program. Path:
C:\Program Files (x86)\Microsoft\EdgeUpdate\MicrosoftEdgeUpdate.exe. - Action: Block the connection.
- Profile: all (Domain, Private, Public).
- Name: Block Edge Update.
- Open
- Reboot. Edge no longer auto-updates.
This is the comprehensive block.
Method 2: Group Policy for Edge specifically
For policy-based approach.
- Download Edge for Business ADMX templates from microsoft.com/edge/business/download.
- Copy ADMX to
C:\Windows\PolicyDefinitions\and language files to language subfolder. - Open
gpedit.msc. - Navigate: Computer Configuration → Administrative Templates → Microsoft Edge Update.
- Find Auto Update → Update policy override default. Set to Disabled (means updates blocked).
- Or per-channel: Update policy override for Microsoft Edge (Stable). Set to Updates disabled.
- Apply.
gpupdate /force. - For corporate environments: deploy via Intune Configuration Profile, group policy templates.
- For Home edition: registry equivalent:
HKLM\SOFTWARE\Policies\Microsoft\EdgeUpdate DWORD: UpdateDefault = 0 ; 0=disabled
This is the policy route.
Method 3: Permission-based block
For belt-and-suspenders.
- Even with all the above, Edge could potentially update via fallback. Make sure Edge Update folder can’t be written.
- Open File Explorer. Navigate to
C:\Program Files (x86)\Microsoft\EdgeUpdate. - Right-click folder → Properties → Security tab.
- Click Edit. Pick SYSTEM in users list.
- Untick Write and Modify permissions for SYSTEM.
- Apply. Confirm warnings.
- Edge update can’t write to its own folder, so updates fail.
- Caveat: this is aggressive. Edge updates that ship via Windows Update may bypass. Test thoroughly.
- To revert: re-enable permissions or take ownership and grant SYSTEM Full Control.
- For chronic future-proof block: combine Methods 1, 2, and 3.
This is the deepest block.
How to verify the fix worked
- Open Edge →
edge://settings/help. After all blocks: page should show error or stuck checking. - Services tab: Edge Update services Stopped, Disabled.
- Task Scheduler: Edge Update tasks Disabled.
- Edge version stays at current build over time (test for 1-2 weeks).
- Windows Update doesn’t push Edge updates.
If none of these work
If Edge still updates: Re-enable check: Microsoft pushes update, services re-enabled. Re-disable. For Windows Update bundling Edge: rare; usually separate. Watch Windows Update history for Edge entries. For corporate-managed PCs: WSUS pushes Edge. IT manages. For Edge installed via winget: winget pin add Microsoft.Edge blocks winget from upgrading. For specific build version: install via offline installer from microsoft.com/edge/business/download. For dropping Edge entirely: use Chrome / Firefox / Brave. Set as default. Hide Edge: Get-AppxPackage Microsoft.MicrosoftEdge | Remove-AppxPackage (in 24H2+, may not remove all). For chronic Edge popping back: Microsoft re-installs via Windows Update. Accept reality and update on your schedule.
Bottom line: Disable Edge Update services, scheduled tasks, AND add firewall block. Plus Group Policy / Edge for Business ADMX for managed environments. Layered block prevents all update paths.