问几个批处理指令

问几个批处理指令。1.我想把电脑的本地连接的获取IP地址的属性由“使用下面的IP(和DNS)”该成“自动获取IP(和DNS)”(也即由使用指定IP(和DNS)改成自动获取... 问几个批处理指令。
1.我想把电脑的本地连接的获取IP地址的属性由“使用下面的IP(和DNS)”该成“自动获取IP(和DNS)”(也即由使用指定IP(和DNS)改成自动获取IP(和DNS)),这个指令怎么写?
2.禁用本地连接的指令?
3.启用本地连接的指令?

PS:因为特殊原因我每次上网都得修改本地连接的属性,所以想做个批处理剩一下事儿
展开
 我来答
拟谷盗
2007-11-10 · TA获得超过1733个赞
知道大有可为答主
回答量:903
采纳率:0%
帮助的人:1095万
展开全部
我也经常修改 本地连接属性 写了一些批处理
用DOS的 netsh 命令 可以设置

配置名为 本地连接 的接口,其静态 IP 地址为 192.168.0.66,子网掩码为 255.255.255.0,默认网关为 192.168.0.1:

netsh interface ip set address name="本地连接" source=static addr=192.168.0.66 mask=255.255.255.0 gateway=192.168.0.1 auto

配置名为 本地连接 的接口,其 dns 为 212.202.192.68

netsh iterface ip set dns name="本地连接" static addr=202.102.192.68

1.我想把电脑的本地连接的获取IP地址的属性由“使用下面的IP(和DNS)”该成“自动获取IP(和DNS)”(也即由使用指定IP(和DNS)改成自动获取IP(和DNS)),这个指令怎么写?

netsh interface ip set address name="本地连接" source=dhcp
netsh interface ip set dns name="本地连接" source=dhcp

2.禁用本地连接的指令?
set interface name="本地连接" admin=disabled
用于非LAN

3.启用本地连接的指令?
set interface name="本地连接" admin=enabled
用于非LAN

net start "network connections"
net stop "network connections"
上海巴鲁图工程机械科技有限公司_
2022-05-15 广告
光电编码器,是一种通过光电转换将输出轴上的机械几何位移量转换成脉冲或数字量的传感器。光电编码器每转输出60(我们用老板没有说)个脉冲,五线制。其中两根为电源线,三根为脉冲线(A相、B相、Z)。电源的工作电压为 (+5~+24V)直流电源。光... 点击进入详情页
本回答由上海巴鲁图工程机械科技有限公司_提供
灯下月亮
2007-11-10 · TA获得超过135个赞
知道小有建树答主
回答量:432
采纳率:0%
帮助的人:367万
展开全部
1、http://3.gddx2.crsky.com/download/ipchange.zip
2、3、
本地连接禁用/启用vbs代码
Const ssfCONTROLS = 3
sConnectionName = "本地连接" '可改成需要控制的连接名称,如"无线网络连接"等
sEnableVerb = "启用(&A)"
sDisableVerb = "禁用(&B)" 'XP系统中应为 "停用(&B)"
set shellApp = createobject("shell.application")
set oControlPanel = shellApp.Namespace(ssfCONTROLS)
set oNetConnections = nothing
for each folderitem in oControlPanel.items
if folderitem.name = "网络连接" then
set oNetConnections = folderitem.getfolder: exit for
end if
next
if oNetConnections is nothing then
msgbox "未找到网络连接文件夹"
wscript.quit
end if
set oLanConnection = nothing
for each folderitem in oNetConnections.items
if lcase(folderitem.name) = lcase(sConnectionName) then
set oLanConnection = folderitem: exit for
end if
next
if oLanConnection is nothing then
msgbox "未找到 '" & sConnectionName & "' item"
wscript.quit
end if
bEnabled = true
set oEnableVerb = nothing
set oDisableVerb = nothing
s = "Verbs: " & vbcrlf
for each verb in oLanConnection.verbs
s = s & vbcrlf & verb.name
if verb.name = sEnableVerb then
set oEnableVerb = verb
bEnabled = false
end if
if verb.name = sDisableVerb then
set oDisableVerb = verb
end if
next
'debugging displays left just in case...
'
'msgbox s ': wscript.quit
'msgbox "Enabled: " & bEnabled ': wscript.quit
'not sure why, but invokeverb always seemed to work
'for enable but not disable.
'
'saving a reference to the appropriate verb object
'and calling the DoIt method always seems to work.
'
if bEnabled then
' oLanConnection.invokeverb sDisableVerb
oDisableVerb.DoIt
else
' oLanConnection.invokeverb sEnableVerb
oEnableVerb.DoIt
end if
'adjust the sleep duration below as needed...
'
'if you let the oLanConnection go out of scope
'and be destroyed too soon, the action of the verb
'may not take...
'
wscript.sleep

参考资料: http://www.jb51.net/html/200703/114/8468.htm

已赞过 已踩过<
你对这个回答的评价是?
评论 收起
dusheng123
2007-11-10 · TA获得超过218个赞
知道小有建树答主
回答量:672
采纳率:0%
帮助的人:541万
展开全部
用DOS命令设置ip地址及DNS
设置/修改IP地址,子网掩码,网关的格式:
netsh interface ip set address "本地连接" static 10.25.35.35 255.255.255.0 10.25.35.7 auto
命令的意思是将“本地连接”
ip地址设置成 10.25.35.35
子网掩码是 255.255.255.0
网关设置成 10.25.35.7 并且自动跃点数
注意:"本地连接"处请根据自己的情况修改

设置DNS命令格式:
netsh interface ip set dns "本地连接" static 211.138.91.1
命令的意思是将“本地连接”的DNS设置成211.138.91.1
批处理命令就可以写:
netsh interface ip set address "本地连接" static 10.25.35.35 255.255.255.0 10.25.35.7 auto
netsh interface ip set dns "本地连接" static 211.138.91.1
PS: 里面的参数自己改
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
aimiboss
2007-11-10
知道答主
回答量:31
采纳率:0%
帮助的人:0
展开全部
一般改过之后就不用改了!除非你用的不是管理员帐户!
可以把你的帐户提升为管理员帐户!
提升方法为:
net localgroup administrators 你的用户名 /add
删除为:
net localgroup administrators 你的用户名 /del
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
gdchzgj
2007-11-11 · TA获得超过810个赞
知道小有建树答主
回答量:897
采纳率:0%
帮助的人:780万
展开全部
netsh interface ip set address name="本地连接" source=dhcp
netsh interface ip set dns name="本地连接" source=dhcp
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
收起 更多回答(10)
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式