函数参考


DriveGetSerial

返回指定驱动器的序列号.

DriveGetSerial ( "路径" )

参数

路径 要获得序列号信息的驱动器盘符.

返回值

成功: 以字符串的形式返回指定驱动器的序列号.
失败: 把 @error 设为 1.

注意/说明

找到的这个驱动器序列号不是硬件序列号, 它是这个驱动器的 Windows 卷ID(Volume ID).

相关

DriveGetDrive, DriveGetFileSystem, DriveGetLabel, DriveGetType, DriveSetLabel, DriveSpaceFree, DriveSpaceTotal, DriveStatus

示例/演示


Local $sSerial = DriveGetSerial(@HomeDrive & "\") ; Find the serial number of the home drive, generally this is the C:\ drive.
MsgBox(4096, "Serial Number: ", $sSerial)