设为首页收藏本站Access中国

Office中国论坛/Access中国论坛

 找回密码
 注册

QQ登录

只需一步,快速开始

返回CPU16位16进制序列号

1970-1-1 08:00| 发布者: 未知| 查看: 1248| 评论: 0

Public Function GetwmiProcessorID() As String
' 使用 Windows WMI 组件来识别 CPU ID
' Getcpuid.dll 获取的id只有8位, 而使用 Microsoft WMI Scripting Library 可以识别到16 位,
' 下面简短的代码返回的是16位16进制的字符串。

' 首先必须引用 Microsoft WMI Scripting Library

   Dim cpuSet As SWbemObjectSet
   Dim cpu As SWbemObject
 
   Set cpuSet = GetObject("winmgmts:{impersonationLevel=impersonate}"). _
                           InstancesOf("Win32_Processor")
   For Each cpu In cpuSet
      Debug.Print cpu.processorid
      GetwmiProcessorID = cpu.processorid
   Next
  
End Function

最新评论

QQ|站长邮箱|小黑屋|手机版|Office中国/Access中国 ( 粤ICP备10043721号-1 )  

GMT+8, 2025-4-4 05:17 , Processed in 0.070200 second(s), 17 queries .

Powered by Discuz! X3.3

© 2001-2017 Comsenz Inc.

返回顶部