請教在 EXCEL 用VBA 需下那些指令(或 Call 其他程式),才能讀取目前使用電腦之 Mac Address 加以處理?
Tks a lot !
John
johnlin0808提到:
需下那些指令(或 Call 其他程式),才能讀取目前使用電腦之 Mac Address 加以處理?
Tks a lot !
試試看下面的程式 因為我用抓IPaddress 來改的
設定引用項目:Microsoft Scripting Runtime 打勾
<pre class="c" name="code">
Set objWMIService = GetObject(_
"winmgmts:\\" & strComputer & "\root\cimv2")
Set colItems = objWMIService.ExecQuery _
("Select * From Win32_NetworkAdapter " _
& "Where NetConnectionID = " & _
"'Local Area Connection 2'")
For Each objItem in colItems
strMACAddress = objItem.MACAddress
Next
shell
getmac > mac.txt
and then parse mac.txt