Why the Edge Update Task Recreates Itself After You Delete It on Windows 11
🔍 WiseChecker

Why the Edge Update Task Recreates Itself After You Delete It on Windows 11

You delete the Microsoft Edge update scheduled task from Task Scheduler, but it reappears after a reboot or within a few hours. This happens because Edge’s update mechanism is designed to self-heal and restore its update infrastructure automatically. The task is recreated by the Edge Update service or the browser’s installer logic when it detects that the task is missing. This article explains the root cause of this behavior and the methods you can use to permanently stop the task from reappearing.

Key Takeaways: How to Stop the Edge Update Task from Recreating Itself

  • Task Scheduler > MicrosoftEdgeUpdateTaskMachineCore and MicrosoftEdgeUpdateTaskMachineUA: These two tasks are the ones that reappear after deletion.
  • Services.msc > Microsoft Edge Update Service (edgeupdate): Disabling this service prevents the task from being recreated.
  • Group Policy or Registry edit: Disabling Edge automatic updates at the system level stops the task regeneration permanently.

ADVERTISEMENT

Why the Edge Update Task Regenerates Automatically

Microsoft Edge uses a built-in update mechanism called the Edge Update service. This service is based on the same Omaha framework that Google Chrome uses. When you delete the scheduled tasks from Task Scheduler, the Edge Update service detects the missing tasks during its next check cycle. The service then recreates the tasks to ensure that Edge can download and install updates on schedule.

The tasks are named MicrosoftEdgeUpdateTaskMachineCore and MicrosoftEdgeUpdateTaskMachineUA. The first task runs the core update logic, and the second task performs the actual update installation. Both are stored in Task Scheduler under Task Scheduler Library > Microsoft > EdgeUpdate.

The regeneration behavior is intentional. It ensures that Edge remains up-to-date for security and feature updates. Simply deleting the tasks is a temporary fix because the Edge Update service is still active. As long as the service runs, it will restore the tasks. To stop the recreation, you must either disable the Edge Update service or block the update mechanism at a higher level.

How the Service Detects Missing Tasks

The Edge Update service runs as a Windows service named Microsoft Edge Update Service (edgeupdate). This service is set to start automatically. Every time the service starts, or during its periodic checks, it queries Task Scheduler for the existence of its update tasks. If the tasks are absent, the service writes new task definitions to the Task Scheduler database. This happens regardless of whether you deleted the tasks manually or through a script.

The service also checks the registry for its own configuration. If the service is running but the tasks are missing, the service recreates them within minutes. If the service is disabled, the tasks may still be recreated by the Edge installer when the browser launches. This dual restoration path makes simple deletion ineffective.

Steps to Permanently Stop the Edge Update Task from Recreating

To stop the tasks from reappearing, you need to disable the Edge Update service and optionally block the browser from restoring it. The following methods work on Windows 11 Pro, Enterprise, and Home editions. Some methods require administrative rights.

Method 1: Disable the Edge Update Service

Disabling the service prevents the automatic recreation of the update tasks. This method works on all Windows 11 editions.

  1. Open Services
    Press Win + R, type services.msc, and press Enter.
  2. Locate the Edge Update service
    Scroll down to Microsoft Edge Update Service (edgeupdate). Also locate Microsoft Edge Update Service (edgeupdatem) if it exists.
  3. Stop and disable the service
    Right-click each service and select Stop. Then right-click again, select Properties, set Startup type to Disabled, and click OK.
  4. Reboot the computer
    Restart your PC to confirm the tasks do not reappear.

After this change, the Edge Update service will not run at startup. The update tasks will not be recreated because the service that creates them is not active. Edge will still work but will not receive automatic updates. You will need to manually update Edge by downloading the installer from Microsoft’s website.

Method 2: Block Edge Automatic Updates via Group Policy

On Windows 11 Pro, Enterprise, or Education, you can use Group Policy to disable Edge updates entirely. This prevents the service and the tasks from being restored.

  1. Open Local Group Policy Editor
    Press Win + R, type gpedit.msc, and press Enter.
  2. Navigate to Edge update policies
    Go to Computer Configuration > Administrative Templates > Microsoft Edge Update > Applications.
  3. Enable the policy to disable updates
    Double-click Update policy override default. Select Enabled. In the Options pane, set Policy for automatic updates to Updates disabled. Click OK.
  4. Apply the policy
    Close the Group Policy Editor. Open a command prompt as administrator and run gpupdate /force.

This policy tells Edge not to check for or install updates. The Edge Update service will not attempt to recreate the tasks because the update mechanism is turned off at the policy level.

Method 3: Edit the Registry to Disable Edge Updates

If you are on Windows 11 Home, Group Policy is not available. You can achieve the same result by editing the registry.

  1. Open Registry Editor
    Press Win + R, type regedit, and press Enter.
  2. Navigate to the Edge update key
    Go to HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Microsoft\EdgeUpdate. If the EdgeUpdate key does not exist, right-click the Microsoft key, select New > Key, and name it EdgeUpdate.
  3. Create the policy value
    Right-click the EdgeUpdate key, select New > DWORD (32-bit) Value. Name it CreateDesktopShortcutDefault and set its value to 0.
  4. Disable automatic updates
    Create another DWORD named UpdateDefault and set its value to 0. This disables automatic updates.
  5. Restart the computer
    Reboot for the registry changes to take effect.

This method stops the Edge Update service from running and prevents the tasks from being recreated. Test the result by checking Task Scheduler after a reboot.

ADVERTISEMENT

Common Issues When Stopping the Edge Update Task

Edge Still Recreates the Task After Disabling the Service

If you disabled the service but the task still reappears, the Edge browser itself may be restoring the service. When Edge launches, it checks the service status and may re-enable a disabled service. To prevent this, you can also disable the Microsoft Edge Elevation Service in Services.msc. Set its startup type to Disabled as well. This reduces the chance of Edge restoring its update infrastructure.

Task Reappears After an Edge Update

If you manually update Edge by installing a new version, the installer may re-enable the update service and recreate the tasks. After a manual update, check Services.msc and Task Scheduler again. You may need to reapply the service disable or registry changes.

Cannot Delete the Task Because It Is Running

If you try to delete the task while it is running, Task Scheduler will show an error. Stop the task first by right-clicking it in Task Scheduler and selecting End. Then delete it. After that, proceed with disabling the service or applying the policy to prevent recreation.

Disabling the Service vs Blocking Updates: Key Differences

Item Disable Edge Update Service Block Updates via Policy or Registry
Effect on task recreation Prevents the service from recreating tasks immediately Prevents the update mechanism from running at all
Edge functionality Edge works normally but does not update Edge works normally but does not update
Persistence after Edge reinstall Service may be re-enabled by a new Edge installer Policy or registry setting persists until manually removed
Ease of reversal Simple: re-enable the service in Services.msc Requires removing the policy or registry value
Windows edition support All editions Group Policy: Pro and above; Registry: all editions

Both approaches stop the Edge Update task from recreating itself. The policy or registry method is more persistent because it survives Edge reinstallation. The service disable method is quicker but may need to be reapplied after a major Edge update.

After applying either method, verify the result by opening Task Scheduler, navigating to Task Scheduler Library > Microsoft > EdgeUpdate, and confirming that no tasks are present. If the tasks are gone and do not return after a reboot, the fix is successful.

For users who want Edge to stay updated, none of these methods are recommended. The automatic update tasks exist for security and stability. Only disable them if you have a specific reason to control update timing or bandwidth usage.

ADVERTISEMENT