VB获取硬盘逻辑序列号的方法

本文介绍了一种使用Visual Basic编写的简单方法来获取计算机硬盘的序列号。通过调用Windows API函数GetVolumeInformationA,该方法可以跨不同操作系统版本运行。

摘要生成于 C知道 ,由 DeepSeek-R1 满血版支持, 前往体验 >

新建个窗口,在其上加个Command,Caption为Get Serial
加入下列代码:

Private Declare Function GetVolumeSerialNumber Lib "kernel32" Alias "GetVolumeInformationA" (ByVal lpRootPathName As String, ByVal lpVolumeNameBuffer As String, ByVal nVolumeNameSize As Long, lpVolumeSerialNumber As Long, lpMaximumComponentLength As Long, lpFileSystemFlags As Long, ByVal lpFileSystemNameBuffer As String, ByVal nFileSystemNameSize As LongAs Long

Public Function VolumeSerialNumber(ByVal RootPath As StringAs String

Dim VolLabel As String
Dim VolSize As Long
Dim Serial As Long
Dim MaxLen As Long
Dim Flags As Long
Dim Name As String
Dim NameSize As Long
Dim s As String
Dim ret As Boolean

ret 
= GetVolumeSerialNumber(RootPath, VolLabel, VolSize, Serial, MaxLen, Flags, Name, NameSize)

If ret Then

'Create an 8 character string
= Format(Hex(Serial), "00000000")
'Adds the '-' between the first 4 characters and the last 4 characters
VolumeSerialNumber = Left(s, 4+ "-" + Right(s, 4)

Else

'If the call to API function fails the function returns a zero serial number
VolumeSerialNumber = "0000-0000"

End If

End Function

Private Sub Command1_Click()

MsgBox VolumeSerialNumber("C:"'Shows the serial number of your Hard Disk

End Sub 
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值