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

之前我们在AWS实例中禁用了以下任务,以防止负载均衡器在尝试运行这些任务时将其杀死。 TIWORKER.exe是我们的2012R2服务器的大型colpurt。 看了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