Got the following error while trying to add, edit or delete a windows schedule task:

Transaction support within the specified resource manager is not 
started or was shut down due to an error.

Tried to reset transaction manager through fsutil (as suggested by a few people on answers.microsoft.com)

fsutil resource setautoreset true c:\

but it didn't work.

Also noticed that windows update was failing with an unknown error as well.

link|improve this question
Manually clearing all the files from the following directory fixed the problem C:\Windows\System32\config\TxR I also reset the resource manager through fsutil before restart (not sure it was required or not) fsutil resource setautoreset true c:\ These links were also helpful: support.microsoft.com/kb/2484025 (The link is about fixing windows search service but that occur because of the same problem ) channel9.msdn.com/Forums/TechOff/WindowsUpdate-problem – Faisal Jan 16 at 18:34
Good to see you solved your problem! You can add it as an answer below and accept it! – Bart De Vos Jan 17 at 7:52
feedback

1 Answer

up vote 0 down vote accepted

Manually clearing all the files from the following directory fixed the problem

C:\Windows\System32\config\TxR

I also reset the resource manager through fsutil before restart (not sure it was required or not)

fsutil resource setautoreset true c:\

These links were also helpful:

http://support.microsoft.com/kb/2484025 (The link is about fixing windows search service but that occur because of the same problem )

http://channel9.msdn.com/Forums/TechOff/WindowsUpdate-problem

Although I didn't try, but, its possible that the problem occurred because of some stuck NTFS Transaction, so probably you can also try cancelling all the zombie transactions using fsutil

[NotAllowedToPostMoreThan2Links]http://technet.microsoft.com/en-us/library/ff621563(WS.10).aspx

First list the transactions using

fsutil transaction list

and then roolback any thing suspicious using

fsutil transaction rollback <GUID>
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.