用命令行禁用网卡
1、首先打开电脑桌面按下键盘的win+R组合快捷键。
2、然后在弹出的页面中输入 cmd 回车。
3、然后即可进入命令行界面。
4、然后在命令行中输入 netsh interface set interface "本地连接" disabled,回车,这样就可以禁用网卡了。
5、若是想要启用的话,则输入 netsh interface set interface "无线网络连接" enabled,回车,这样就可以启用网络了。
出处:https://zhidao.baidu.com/question/553977590.html
查看可用的网卡命令:
netsh lan show interfaces
查看所有网卡命令,包括已禁用的:
netsh interface show interface
个人使用
禁用或启用指定网卡,保存以下代码到bat文件中,文件格式使用ANSI编码格式
@netsh lan show interfaces | find "以太网" > nul && (netsh interface set interface "以太网" disabled) || (netsh interface set interface "以太网" enabled)
@(netsh lan show interfaces | find "以太网" > nul && (netsh interface set interface "以太网" disabled && echo 以太网已禁用) || (netsh interface set interface "以太网" enabled && echo 以太网已启用))&echo,&pause
注意:
1)以上命令主要是根据匹配网络名称,也不要有:以太网1,以太网2 这样的多个网卡名称。
2)运行如下的命令,可能会提示dot3svc服务没有运行。
netsh lan show interfaces
有线自动配置服务(dot3svc)没有运行。
解决方法:
使用 sc qc dot3svc 查看实际服务名称,使用 net start dot3svc 启动 dot3svc 服务,如下图:
关注我】。(●'◡'●)
如果,您希望更容易地发现我的新博客,不妨点击一下绿色通道的【因为,我的写作热情也离不开您的肯定与支持,感谢您的阅读,我是【Jack_孟】!
本文来自博客园,作者:jack_Meng,转载请注明原文链接:https://www.cnblogs.com/mq0036/p/16582656.html
【免责声明】本文来自源于网络,如涉及版权或侵权问题,请及时联系我们,我们将第一时间删除或更改!
posted on 2022-08-13 11:21 jack_Meng 阅读(5014) 评论(0) 编辑 收藏 举报