windows下用脚本设置本地连接ip
设置本地连接静态ip
netsh interface ip set address "本地连接" static 192.168.1.10
255.255.255.0
以上两个ip分别为本地连接ip和子网掩码,还可以在后面指定网关,
ip之间用空格分隔
设置为从DHCP自动获取IP
netsh interface ip set address "本地连接" source="dhcp"
把这两段脚本分别保存在不同的bat文件中,在PATH环境变量中加入这个
两个脚本的执行路径,以后就可在在命令行下
很方便的设置ip了。记得命令行窗口必须以管理员身份运行。
赞 (0)