Disable Edge automatic update scheduled tasks
- Single actionThis page belongs to a script, containing basic changes to achieve a task.
- Windows onlyThis script improves your privacy on Windows
- Impact: MediumSystem Functionality Loss Risk: Moderate
This action improves privacy with minimal impact when you run the recommended script.
This action improves privacy with some impact when you run the recommended script. - Batch (batchfile)These changes use Windows system commands to update your settings.
- Fully reversible
You can fully restore this action (revert back to the original behavior) using this website.
The restore/revert methods provided here can help you fix issues.
Overview
This script stops Microsoft Edge from updating automatically by disabling specific scheduled tasks.
Specifically, it targets two tasks:
These tasks:
Disabling these tasks:
- Enhances privacy by preventing automatic data transmission for updates.
- Improves system performance by reducing background tasks.
- Reduces your attack surface, as these tasks can be targeted by malware 4.
However, remember that disabling updates means security vulnerabilities in Edge won't be fixed automatically; manual updates will be necessary.
Disabling updates may lead to decreased security if you rely on Edge and its components (WebView2).
Overview of default task statuses
\MicrosoftEdgeUpdateTaskMachineCore{RandomString}
(tested since Edge version 126):
OS Version | Default status |
---|---|
Windows 10 22H2 | 🟢 Ready |
Windows 11 22H2 | 🟢 Ready |
\MicrosoftEdgeUpdateTaskMachineUA{RandomString}
(tested since Edge version 126):
OS Version | Default status |
---|---|
Windows 10 22H2 | 🟢 Ready |
Windows 11 22H2 | 🟢 Ready |
This script is only recommended if you understand its implications.
Some non-critical or features may no longer function correctly after running this script.
This script can be fully reversed to restore changes if something goes wrong.
Sources
- Edge 97 starting automatically at logon - Microsoft Community Hub. techcommunity.microsoft.com. (2022).
Original: https://techcommunity.microsoft.com/t5/discussions/edge-97-starting-automatically-at-logon/m-p/3057166
Archived: https://web.archive.org/web/20220112180622/https://techcommunity.microsoft.com/t5/discussions/edge-97-starting-automatically-at-logon/m-p/3057166 - MicrosoftEdgeUpdate.exe Windows process - What is it?. www.file.net. (2024).
Original: https://www.file.net/process/microsoftedgeupdate.exe.html
Archived: https://web.archive.org/web/20240621141001/https://www.file.net/process/microsoftedgeupdate.exe.html - Understanding the Edge and Edge WebView2 Update Logs. joji.me. (2024).
Original: https://joji.me/en-us/blog/understanding-the-edge-and-edge-webview2-update-logs
Archived: https://web.archive.org/web/20240621150615/https://joji.me/en-us/blog/understanding-the-edge-and-edge-webview2-update-logs/ - Trojan.Siggen17.58258 — Dr.Web Malware description library. vms.drweb.com. (2024).
Original: https://vms.drweb.com/virus
Archived: https://archive.ph/2024.06.21-151340/https://vms.drweb.com/virus/?i=25158791
Apply Now
Choose one of three ways to apply:
Download script
Download and run the script directly- No app needed
- Offline usage
- Easy-to-apply
- Free
- Open-source
Help
How to apply or restore "Disable Edge automatic update scheduled tasks" using script
- ≈ 2 min to complete
- Tools: Web Browser
- Difficulty: Simple
- ≈ 5 instructions
- 1
Download
Download the script file by clicking on thebutton above.
Use button above to restore changes. - 2
Keep the file
If warned by your browser, keep the file. - 3
Open
Open the downloaded file. - 4
Exit
Once it's done, press any key to exit the window. - 5
Restart
Restart your computer for all changes to take effect.
Apply with privacy.sexy
Guided, automated application with safety checks- Recommended for most users
- Includes safety checks
- Free
- Open-source
- Popular
- Offline/Online usage
Help
How to apply or restore "Disable Edge automatic update scheduled tasks" using privacy.sexy
- ≈ 3 min to complete
- Tools: privacy.sexy
- Difficulty: Simple
- ≈ 4 instructions
- 2
Choose script
- Search for the script name: Disable Edge automatic update scheduled tasks
- Check the script by clicking on the checkbox.
- 3
Run
Click on ▶️ Run button at the bottom of the page.This button only appears on desktop version (recommended). On browser, use 💾 Save button.
- Apply
- Revert
:: Disable scheduled task(s): `\MicrosoftEdgeUpdateTaskMachineCore{*}`
PowerShell -ExecutionPolicy Unrestricted -Command "$taskPathPattern='\'; $taskNamePattern='MicrosoftEdgeUpdateTaskMachineCore{*}'; Write-Output "^""Disabling tasks matching pattern `"^""$taskNamePattern`"^""."^""; $tasks = @(Get-ScheduledTask -TaskPath $taskPathPattern -TaskName $taskNamePattern -ErrorAction Ignore); if (-Not $tasks) { Write-Output "^""Skipping, no tasks matching pattern `"^""$taskNamePattern`"^"" found, no action needed."^""; exit 0; }; $operationFailed = $false; foreach ($task in $tasks) { $taskName = $task.TaskName; if ($task.State -eq [Microsoft.PowerShell.Cmdletization.GeneratedTypes.ScheduledTask.StateEnum]::Disabled) { Write-Output "^""Skipping, task `"^""$taskName`"^"" is already disabled, no action needed."^""; continue; }; try { $task | Disable-ScheduledTask -ErrorAction Stop | Out-Null; Write-Output "^""Successfully disabled task `"^""$taskName`"^""."^""; } catch { Write-Error "^""Failed to disable task `"^""$taskName`"^"": $($_.Exception.Message)"^""; $operationFailed = $true; }; }; if ($operationFailed) { Write-Output 'Failed to disable some tasks. Check error messages above.'; exit 1; }"
:: Disable scheduled task(s): `\MicrosoftEdgeUpdateTaskMachineUA{*}`
PowerShell -ExecutionPolicy Unrestricted -Command "$taskPathPattern='\'; $taskNamePattern='MicrosoftEdgeUpdateTaskMachineUA{*}'; Write-Output "^""Disabling tasks matching pattern `"^""$taskNamePattern`"^""."^""; $tasks = @(Get-ScheduledTask -TaskPath $taskPathPattern -TaskName $taskNamePattern -ErrorAction Ignore); if (-Not $tasks) { Write-Output "^""Skipping, no tasks matching pattern `"^""$taskNamePattern`"^"" found, no action needed."^""; exit 0; }; $operationFailed = $false; foreach ($task in $tasks) { $taskName = $task.TaskName; if ($task.State -eq [Microsoft.PowerShell.Cmdletization.GeneratedTypes.ScheduledTask.StateEnum]::Disabled) { Write-Output "^""Skipping, task `"^""$taskName`"^"" is already disabled, no action needed."^""; continue; }; try { $task | Disable-ScheduledTask -ErrorAction Stop | Out-Null; Write-Output "^""Successfully disabled task `"^""$taskName`"^""."^""; } catch { Write-Error "^""Failed to disable task `"^""$taskName`"^"": $($_.Exception.Message)"^""; $operationFailed = $true; }; }; if ($operationFailed) { Write-Output 'Failed to disable some tasks. Check error messages above.'; exit 1; }"
Ijo6IFJlc3RvcmUgc2NoZWR1bGVkIHRhc2socykgdG8gZGVmYXVsdCBzdGF0ZTogYFxcTWljcm9zb2Z0RWRnZVVwZGF0ZVRhc2tNYWNoaW5lQ29yZXsqfWBcblBvd2VyU2hlbGwgLUV4ZWN1dGlvblBvbGljeSBVbnJlc3RyaWN0ZWQgLUNvbW1hbmQgXCIkdGFza1BhdGhQYXR0ZXJuPSdcXCc7ICR0YXNrTmFtZVBhdHRlcm49J01pY3Jvc29mdEVkZ2VVcGRhdGVUYXNrTWFjaGluZUNvcmV7Kn0nOyAkc2hvdWxkRGlzYWJsZSA9ICAkZmFsc2U7IFdyaXRlLU91dHB1dCBcIl5cIlwiRW5hYmxpbmcgdGFza3MgbWF0Y2hpbmcgcGF0dGVybiBgXCJeXCJcIiR0YXNrTmFtZVBhdHRlcm5gXCJeXCJcIi5cIl5cIlwiOyAkdGFza3MgPSBAKEdldC1TY2hlZHVsZWRUYXNrIC1UYXNrUGF0aCAkdGFza1BhdGhQYXR0ZXJuIC1UYXNrTmFtZSAkdGFza05hbWVQYXR0ZXJuIC1FcnJvckFjdGlvbiBJZ25vcmUpOyBpZiAoLU5vdCAkdGFza3MpIHsgV3JpdGUtV2FybmluZyAoIFwiXlwiXCJNaXNzaW5nIHRhc2s6IENhbm5vdCBlbmFibGUsIG5vIHRhc2tzIG1hdGNoaW5nIHBhdHRlcm4gYFwiXlwiXCIkdGFza05hbWVQYXR0ZXJuYFwiXlwiXCIgZm91bmQuXCJeXCJcIiArIFwiXlwiXCIgVGhpcyB0YXNrIGFwcGVhcnMgdG8gYmUgbm90IGluY2x1ZGVkIGluIHRoaXMgdmVyc2lvbiBvZiBXaW5kb3dzLlwiXlwiXCIgKTsgZXhpdCAwOyB9OyAkb3BlcmF0aW9uRmFpbGVkID0gJGZhbHNlOyBmb3JlYWNoICgkdGFzayBpbiAkdGFza3MpIHsgJHRhc2tOYW1lID0gJHRhc2suVGFza05hbWU7IGlmICgkc2hvdWxkRGlzYWJsZSkgeyBpZiAoJHRhc2suU3RhdGUgLWVxIFtNaWNyb3NvZnQuUG93ZXJTaGVsbC5DbWRsZXRpemF0aW9uLkdlbmVyYXRlZFR5cGVzLlNjaGVkdWxlZFRhc2suU3RhdGVFbnVtXTo6RGlzYWJsZWQpIHsgV3JpdGUtT3V0cHV0IFwiXlwiXCJTa2lwcGluZywgdGFzayBgXCJeXCJcIiR0YXNrTmFtZWBcIl5cIlwiIGlzIGFscmVhZHkgZGlzYWJsZWQsIG5vIGFjdGlvbiBuZWVkZWQuXCJeXCJcIjsgY29udGludWU7IH07IH0gZWxzZSB7IGlmICgoJHRhc2suU3RhdGUgLW5lIFtNaWNyb3NvZnQuUG93ZXJTaGVsbC5DbWRsZXRpemF0aW9uLkdlbmVyYXRlZFR5cGVzLlNjaGVkdWxlZFRhc2suU3RhdGVFbnVtXTo6RGlzYWJsZWQpIC1hbmQgKCR0YXNrLlN0YXRlIC1uZSBbTWljcm9zb2Z0LlBvd2VyU2hlbGwuQ21kbGV0aXphdGlvbi5HZW5lcmF0ZWRUeXBlcy5TY2hlZHVsZWRUYXNrLlN0YXRlRW51bV06OlVua25vd24pKSB7IFdyaXRlLU91dHB1dCBcIl5cIlwiU2tpcHBpbmcsIHRhc2sgYFwiXlwiXCIkdGFza05hbWVgXCJeXCJcIiBpcyBhbHJlYWR5IGVuYWJsZWQsIG5vIGFjdGlvbiBuZWVkZWQuXCJeXCJcIjsgY29udGludWU7IH07IH07IHRyeSB7IGlmICgkc2hvdWxkRGlzYWJsZSkgeyAkdGFzayB8IERpc2FibGUtU2NoZWR1bGVkVGFzayAtRXJyb3JBY3Rpb24gU3RvcCB8IE91dC1OdWxsOyBXcml0ZS1PdXRwdXQgXCJeXCJcIlN1Y2Nlc3NmdWxseSBkaXNhYmxlZCB0YXNrIGBcIl5cIlwiJHRhc2tOYW1lYFwiXlwiXCIuXCJeXCJcIjsgfSBlbHNlIHsgJHRhc2sgfCBFbmFibGUtU2NoZWR1bGVkVGFzayAtRXJyb3JBY3Rpb24gU3RvcCB8IE91dC1OdWxsOyBXcml0ZS1PdXRwdXQgXCJeXCJcIlN1Y2Nlc3NmdWxseSBlbmFibGVkIHRhc2sgYFwiXlwiXCIkdGFza05hbWVgXCJeXCJcIi5cIl5cIlwiOyB9OyB9IGNhdGNoIHsgV3JpdGUtRXJyb3IgXCJeXCJcIkZhaWxlZCB0byByZXN0b3JlIHRhc2sgYFwiXlwiXCIkdGFza05hbWVgXCJeXCJcIjogJCgkXy5FeGNlcHRpb24uTWVzc2FnZSlcIl5cIlwiOyAkb3BlcmF0aW9uRmFpbGVkID0gJHRydWU7IH07IH07IGlmICgkb3BlcmF0aW9uRmFpbGVkKSB7IFdyaXRlLU91dHB1dCAnRmFpbGVkIHRvIHJlc3RvcmUgc29tZSB0YXNrcy4gQ2hlY2sgZXJyb3IgbWVzc2FnZXMgYWJvdmUuJzsgZXhpdCAxOyB9XCJcbjo6IFJlc3RvcmUgc2NoZWR1bGVkIHRhc2socykgdG8gZGVmYXVsdCBzdGF0ZTogYFxcTWljcm9zb2Z0RWRnZVVwZGF0ZVRhc2tNYWNoaW5lVUF7Kn1gXG5Qb3dlclNoZWxsIC1FeGVjdXRpb25Qb2xpY3kgVW5yZXN0cmljdGVkIC1Db21tYW5kIFwiJHRhc2tQYXRoUGF0dGVybj0nXFwnOyAkdGFza05hbWVQYXR0ZXJuPSdNaWNyb3NvZnRFZGdlVXBkYXRlVGFza01hY2hpbmVVQXsqfSc7ICRzaG91bGREaXNhYmxlID0gICRmYWxzZTsgV3JpdGUtT3V0cHV0IFwiXlwiXCJFbmFibGluZyB0YXNrcyBtYXRjaGluZyBwYXR0ZXJuIGBcIl5cIlwiJHRhc2tOYW1lUGF0dGVybmBcIl5cIlwiLlwiXlwiXCI7ICR0YXNrcyA9IEAoR2V0LVNjaGVkdWxlZFRhc2sgLVRhc2tQYXRoICR0YXNrUGF0aFBhdHRlcm4gLVRhc2tOYW1lICR0YXNrTmFtZVBhdHRlcm4gLUVycm9yQWN0aW9uIElnbm9yZSk7IGlmICgtTm90ICR0YXNrcykgeyBXcml0ZS1XYXJuaW5nICggXCJeXCJcIk1pc3NpbmcgdGFzazogQ2Fubm90IGVuYWJsZSwgbm8gdGFza3MgbWF0Y2hpbmcgcGF0dGVybiBgXCJeXCJcIiR0YXNrTmFtZVBhdHRlcm5gXCJeXCJcIiBmb3VuZC5cIl5cIlwiICsgXCJeXCJcIiBUaGlzIHRhc2sgYXBwZWFycyB0byBiZSBub3QgaW5jbHVkZWQgaW4gdGhpcyB2ZXJzaW9uIG9mIFdpbmRvd3MuXCJeXCJcIiApOyBleGl0IDA7IH07ICRvcGVyYXRpb25GYWlsZWQgPSAkZmFsc2U7IGZvcmVhY2ggKCR0YXNrIGluICR0YXNrcykgeyAkdGFza05hbWUgPSAkdGFzay5UYXNrTmFtZTsgaWYgKCRzaG91bGREaXNhYmxlKSB7IGlmICgkdGFzay5TdGF0ZSAtZXEgW01pY3Jvc29mdC5Qb3dlclNoZWxsLkNtZGxldGl6YXRpb24uR2VuZXJhdGVkVHlwZXMuU2NoZWR1bGVkVGFzay5TdGF0ZUVudW1dOjpEaXNhYmxlZCkgeyBXcml0ZS1PdXRwdXQgXCJeXCJcIlNraXBwaW5nLCB0YXNrIGBcIl5cIlwiJHRhc2tOYW1lYFwiXlwiXCIgaXMgYWxyZWFkeSBkaXNhYmxlZCwgbm8gYWN0aW9uIG5lZWRlZC5cIl5cIlwiOyBjb250aW51ZTsgfTsgfSBlbHNlIHsgaWYgKCgkdGFzay5TdGF0ZSAtbmUgW01pY3Jvc29mdC5Qb3dlclNoZWxsLkNtZGxldGl6YXRpb24uR2VuZXJhdGVkVHlwZXMuU2NoZWR1bGVkVGFzay5TdGF0ZUVudW1dOjpEaXNhYmxlZCkgLWFuZCAoJHRhc2suU3RhdGUgLW5lIFtNaWNyb3NvZnQuUG93ZXJTaGVsbC5DbWRsZXRpemF0aW9uLkdlbmVyYXRlZFR5cGVzLlNjaGVkdWxlZFRhc2suU3RhdGVFbnVtXTo6VW5rbm93bikpIHsgV3JpdGUtT3V0cHV0IFwiXlwiXCJTa2lwcGluZywgdGFzayBgXCJeXCJcIiR0YXNrTmFtZWBcIl5cIlwiIGlzIGFscmVhZHkgZW5hYmxlZCwgbm8gYWN0aW9uIG5lZWRlZC5cIl5cIlwiOyBjb250aW51ZTsgfTsgfTsgdHJ5IHsgaWYgKCRzaG91bGREaXNhYmxlKSB7ICR0YXNrIHwgRGlzYWJsZS1TY2hlZHVsZWRUYXNrIC1FcnJvckFjdGlvbiBTdG9wIHwgT3V0LU51bGw7IFdyaXRlLU91dHB1dCBcIl5cIlwiU3VjY2Vzc2Z1bGx5IGRpc2FibGVkIHRhc2sgYFwiXlwiXCIkdGFza05hbWVgXCJeXCJcIi5cIl5cIlwiOyB9IGVsc2UgeyAkdGFzayB8IEVuYWJsZS1TY2hlZHVsZWRUYXNrIC1FcnJvckFjdGlvbiBTdG9wIHwgT3V0LU51bGw7IFdyaXRlLU91dHB1dCBcIl5cIlwiU3VjY2Vzc2Z1bGx5IGVuYWJsZWQgdGFzayBgXCJeXCJcIiR0YXNrTmFtZWBcIl5cIlwiLlwiXlwiXCI7IH07IH0gY2F0Y2ggeyBXcml0ZS1FcnJvciBcIl5cIlwiRmFpbGVkIHRvIHJlc3RvcmUgdGFzayBgXCJeXCJcIiR0YXNrTmFtZWBcIl5cIlwiOiAkKCRfLkV4Y2VwdGlvbi5NZXNzYWdlKVwiXlwiXCI7ICRvcGVyYXRpb25GYWlsZWQgPSAkdHJ1ZTsgfTsgfTsgaWYgKCRvcGVyYXRpb25GYWlsZWQpIHsgV3JpdGUtT3V0cHV0ICdGYWlsZWQgdG8gcmVzdG9yZSBzb21lIHRhc2tzLiBDaGVjayBlcnJvciBtZXNzYWdlcyBhYm92ZS4nOyBleGl0IDE7IH1cIiI=
Help
How to apply or restore "Disable Edge automatic update scheduled tasks" using commands
- ≈ 2 min to complete
- Tools: Command Prompt
- Difficulty: Medium
- ≈ 3 instructions
- 1
Open Command Prompt
Open Command Prompt as Administrator. - 2
Copy code
Copy the code: - 3
Paste & run
Paste the commands into Command Prompt and press Enter to run.Some changes require a system restart to take effect
Similar Guides
Wider Goal
Guides below includes this guide to achieve a wider goal.See other more general settings that includes this one as one of its actions.These plans combine multiple privacy settings, including this one, for stronger protection.
- Disable Edge and WebView2 automatic updates
- Configure Edge
- Configure browsers
- Configure programs
This category encompasses scripts that disable automatic updates for Microsoft Edge and its WebView2 component. Disabling updates for Edge and WebView2 p...
This category contains scripts that adjust Microsoft Edge settings to enhance privacy, security, and potentially improve system performance This category...
This category includes scripts that enhance privacy by adjusting browsers to prevent tracking, minimize data leaks, and restrict personalized ads. These ...
Same Goal
Other guides in Disable Edge and WebView2 automatic updates See settings that are in the same category as this guide.Using other actions in the same category may help you achieve your goal better.
See all 7 guides
About the Creators
These people have authored this documentation and written its scripts:
Reviewed By
This guide has undergone comprehensive auditing and peer review:Expert review by undergroundwires
- Verified technical accuracy and editorial standards
- Assessed system impact and user privacy risks
- Audited and verified using automated security tests
Public review by large community
- Privacy enthusiasts and professionals peer-reviewed
- Millions of end-users tested across different environments
- Audited and verified using third-party security software
History
We continually monitor our guides, their impact and other potential privacy options. We update our guides when new information becomes available. On every update, we publicly store who made the change, what has been changed, why the change was made and when the change was made.