Forum Discussion
Taner_Rasim
Oct 15, 2020Copper Contributor
Windows Server 2019 the latest build 17763.737.190906-2324.rs5 issue with Task Scheduler
Hello, We are in trouble with Windows Server 2019, the issue is related to Task Scheduler. Something is wrong with permissions and privileges. The latest build of the Server 2019 that we use is 17...
abbodi1406
Oct 30, 2020Steel Contributor
It's not a bug, some tasks are restricted to System account, and some even require TrustedInstaller privileges
this exist in all Windows 10 / Server releases
the easy way is to take ownership and grant permissions to administrator for all files under C:\Windows\System32\Tasks
or you can try to use Task Scheduler itself to run a task as SYSTEM which disable the relevant task
e.g.
SCHTASKS /Create /F /RU "SYSTEM" /RL HIGHEST /SC HOURLY /TN SystemTasks /TR "cmd /c SystemTasks.cmd"
SCHTASKS /Run /I /TN SystemTasks
where SystemTasks.cmd contain the commands to disable the tasks
e.g.
SCHTASKS /Change /DISABLE /TN "Microsoft\Windows\WaaSMedic\PerformRemediation"
or use 3rd party program NSudo to launch taskschd.msc as TrustedInstaller
Taner_Rasim
Oct 31, 2020Copper Contributor
abbodi1406
Thank you we will try and we will give you feedback 🙂