Como corrigir o erro 0x80071A91 no sistema Windows Vista / backup Vista?

0

Estou recebendo este erro abaixo:

"File backup could not save your automatic backup settings for the following reason:

Transaction support within the specified file system resource manager is not started or was shutdown due to an error. (0x80071A91)

Please try again."

Eu tentei isso (para corrigir) no cmd:

“fsutil resource setautoreset true C:\” as an adm

Mas não funcionou.

O que eu quero é fazer um backup de todos os meus arquivos.

    
por John 06.08.2011 / 20:30

2 respostas

1

Você excluiu todos os arquivos primeiro do C:\Windows\System32\config\TxR antes de executar o fsutil? Certifique-se de que o explorador mostre arquivos ocultos e do sistema.

    
por 07.08.2011 / 01:07
0

John veja este post no blog

Recently I was very frustrated installing Vista on my home machine. It’s not that something wrong with Vista, it was drivers that drove me crazy. Problems I had were caused by the fact that nVidia failed to provide working drivers for RAID 0+1 array based on nForce 4 Ultra chipset (I’ve got ASUS A8N-E motherboard). When I finally managed to install everything, it was running fine for couple of weeks. After certain point though Windows updates begun to fail as well as Vista backup feature stopped working. I had basically only one clue. It’s an error message I was getting when I tried to start a backup job:

File backup could not save your automatic backup settings for the following reason:

Transaction support within the specified file system resource manager is not started or was shutdown due to an error. (0x80071A91)

Please try again.

Microsoft help wasn’t really helpful: http://support.microsoft.com/kb/927748/en-us. Googling didn’t bring any luck either, so I start researching toward file system resource manager (FSRM). Accidently I found that fsutil tool has an additional argument “resource”, which evidently controls FSRM behavior.

So, if you see a bunch of failed Windows Updates and/or your Vista files backup doesn’t work anymore, here are the steps you need to do in order to reset FSRM:

Click “WinKey” on your keyboard. Type “cmd” and hit Ctrl+Shift+Enter. That will bring you to the command prompt in Administrator mode. It you still have UAC enabled, it will ask you for permissions, click “OK”. Navigate to your Vista system folder (i.e. C:\Windows\System32) Type “fsutil resource setautoreset true C:\” assuming that you have your Vista on drive C. Reboot.

    
por 07.08.2011 / 03:37