Oct 15 2020 12:40 PM
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 17763.737.190906-2324.rs5.
The server is clear and freshly installed in VMWARE Esxi.
When we open Windows Server 2019's Task Scheduler we are not able to remove tasks in the Scheduler even when we are with full administrator permissions.
Do you know anyone something about this behavior of the new latest build of Server 2019?
We only find this but we didn't see anything interesting related to our case:
https://support.microsoft.com/en-us/help/4512578/windows-10-update-kb4512578
We think that the problem is a bug in the new release of the server.
Could you confirm or tell us more about the possibilities?
Thank you in advance and Best regards!
Oct 30 2020 11:33 AM
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
Oct 30 2020 02:28 PM
Better to ask for help with insider preview builds here in dedicated forums.
https://techcommunity.microsoft.com/t5/windows-server-insiders/bd-p/WindowsServerInsiders
Oct 31 2020 12:20 AM
Oct 31 2020 12:37 PM
You can report here on uservoice.
https://windowsserver.uservoice.com/forums/295047-general-feedback
or optionally start a case here with product support. A card is required to secure the incident contract but confirmed bugs are never charged.
https://support.serviceshub.microsoft.com/supportforbusiness
Oct 31 2020 12:53 PM
@abbodi1406
Thank you we will try and we will give you feedback 🙂