Victor Onrust
Victor Onrust

Reputation: 11

Windows 10 task scheduler errors "task not supported"

After updating to W10 I think task scheduler worked normally. Today I tried to open %windir%\system32\taskschd.msc /s and got a long list of errors that said "this version of task object is not supported or invalid" all being tasks made in W7 I guess. After escaping the messages all kinds of tasks "are not there" anymore, although when opening taskschd again the same thing happens. I am working on it and I succeeded in importing one of those tasks and comparing the xml. Hope someone has already found a good solution. Will update my findings.

Upvotes: 0

Views: 1627

Answers (1)

steffakasid
steffakasid

Reputation: 11

You can solve this using cmd:

C:\>schtasks /Query > tasks.txt

This command prints all configured tasks into a txt on your C: drive (or your current working directory). I used cmd as administrator I think that's neccessary. Afterwards you can delete all tasks which are wrong:

C:\>schtasks /Delete /TN "\ASUS\ASUS AI Suite II Execute" /F
ERFOLGREICH: Die geplante Aufgabe "\ASUS\ASUS AI Suite II Execute" wurde erfolgreich gelöscht.

I hope that works for you too.

Regards Steffen

Upvotes: 1

Related Questions