禁用edge瀏覽器更新

除了卸載edge的升級(jí)組件之外,通過篡改注冊(cè)表等方法依舊無法徹底解決,在此提出解決方法。
方法一:打開 Windows PowerShell 直接復(fù)制以下腳本運(yùn)行:
if ([Environment]::Is64BitOperatingSystem -eq "True") { ? ?#Write-Host "64-bit OS" ? ?$PF=${env:ProgramFiles(x86)}}else { ? ?#Write-Host "32-bit OS" ? ?$PF=$env:ProgramFiles}if ($(Test-Path "$PF\Microsoft\Edge\Application\msedge.exe") -eq "True") { ? ?# 結(jié)束進(jìn)程 ? ?taskkill /im MicrosoftEdgeUpdate.exe /f ? ?taskkill /im msedge.exe /f ? ?# Microsoft Edge 更新服務(wù) (sysin) ? ?#這里也可以使用 sc.exe stop "service name" ? ?Stop-Service -Name "edgeupdate" ? ?Stop-Service -Name "edgeupdatem" ? ?Stop-Service -Name "MicrosoftEdgeElevationService" ? ?# Windows 10 默認(rèn) PS 版本 5.1 沒有 Remove-Service 命令 ? ?# This cmdlet was added in PS v6. See https://docs.microsoft.com/en-us/powershell/scripting/whats-new/what-s-new-in-powershell-core-60?view=powershell-6#cmdlet-updates. ? ?#Remove-Service -Name "edgeupdate" ? ?#Remove-Service -Name "edgeupdatem" ? ?#Remove-Service -Name "MicrosoftEdgeElevationService" ? ?# sc 在 PowerShell 中是 Set-Content 別名,所以要使用 sc.exe 否則執(zhí)行后無任何效果 ? ?sc.exe delete "edgeupdate" ? ?sc.exe delete "edgeupdatem" ? ?sc.exe delete "MicrosoftEdgeElevationService" ? ?# 任務(wù)計(jì)劃企業(yè)版 ? ?#schtasks.exe /Delete /TN \MicrosoftEdgeUpdateBrowserReplacementTask /F ? ?#schtasks.exe /Delete /TN \MicrosoftEdgeUpdateTaskMachineCore /F ? ?#schtasks.exe /Delete /TN \MicrosoftEdgeUpdateTaskMachineUA /F ? ?Get-ScheduledTask -taskname MicrosoftEdgeUpdate* | Unregister-ScheduledTask -Confirm: $false ? ?# 移除更新程序 ? ?Remove-Item "$PF\Microsoft\EdgeUpdate" -Recurse -Force ? ?Write-Output "Disable Microsoft Edge Enterprise Auto Update Successful!"}elseif ($(Test-Path "$env:USERPROFILE\AppData\Local\Microsoft\Edge\Application\msedge.exe") -eq "True") { ? ?# 結(jié)束進(jìn)程 ? ?taskkill /im MicrosoftEdgeUpdate.exe /f ? ?taskkill /im msedge.exe /f ? ?# 用戶版沒有創(chuàng)建服務(wù) ? ?# 獲取SID方法 ? ?function Get-CurrentUserSID { ? ? ? ?[CmdletBinding()] ? ? ? ?param( ? ? ? ?) ? ? ? ?Add-Type -AssemblyName System.DirectoryServices.AccountManagement ? ? ? ?return ([System.DirectoryServices.AccountManagement.UserPrincipal]::Current).SID.Value ? ?} ? ?# 用戶版任務(wù)計(jì)劃 ? ?schtasks.exe /Delete /TN \MicrosoftEdgeUpdateTaskUser$(Get-CurrentUserSID)Core /F ? ?schtasks.exe /Delete /TN \MicrosoftEdgeUpdateTaskUser$(Get-CurrentUserSID)UA /F ? ?#Get-ScheduledTask -taskname MicrosoftEdgeUpdate* | Unregister-ScheduledTask -Confirm: $false ? ?# 移除更新程序 ? ?Remove-Item "$env:USERPROFILE\AppData\Local\Microsoft\EdgeUpdate" -Recurse -Force ? ?Write-Output "Disable Microsoft Edge Users Setup Auto Update Successful!"}else { ? ?Write-Output "No Microsoft Edge Installation Detected!"}
方法二:使用綠色版本的edge
方法三:使用組策略配置禁用 Edge 更新
恢復(fù)更新方法,若要恢復(fù)自動(dòng)更新,重新安裝官方原版即可。