- ベストアンサー
WMIによるネットワーク接続の有効無効化方法
- WMIを使用してネットワーク接続を有効または無効にする方法についての質問です。
- VBScriptを使用して指定のIPアドレスを有効化または無効化する方法を教えてください。
- 現在は指定のIPアドレスを設定しているが、実際には接続できない状態です。
- みんなの回答 (1)
- 専門家の回答
質問者が選んだベストアンサー
WMIは使いませんが、ネットワーク接続をオフオンするVBScriptです。 Const ssfCONTROLS = 3 Const sConPaneName = "ネットワークとダイヤルアップ接続" Const sConnectionName = "ローカル エリア接続" Const sDisableVerb = "無効にする(&B)" Const sEnableVerb = "有効にする(&A)" set shellApp = createobject("shell.application") set oControlPanel = shellApp.Namespace(ssfCONTROLS) set oNetConnections = nothing for each folderitem in oControlPanel.items if folderitem.name = sConPaneName then set oNetConnections = folderitem.getfolder: exit for end if next if oNetConnections is nothing then 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 wscript.quit end if for each verb in oLanConnection.verbs if verb.name = sDisableVerb then verb.DoIt WScript.Sleep 2000 end if next for each verb in oLanConnection.verbs if verb.name = sEnableVerb then verb.DoIt WScript.Sleep 3000 end if next
お礼
回答ありがとうございます。 試してみます。
補足
「ネットワークとダイヤルアップ接続」の部分を 「ネットワーク接続」に変えて実行するとできました。 ありがとうございました。