磁碟總是顯示 100% 並且在一段時間後無法訪問

磁碟總是顯示 100% 並且在一段時間後無法訪問

它顯示了這樣的內容:

螢幕截圖

檢查磁碟顯示沒有發現問題。

根據 SPECCY 的 SMART 狀態正常:

智慧狀態

發生這種情況有什麼可能的原因嗎?這是我升級到Windows 10週年紀念版後才發生的。

編輯1:有時幾分鐘後它會再次恢復正常,但大多數情況下不會(而且我必須重置筆記型電腦)

編輯2:我已經使用我朋友的hddregenerator進行了檢查,沒有壞扇區

答案1

給出了一些解決方法微軟支援論壇。這可能會幫助你嘗試這個。

症狀:

儘管工作負載很輕或沒有工作負載,但任務管理器顯示磁碟利用率為 100%,且系統可能會延遲或變得無回應。此外,系統事件日誌包含大量事件 ID 為 129 的事件,這些事件代表磁碟控制器的重設。

原因:

雖然設備重置可能由多種因素引起,但我們知道某些高級主機控制器介面PCI-Express (AHCI PCIe) 型號存在問題,這些問題會在使用內建StorAHCI.sys 驅動程式運行時在Windows 10 中導致這些症狀。由於韌體錯誤,啟用訊息訊號中斷 (MSI) 模式時,固態硬碟 (SSD) 無法正確完成輸入/輸出。因此,Windows 儲存堆疊在等待無回應的讀取或寫入一段時間後會嘗試重設裝置。

解決:

可以透過登錄機碼停用特定裝置的 MSI 模式:

1. Identify if you are running the inbox AHCI driver (StorAHCI.sys):

    1. Open a command prompt with administrator privileges. Then type the following command in the command prompt window and hit Enter: devmgmt.msc

    2. Under IDE ATA/ATAPI Controllers right-click on the AHCI controller node and select Properties. This node is usually called “Standard SATA AHCI Controller.”

    3. Navigate to the driver tab and click Driver Details.

    4. If you see “StorAHCI.sys” in the list, you are running the inbox driver.



2. Disable MSI for the controller in the registry:

    1. In the same properties window opened in step 1.2, navigate to the Details tab and select Device instance path from the Property drop-down menu. Note this path.

    2. Open the registry editor by typing regedit in the previously opened command prompt.

    3. Navigate to: HKEY_LOCAL_MACHINE\System\CurrentControlSet\Enum\PCI\ <AHCI Controller>\Device Parameters\Interrupt Management\MessageSignaledInterruptProperties, where <AHCI Controller> refers to the device instance path you noted in step 2.1. 

    4. Change the value of the MSISupported key from “1” to “0”.

    5. If you don’t know which controller your boot device is attached to, repeat steps 2.1 through 2.4 for all AHCI controllers found under 1.2.



3. Reboot the machine.

相關內容