win11 bat脚本设置静态IP/DHCP

发布时间:2024年01月10日

@echo off
netsh interface set interface name="以太网" admin=DISABLED
netsh interface set interface name="以太网" admin=ENABLED
netsh interface ip set address name="以太网" source=static address=192.168.168.168?mask=255.255.255.0
netsh interface ip add dnsserver name="以太网" address=114.114.114.114
pause

@echo off
netsh interface set interface name="以太网" admin=DISABLED
netsh interface set interface name="以太网" admin=ENABLED
netsh interface ip set address name="以太网" source=dhcp
pause

保存为.bat文件,以管理员权限运行;

注:保存文件使用ANSI格式;

?

文章来源:https://blog.csdn.net/wc_wc_8613/article/details/135503995
本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。