Você está perguntando:
Does not tell me with how can I find out which drive it has found the errors on?
Mas a mensagem de erro afirma claramente; ênfase em negrito meu:
To repair these errors and prevent loss of data restart your PC now.
Mas se especificamente saber qual unidade é afetada é importante para você, meu palpite é que seria o sistema / disco de inicialização. Portanto, um reinício simples deve esclarecer as coisas. Mas se você tiver várias unidades instaladas, você provavelmente poderia siga as instruções no manual para usar o CHKDSK em cada disco que não seja do sistema:
Note that CHKDSK needs to be able to lock the drive, meaning that it cannot be used to examine the system’s boot drive if the computer is in use. In our example, the target drive is an external disk so the CHKDSK process will begin as soon as we enter the command above. If the target drive is a boot disk, the system will ask you if you’d like to run the command before the next boot. Type “yes,” restart the computer, and the command will run before the operating system loads, allowing it to gain full access to the disk.
Observe a última linha sobre o comportamento do CHKDSK ao ser executado em um disco de inicialização. Pelo que você está nos mostrando, o sistema provavelmente já está configurado para lidar com isso se você reiniciar. Mas a verificação manual de outros discos que não são do sistema / de inicialização não prejudicará muito. Então vale a pena tentar.
Você também pode ver se algo no log do CHKDSK oferece informações sobre o que está acontecendo por seguindo as instruções aqui . O método mais legal apresentado é este que usa powershell.exe
e criará um arquivo CHKDSKResults.txt
em sua área de trabalho:
get-winevent -FilterHashTable @{logname="Application"; id="1001"}| ?{$_.providername –match "wininit"} | fl timecreated, message | out-file Desktop\CHKDSKResults.txt
Desde a mensagem inicial “Encontramos erros em uma unidade.” é o que está preocupando você, meu palpite é que o sistema já executou o CHKDSK e, como tal, deve haver algumas entradas na log que indicasse em quais problemas de drive foram descobertos. Vale a pena conferir se você está preocupado em fazer qualquer outra coisa.