[新手上路]批处理新手入门导读[视频教程]批处理基础视频教程[视频教程]VBS基础视频教程[批处理精品]批处理版照片整理器
[批处理精品]纯批处理备份&还原驱动[批处理精品]CMD命令50条不能说的秘密[在线下载]第三方命令行工具[在线帮助]VBScript / JScript 在线参考
返回列表 发帖

[文本处理] [已解决]批处理如何获取本地连接的MAC地址?

这个应该算是文本处理吧,也许有人认为是网络连接版块
但ipconfig/all>iplist.txt之后全部是文本处理了
以前发过1个帖子是获取本地连接IP:
http://bbs.bathome.net/viewthrea ... p;extra=&page=1
现在我要获取的是本地连接的MAC地址,批处理代码如下:
  1. for /f "tokens=2 delims=:" %%a in ('ipconfig /all^|find "Physical Address"') do set MAC=%%a
  2. ipconfig /all>"%temp%\ipList.txt"
  3. for /f "tokens=1 delims=:" %%a in ('findstr /n "Ethernet adapter" "%temp%\ipList.txt"') do (
  4.     set SkipRow=%%a
  5.     goto :DoSkip
  6. )
  7. :DoSkip
  8. for /f "usebackq skip=%SkipRow% tokens=1,15" %%a in ("%temp%\ipList.txt") do (
  9.     if "%%a" equ "IP" (
  10.         set IP=%%b
  11.         goto :ShowResult
  12.     )
  13. )
  14. :ShowResult
  15. echo %ip%:%MAC: =%>>mac.txt
  16. start mac.txt
复制代码
问题是如果我连了ADSL或者拨了PPTP VPN其他的,获取到的MAC地址就不是本地连接网卡的IP地址了
能否高手帮我修改下啊,只获取下面信息中的本地连接的MAC地址

Microsoft Windows XP [Version 5.1.2600]
(C) Copyright 1985-2001 Microsoft Corp.

C:\Documents and Settings\Administrator>ipconfig/all

Windows IP Configuration

        Host Name . . . . . . . . . . . . : ACE
        Primary Dns Suffix  . . . . . . . :
        Node Type . . . . . . . . . . . . : Mixed
        IP Routing Enabled. . . . . . . . : No
        WINS Proxy Enabled. . . . . . . . : No

Ethernet adapter 本地连接:

        Connection-specific DNS Suffix  . :
        Description . . . . . . . . . . . : Realtek PCIe GBE Family Controller
        Physical Address. . . . . . . . . : 00-31-67-47-77-C1
        Dhcp Enabled. . . . . . . . . . . : No
        IP Address. . . . . . . . . . . . : 192.168.1.99
        Subnet Mask . . . . . . . . . . . : 255.255.0.0
        Default Gateway . . . . . . . . . : 192.168.1.1
        DNS Servers . . . . . . . . . . . : 202.101.224.69
                                            202.101.224.68
PPP adapter 虚拟专用网络连接:

        Connection-specific DNS Suffix  . :
        Description . . . . . . . . . . . : WAN (PPP/SLIP) Interface
        Physical Address. . . . . . . . . : 00-53-21-00-00-00
        Dhcp Enabled. . . . . . . . . . . : No
        IP Address. . . . . . . . . . . . : 169.254.41.60
        Subnet Mask . . . . . . . . . . . : 255.255.255.255
        Default Gateway . . . . . . . . . : 169.254.45.160
        DNS Servers . . . . . . . . . . . : 203.141.128.33
                                            203.141.128.34

C:\Documents and Settings\Administrator>

要获取的MAC地址为:
Ethernet adapter 本地连接:
后面的
        Physical Address. . . . . . . . . : 00-31-67-47-77-C1
物理网卡只有1块

[ 本帖最后由 q120072949 于 2011-1-26 18:17 编辑 ]
1

评分人数

    • Batcher: 感谢给帖子标题标注[已解决]字样PB + 2

孤星版主就是厉害啊,问题已经解决,连接PPTP也可以获取了
谢谢!

TOP

  1. @echo off&setlocal enabledelayedexpansion
  2. for /f "delims=" %%a in ('ipconfig/all') do call:a "%%a"
  3. echo;%e%
  4. pause&exit
  5. :a
  6. set "a=%~1"
  7. if defined a if not "!a:~0,1!"==" " set "b=!a:~0,1!"
  8. for /f "tokens=1,2* delims=:. " %%b in ("%~1") do if /i "%%b %%c"=="Physical Address" set %b%=%%d
复制代码
1

评分人数

寒夜孤星:在没有说明的情况下,本人所有代码均运行在 XP SP3 下 (有问题请发贴,QQ临时会话已关闭)

TOP

返回列表