Windows 10 1909 用戶

Windows 10 1909 用戶

當我在任務管理器上結束任務時,它會在 15 分鐘後打開。我不需要網頁瀏覽器,我不需要每天每分鐘都在更新,從而減慢我的電腦速度。

我的意思是 MicrosoftEdgeUpdate.exe

答案1

Windows 10 1909 用戶

如果您以管理員身分在命令提示字元中執行下列命令,則它將在 Windows 10 1909 中執行。

sc config "edgeupdate" start=disabled

sc config "edgeupdatem" start=disabled

這部分說明是錯誤的,因為它不再適用於 20H2 等較新版本的 Windows 10。

簡而言之,Windows 不允許您以典型方式關閉 Microsoft Edge 更新服務,例如您進入電腦管理、services.msc 服務管理控制台或 msconfig 系統配置,因此必須使用更晦澀的方法來關閉它所使用的。

這些命令是一種命令列方式,可以在圖形使用者介面中完成一些操作,以指示2 個Microsoft Edge 服務如何啟動,但Microsoft 似乎使這些設定在較新版本的Windows 10 中毫無用處。 4 個選項。

  • 自動的
  • 自動(延遲)
  • 不活躍
  • 殘障人士

請參考此圖片。

Windows 服務變更啟動類型

Windows 10 20H2 用戶

將 2 個 microsoft Edge 服務的啟動設定更改為disabled在 Windows 20H2 中不起作用,因為 Microsoft 無論如何都讓 Windows 覆蓋它。所以你必須採取更多非常規的方法。

檢查這些線程

下面是我使用的方法。

以管理員身份開啟命令提示符,然後執行以下命令。

taskkill /im MicrosoftEdgeUpdate.exe /f
rd "%ProgramFiles(x86)%\Microsoft\EdgeUpdate" /s /q

然後,您還需要在 RegEdit 或登錄編輯器中刪除以下登錄項目(以及刪除 EdgeUpdate 檔案和任務):

\HKEY_LOCAL_MACHINE\SYSTEM\ControlSet001\Services\edgeupdate
\HKEY_LOCAL_MACHINE\SYSTEM\ControlSet001\Services\edgeupdatem 

答案2

停用 Microsoft Edge 自動更新(Windows Powershell 腳本)

該腳本必須從管理提示符存取中執行

Write-Host "Disabling browser auto update..."

$msEdgeInstallationPath = 'C:\Program Files (x86)\Microsoft'

$Process2Monitor = "MicrosoftEdgeUpdate"; 
For ($i = 0; $i -lt 5; $i++) {
    $ProcessesFound = Get-Process | ? { $Process2Monitor -contains $_.Name } | Select-Object -ExpandProperty Name; If ($ProcessesFound) { "Microsoft Edge updater running... Killing it" | Write-Host; Stop-Process -Name $Process2Monitor -Force; Break } else { "Microsoft Edge updater not running. Retrying in 1 second..." | Write-Host; Start-Sleep -Seconds 1} 
}

Write-Host "Waiting for Microsoft Edge update to finish (60s Timeout)"

For ($i = 0; $i -lt 60; $i++) {
    $ProcessesFound = Get-Process | ? { $Process2Monitor -contains $_.Name } | Select-Object -ExpandProperty Name; If ($ProcessesFound) { "Microsoft Edge updater running... waiting its finish..." | Write-Host; Start-Sleep -Seconds 1 } else { "Microsoft Edge updater finished." | Write-Host; Break}
}

Rename-Item -Path "$msEdgeInstallationPath\EdgeUpdate\MicrosoftEdgeUpdate.exe" -NewName MicrosoftEdgeUpdateDisabled.exe -Force

答案3

只需以管理員身份執行cmd以下命令即可停用 Microsoft Edge 自動更新。要求是使用者必須關聯到網域

reg add HKLM\SOFTWARE\Policies\Microsoft\EdgeUpdate /v UpdateDefault /t REG_DWORD /f /d 0x00000000

此方法的優點是無需移除MicrosoftEdgeUpdate.exe。

相關內容