Serial number of Hard Disk or Hard Drive

前端 未结 5 2010
滥情空心
滥情空心 2020-12-14 12:30

At first it may seems it is very easy question and some body may be trying to give me advice to try Google, it may be so. But for me it is very hard I have try Google, Stack

5条回答
  •  轻奢々
    轻奢々 (楼主)
    2020-12-14 13:14

    This is the final solution:

    Get Physical HDD Serial Number without WMI

    write this much code:

    DriveListEx diskInfo = new DriveListEx();
    diskInfo.Load();
    string serialNo = diskInfo[0].SerialNumber;
    

    Don't forgot to add reference to the DriveInfoEx.dll.

提交回复
热议问题