请求彻底卸载Windows 11中的Microsoft Edge Update
Hey there, I feel your pain—you’ve already successfully wiped Microsoft Edge and Edge WebView using those command-line tricks, but Edge Update is being stubborn even against tools like IObit or Revo Uninstaller. Let’s tackle this persistent component with some power-user methods that actually work:
方法1:针对性命令行卸载
Edge Update has its own installer tucked away in a dedicated directory. Here’s how to target it directly:
- Open Command Prompt as Administrator (right-click the Start menu > select Windows Terminal (Admin) > switch to Command Prompt).
- Navigate to the Edge Update installer folder (this is the standard path, but double-check if yours differs):
cd "C:\Program Files (x86)\Microsoft\EdgeUpdate\Installer" - Run the uninstall command with force flags:
If that doesn’t kick it off, try adding the specific Edge Update flag:setup.exe --uninstall --system-level --verbose-logging --force-uninstallsetup.exe --uninstall --msedgeupdate --system-level --verbose-logging --force-uninstall
方法2:禁用服务后手动删除文件
If the command line doesn’t work, we can break the service tie first then clean up the files:
- Press
Win + R, typeservices.mscand hit Enter to open Services Manager. - Look for two services: Microsoft Edge Update Service (edgeupdate) and Microsoft Edge Update Service (edgeupdatem).
For each service:- Right-click > Properties > set Startup type to Disabled.
- Click "Stop" if the service is currently running.
- Once the services are disabled, delete the entire Edge Update folder via command line:
rmdir /s /q "C:\Program Files (x86)\Microsoft\EdgeUpdate"
方法3:组策略阻止自动重装
Even after uninstalling, Edge Update might sneak back. Use Group Policy to lock it out:
- Press
Win + R, typegpedit.mscand hit Enter (note: this is available on Windows 11 Pro/Enterprise; Home users can enable Group Policy via a quick registry tweak first if needed). - Navigate to:
Computer Configuration > Administrative Templates > Windows Components > Microsoft Edge Update. - Find the policy Allow Microsoft Edge Update and set it to Disabled.
- Restart your PC to apply the changes—this will prevent Windows from reinstalling Edge Update automatically.
I’ve used these methods to help other users get rid of this stubborn component when regular uninstallers failed. Give them a try, and let me know if you hit any roadblocks!
备注:内容来源于stack exchange,提问作者Ehab




