在 chkdsk 中執行離線掃描?

在 chkdsk 中執行離線掃描?

簡寫:如何在 chkdsk 中「執行離線掃描」?

細節:

我正在運行 Win 11 Pro 並嘗試檢查並可能恢復似乎已損壞的外部 NTFS 驅動器。請按照以下 chkdsk 文件: https://learn.microsoft.com/en-us/windows-server/administration/windows-commands/chkdsk?tabs=event-viewer

我的第一次嘗試是這樣的:

>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

相關內容