/**PageBeginHtml Block Begin **/ /***自定义返回顶部小火箭***/ /*生成博客目录的JS 开始*/ /*生成博客目录的JS 结束*/

笔记本 windows系统: 网线网卡与 有线网卡 网络互切脚本

开启有线网卡 关闭无线网卡 

内网.bat

@echo off
%1 %2
ver|find "5.">nul&&goto :Admin
mshta vbscript:createobject("shell.application").shellexecute("%~s0","goto :Admin","","runas",1)(window.close)&goto :eof
:admin
chcp 65001
netsh interface set interface "WLAN" disabled
netsh interface set interface "以太网" enabled
:eof

 

 

关闭有线网卡 开启无线网卡 

外网.bat

 

@echo off
%1 %2
ver|find "5.">nul&&goto :Admin
mshta vbscript:createobject("shell.application").shellexecute("%~s0","goto :Admin","","runas",1)(window.close)&goto :eof
:admin
chcp 65001
netsh interface set interface "以太网" disabled
netsh interface set interface "WLAN" enabled
:eof

 

 

 

 

 

 

 

posted @ 2022-05-31 13:16  一品堂.技术学习笔记  阅读(195)  评论(0编辑  收藏  举报