web-dev-qa-db-ja.com

NTFSパーティションがchkdskをクラッシュさせる

残念ながら、マシンでハードリセットを2回行ったため、NTFSパーティションが破損しているようです。 O/SはWindows2012R2です。

C:\Users\Administrator>chkdsk d:
The type of the file system is NTFS.
Volume label is XXXXXXX.

WARNING!  F parameter not specified.
Running CHKDSK in read-only mode.

Stage 1: Examining basic file system structure ...
  18085632 file records processed.
File verification completed.
  5195 large file records processed.
  0 bad file records processed.

Stage 2: Examining file name linkage ...
  18240430 index entries processed.
Index verification completed.
CHKDSK is scanning unindexed files for reconnect to their original directory.
  1 unindexed files scanned.
An unspecified error occurred (6672732e637878 56f).

パーティションを修正するためにバックアップから再フォーマット/復元する以外の提案はありますか?

5
CoderBrien

最初にS.M.A.R.Tを確認する必要があります。

コマンドプロンプトウィンドウで次のコマンドを入力し、それぞれの後にEnterキーを押します。

wmic

diskdrive get status

または、CrystalDiskInfoを使用できます http://crystalmark.info/download/index-e.html

HDDの状態に問題がある場合は、変更する必要があります。 HDDの状態に問題がない場合は、を使用して修復を試みることができます

chkdsk/f D:およびchkdsk/r D:

1
Linh Nguyen Nhu