指定的资源pipe理器内的事务支持不会启动,或者由于错误而被closures

尝试添加,编辑或删除Windows计划任务时出现以下错误:

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

试图通过fsutil重置事务pipe理器(正如answers.microsoft.com上的一些人所build议的)

 fsutil resource setautoreset true c:\ 

但它没有工作。

还注意到,Windows更新失败,还有一个未知的错误。

手动清除以下目录中的所有文件修复了问题

 C:\Windows\System32\config\TxR 

我也重新启动前通过fsutil资源pipe理器(不知道它是否需要或不)

 fsutil resource setautoreset true c:\ 

这些链接也很有帮助:

http://support.microsoft.com/kb/2484025 (链接是关于修复Windowssearch服务,但由于相同的问题发生)

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

虽然我没有尝试,但是,它可能是因为一些卡住的NTFS交易发生的问题,所以也可以尝试使用fsutil取消所有的僵尸交易

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

首先列出使用的交易

 fsutil transaction list 

然后用任何可疑的东西回收

 fsutil transaction rollback <GUID> 

我有与Windows 8.1相同的问题,唯一帮助我的是做

 CHKDSK C:\ /R 

并安排到下一次重新启动。