国产探花免费观看_亚洲丰满少妇自慰呻吟_97日韩有码在线_资源在线日韩欧美_一区二区精品毛片,辰东完美世界有声小说,欢乐颂第一季,yy玄幻小说排行榜完本

首頁 > 編程 > VBScript > 正文

用vbs實現本地連接禁用-啟用腳本代碼

2020-03-24 18:20:27
字體:
來源:轉載
供稿:網友
轉載至 http://community.csdn.net/Expert/topic/4881/4881882.xml

復制代碼 代碼如下:
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
html教程

鄭重聲明:本文版權歸原作者所有,轉載文章僅為傳播更多信息之目的,如作者信息標記有誤,請第一時間聯系我們修改或刪除,多謝。

發表評論 共有條評論
用戶名: 密碼:
驗證碼: 匿名發表

圖片精選

主站蜘蛛池模板: 兰西县| 若尔盖县| 新安县| 长寿区| 修武县| 英山县| 阿巴嘎旗| 广水市| 文昌市| 肃北| 宿松县| 岗巴县| 增城市| 永泰县| 泾川县| 馆陶县| 女性| 乌兰察布市| 克什克腾旗| 隆昌县| 阿图什市| 司法| 林周县| 微山县| 石楼县| 营山县| 伽师县| 沈丘县| 马公市| 荣成市| 山阳县| 萍乡市| 大竹县| 嘉义县| 大安市| 泗阳县| 五莲县| 太原市| 河东区| 甘谷县| 文昌市|