web-dev-qa-db-ja.com

Windows7でのボリュームシャドウコピーの問題

Windows 7 UltimatePCのボリュームシャドウコピーに問題があります。基本的に、ボリュームシャドウコピーに依存するプログラムは、(プログラムによっては)エラーの全リストで常に失敗するため(Windowsバックアップを含む)使用できません。たとえば、Windowsバックアップを実行すると、次のようになります。

The backup was not successful. The error is: Windows Backup failed while trying to read from the shadow copy on one of the volumes being backed up. Please check in the event logs for any relevant errors. (0x81000037).

次に、このVSSエラーが発生します。

Volume Shadow Copy Service error: Unexpected error querying for the IVssWriterCallback interface.  hr = 0x80070005, Access is denied.
. This is often caused by incorrect security settings in either the writer or requestor process. 

Operation:
   Gathering Writer Data

Context:
   Writer Class Id: {e8132975-6f93-4464-a53e-1050253ae220}
   Writer Name: System Writer
   Writer Instance ID: {33e11ab5-bc29-4cd0-b993-656570b23fe3}

次に、Paragon System Backup(バージョン9.5)を実行すると、次のようになります(VSSに問題があることが通知された後)。

Volume Shadow Copy Service information: The COM Server with CLSID {4e14fba2-2e22-11d1-9964-00c04fbbb345} and name CEventSystem cannot be started. [0x80070013, The media is write protected.
] 

Volume Shadow Copy Service error: Unexpected error calling routine CoCreateInstance.  hr = 0x80070013, The media is write protected.
. 

Volume Shadow Copy Service information: The COM Server with CLSID {4e14fba2-2e22-11d1-9964-00c04fbbb345} and name CEventSystem cannot be started. [0x80070013, The media is write protected.
] 

Volume Shadow Copy Service error: Unexpected error calling routine CoCreateInstance.  hr = 0x80070013, The media is write protected.
. 

次に、次のような情報メッセージが表示されます。

The VSS service is shutting down due to idle timeout. 

(昨日バックアップを実行しようとしたときに5つ取得しました)

次に、次の警告が表示されます。

Volume Shadow Copy Service warning: VSS was denied access to the root of volume \\?\Volume{2d3b403a-2f5a-11df-846a-005056c00008}\. Denying administrators from accessing volume roots can cause many unexpected failures, and will prevent VSS from functioning properly.  Check security on the volume, and try the operation again. 

Operation:
   Removing auto-release shadow copies
   Loading provider

Context:
   Execution Context: System Provider

Volume Shadow Copy Service warning: VSS was denied access to the root of volume \\?\Volume{2d3b403a-2f5a-11df-846a-005056c00008}\. Denying administrators from accessing volume roots can cause many unexpected failures, and will prevent VSS from functioning properly.  Check security on the volume, and try the operation again. 

Operation:
   Automatically choosing a diff-area volume
   Processing EndPrepareSnapshots

Context:
   Execution Context: System Provider

Volume Shadow Copy Service warning: VSS was denied access to the root of volume \\?\Volume{2d3b403a-2f5a-11df-846a-005056c00008}\. Denying administrators from accessing volume roots can cause many unexpected failures, and will prevent VSS from functioning properly.  Check security on the volume, and try the operation again. 

Operation:
   Automatically choosing a diff-area volume
   Processing EndPrepareSnapshots

Context:
   Execution Context: System Provider

Vssadminリストライターを実行すると:

Writer name: 'Task Scheduler Writer'
   Writer Id: {d61d61c8-d73a-4eee-8cdd-f6f9786b7124}
   Writer Instance Id: {1bddd48e-5052-49db-9b07-b96f96727e6b}
   State: [1] Stable
   Last error: No error

Writer name: 'VSS Metadata Store Writer'
   Writer Id: {75dfb225-e2e4-4d39-9ac9-ffaff65ddf06}
   Writer Instance Id: {088e7a7d-09a8-4cc6-a60
5
Kryten

マウントされたボリュームを交換できます\\?\Volume{2d3b403a-2f5a-11df-846a-005056c00008}\ジャンクションによって、エラーはなくなるはずです。 Microsoftの MSKBの記事 はエラー0x81000037

「再解析ポイントが、圧縮ファイル(マルチメディアファイル、.Zipファイルなど)を含むマウントされたボリュームである場合に発生します。」

(私の強調)

Hard Link Shell Extension を使用すると、「ジャンクション」を作成して、現在使用している「マウントボリューム」を置き換えることができます。これは、CDドライブをマウスの右ボタンでフォルダにドラッグしたときに表示されるHardLinkShellExtコンテキストメニューです。

enter image description here

  • 動作しません:バックアップに含まれるライブラリに含まれる「マウントされたボリューム」:

with mounted volume in library, no backup possible

  • 動作します:バックアップに含まれるライブラリに含まれる「ジャンクション」:

with junction, backup works

トピックの詳細については、同様の質問(ただし原因は異なります)の この回答 を参照してください。

2

これは関係ないかもしれませんが...

ユーザーディレクトリ を別のドライブに 移動して それにリンクされています。

リンクを削除して初めて、ようやくすべてが再び機能し始めました。

1
Jon-Eric