批处理如何禁用本地连接同时启用无线连接

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了批处理如何禁用本地连接同时启用无线连接相关的知识,希望对你有一定的参考价值。

在网上搜索可以用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 400

参考技术A @echo off
netsh interface set interface "无线网络连接 " ENABLED
netsh interface set interface "本地连接" DISABLED
参考技术B 这个,还真有难度。

电脑如何不让手动选择无线网络

禁止手动选择无线网络:
接口“无线网络连接”上 已禁用 自动配置。
netsh wlan set autoconfig enabled=no interface="无线网络连接"
允许手动选择无线网络:
接口“无线网络连接”上 已启用 自动配置。
netsh wlan set autoconfig enabled=yes interface="无线网络连接"

--------------------------------------------------------------------------------------------

注意:

interface="网卡的名称",比如是禁用下面的网卡,

那么interface="无线网络连接3"

测试:

我们打开无线,连接到一个你要连接的无线网络,勾上自动连接,把其它的无线网络忘记掉。

自动连接:

忘记网络:把密码去掉点确定即可

 

没有禁用之前是可以查看无线网络的,可以自由选择连接

现在禁用

禁用完之后,无线网络是连接上的,但是不能手动去扫描跟连接

如果想启用

end

以上是关于批处理如何禁用本地连接同时启用无线连接的主要内容,如果未能解决你的问题,请参考以下文章

如何用脚本实时启用、禁用网卡

SAP ABAP 如何启用SSL HTTPS连接

MySQL启用SSL连接

为啥我的电脑在用无线网的时候搜索不到热点

怎样用命令行禁用网卡

无线网无法连接,之前又设置为此网络启用联邦信息处理标准FIPS兼容,是Win10的,怎么处理,关闭联邦兼容模式