主页 > 知识库 > VBS获取文件MD5值(无组件)

VBS获取文件MD5值(无组件)

热门标签:铁路电话系统 银行业务 网站文章发布 美图手机 检查注册表项 服务器配置 呼叫中心市场需求 智能手机

下面这个代码不需要组件一样可以获取MD5值。

复制代码 代码如下:

Option Explicit
Dim wi
Dim file
Dim file_size
Dim file_attributes
Dim file_version
Dim file_hash
Set wi = CreateObject("WindowsInstaller.Installer")
file = "111.exe"
file_size = wi.FileSize(file)
file_attributes = wi.FileAttributes(file)
file_version = wi.FileVersion(file)
file_hash = GetFileHash(file)
Set wi = Nothing
MsgBox "File: " file vbCrLf _
"Size: " file_size vbCrLf _
"Attributes: " file_attributes vbCrLf _
"Version: " file_version vbCrLf _
"MD5: " file_hash
Function GetFileHash(file_name)
Dim file_hash
Dim hash_value
Dim i
Set file_hash = wi.FileHash(file_name, 0)
hash_value = ""
For i = 1 To file_hash.FieldCount
hash_value = hash_value BigEndianHex(file_hash.IntegerData(i))
Next
GetFileHash = hash_value
Set file_hash = Nothing
End Function
Function BigEndianHex(Int)
Dim result
Dim b1, b2, b3, b4
result = Hex(Int)
b1 = Mid(result, 7, 2)
b2 = Mid(result, 5, 2)
b3 = Mid(result, 3, 2)
b4 = Mid(result, 1, 2)
BigEndianHex = b1 b2 b3 b4
End Function

您可能感兴趣的文章:
  • VBS 添加右键计算文件MD5的实现代码
  • VBS中通过调用CAPICOM对象实现SHA1MD5加密
  • 用VBS实现PHP的md5_file函数代码
  • VBS MD5加密算法代码
  • 一段提取用户名和md5的vbs代码

标签:新疆 上海 乐山 长治 沈阳 河南 沧州 红河

巨人网络通讯声明:本文标题《VBS获取文件MD5值(无组件)》,本文关键词  ;如发现本文内容存在版权问题,烦请提供相关信息告之我们,我们将及时沟通与处理。本站内容系统采集于网络,涉及言论、版权与本站无关。
  • 相关文章
  • 收缩
    • 微信客服
    • 微信二维码
    • 电话咨询

    • 400-1100-266