无忧启动论坛

标题: cmd命令行下如何更改本地连接2、3的名称? [打印本页]

作者: ones    时间: 2011-11-23 20:31
标题: cmd命令行下如何更改本地连接2、3的名称?
如下面所示,vmware安装第一个网卡会被命名为本地连接 2,安装第二个网卡会被命名为本地连接 3。
如果我第一个安装VMnet1,则会反过来,本地连接 2就会变成VMware Virtual Ethernet Adapter for VMnet1
我想把对应的网卡的连接名称更改为对应的名称,这样的批处理该如何写?
我只知道netsh interface set interface name="本地连接 2" newname="VMnet8",但是因为安装顺序的原因,本地连接 2未必是VMnet8,所以这样就很难写批处理了
dos下有什么小工具可以一步做到吗?最好是还能配置IP
netsh interface set address VMnet8 static 192.168.188.2 netmask 255.255.255.0 这条命令的前提也是要能获取到网络连接的名称

ipconfig /all
Ethernet adapter 本地连接 2:
        Connection-specific DNS Suffix  . :
        Description . . . . . . . . . . . : VMware Virtual Ethernet Adapter for
VMnet8
        Physical Address. . . . . . . . . : 00-50-56-C0-00-01
        Dhcp Enabled. . . . . . . . . . . : Yes
        Autoconfiguration Enabled . . . . : Yes
        IP Address. . . . . . . . . . . . : 0.0.0.0
        Subnet Mask . . . . . . . . . . . : 0.0.0.0
        Default Gateway . . . . . . . . . :
        DHCP Server . . . . . . . . . . . : 0.0.0.0
Ethernet adapter 本地连接 3:
        Connection-specific DNS Suffix  . :
        Description . . . . . . . . . . . : VMware Virtual Ethernet Adapter for
VMnet1
        Physical Address. . . . . . . . . : 00-50-56-C0-00-08
        Dhcp Enabled. . . . . . . . . . . : Yes
        Autoconfiguration Enabled . . . . : Yes
        IP Address. . . . . . . . . . . . : 0.0.0.0
        Subnet Mask . . . . . . . . . . . : 0.0.0.0
        Default Gateway . . . . . . . . . :
        DHCP Server . . . . . . . . . . . : 0.0.0.0

[ 本帖最后由 ones 于 2011-11-23 20:34 编辑 ]
作者: 2011wosliming    时间: 2012-10-2 22:09
提示: 作者被禁止或删除 内容自动屏蔽
作者: Pale_Cheung    时间: 2012-10-8 15:23
原帖由 ones 于 2011-11-23 20:31 发表
如下面所示,vmware安装第一个网卡会被命名为本地连接 2,安装第二个网卡会被命名为本地连接 3。
如果我第一个安装VMnet1,则会反过来,本地连接 2就会变成VMware Virtual Ethernet Adapter for VMnet1
我想把 ...

你不是都知道 netsh 了么?

  1. for /f "usebackq skip=3 tokens=3,*" %A in (`netsh interface show interface`) do echo "%B"
复制代码
批处理里面 % 要换成 %%

用for分析的缺点就是 不同 page code 下不保证一样。


这个的话 英语应该也可以。

[ 本帖最后由 Pale_Cheung 于 2012-10-8 15:24 编辑 ]




欢迎光临 无忧启动论坛 (http://wuyou.net./) Powered by Discuz! X3.3