<p>Turns out the Automatic Maintenance tasks are managed by <code>C:\Windows\System32\MSchedExe.exe</code> and the Scheduled Tasks under the <code>\Microsoft\Windows\TaskScheduler</code> folder. It then will run other tasks that are defined but don’t have a specified trigger, one being the <code>MRT_HB</code> task under <code>\Microsoft\Windows\RemovalTools</code>.</p>
<p>Here you can see it calling MRT.exe to run the scan, and the last run time matches the information from the Action Center:</p>
<p>Si vous disable this Scheduled Task it should prevent the Malicious Software Removal Tool from running. You also can delete the task and the MRT.exe program using le suivant in an elevated PowerShell prompt:</p>
<pre><code class="lang-auto">Unregister-ScheduledTask -TaskName 'MRT_HB' -TaskPath '\Microsoft\Windows\RemovalTools\' -Confirm:$false
Remove-Item 'C:\Windows\System32\MRT.exe' -Force
</code></pre>
<p>Note, cependant, that si vous haven’t disabled the KB890830 update in WSUS or via <a href="https://superuser.com/a/895554/26374">the registry</a> it likely will be reinstalled, as MRT gets updated every patch Tuesday.</p>