我是否需要在 Windows Server 2016 中禁用 TIWorker.exe 和相应的 TaskSheduler 任务

我是否需要在 Windows Server 2016 中禁用 TIWorker.exe 和相应的 TaskSheduler 任务

我们之前一直在禁用 AWS 实例中的以下任务,以防止在这些任务尝试运行时我们的负载均衡器杀死它们。TIWORKER.exe 是我们 2012R2 服务器的大问题。查看了 2016 开箱即用实例的 TaskScheduler 部分后,没有像 2012 中那样的任务。我应该担心它吗?我还需要禁用它吗?谢谢。

以下是我们禁用的内容

schtasks /Change /tn "\Microsoft\Windows\TaskScheduler\Idle Maintenance" /Disable
schtasks /Change /tn "\Microsoft\Windows\TaskScheduler\Maintenance Configurator" /Disable
schtasks /Change /tn "\Microsoft\Windows\TaskScheduler\Manual Maintenance" /Disable
schtasks /Change /tn "\Microsoft\Windows\TaskScheduler\Regular Maintenance" /Disable

#Adds a registry key to prevent Windows Maintenance tasks from running. 
Write-Host "Adding registry key to prevent Windows Maintenance tasks from running." 
New-ItemProperty -Path 'HKLM:\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Schedule\Maintenance' -Name MaintenanceDisabled -PropertyType DWord -Value 1 -Force

相关内容