chkdsk でオフライン スキャンを実行しますか?

chkdsk でオフライン スキャンを実行しますか?

ショートフォーム:chkdsk で「オフライン スキャンを実行」するにはどうすればよいですか?

詳細:

私は Win 11 Pro を実行しており、破損していると思われる外部 NTFS ドライブを調べて、おそらく復活させようとしています。次の chkdsk ドキュメントに従ってください: https://learn.microsoft.com/en-us/windows-server/administration/windows-commands/chkdsk?tabs=イベントビューアー

私の最初の試みはこれでした:

>chkdsk f: /scan
The type of the file system is NTFS.
Insufficient storage available to create either the shadow copy storage file or other shadow copy data.

A snapshot error occured while scanning this drive. Run an offline scan and fix.

ドキュメントには、/forceofflinefix「すべてのオンライン修復をバイパスします。見つかったすべての欠陥はオフライン修復のキューに入れられます (例: chkdsk /spotfix)」と記載されているため、正しいように思えます。しかし、同じエラーが発生します。

>chkdsk f: /scan /forceofflinefix
The type of the file system is NTFS.
Insufficient storage available to create either the shadow copy storage file or other shadow copy data.

A snapshot error occured while scanning this drive. Run an offline scan and fix.

では、「オフライン スキャンを実行」するにはどうすればよいでしょうか?

答え1

答えが分かりました。/X オプションが必要でした。これは機能し、chkdsk はボリュームを修復することができました。

>chkdsk f: /X /scan /forceofflinefix

関連情報