如何在PowerShell中读取我的硬盘智能状态?

时间:2017-08-17 00:54:24

标签: powershell hard-drive

我正在使用Powershell版本5.1,我想知道如何在那里读取我的硬盘智能状态。我们可以在Powershell中编写任何代码来获得硬盘智能状态吗?

在命令提示符中,如following tutorial中所述,为了获得硬盘智能状态,我们可以输入 wmic并按Enter键。然后键入diskdrive get status并按Enter键。所以只需检查我们是否可以在powershell中执行类似操作。

1 个答案:

答案 0 :(得分:1)

在Google上找到了这个:https://blogs.msdn.microsoft.com/san/2011/08/11/have-you-ever-wanted-to-know-if-your-disk-is-going-to-fail-before-it-does/

Get-WmiObject `
    -namespace root\wmi `
    –class MSStorageDriver_FailurePredictStatus `      
    -ErrorAction Silentlycontinue `
| Select InstanceName, PredictFailure, Reason `
| Format-Table –Autosize