• ベストアンサー
※ ChatGPTを利用し、要約された質問です(原文:WMIによるネットワーク接続の有効無効化方法)

WMIによるネットワーク接続の有効無効化方法

このQ&Aのポイント
  • WMIを使用してネットワーク接続を有効または無効にする方法についての質問です。
  • VBScriptを使用して指定のIPアドレスを有効化または無効化する方法を教えてください。
  • 現在は指定のIPアドレスを設定しているが、実際には接続できない状態です。

質問者が選んだベストアンサー

  • ベストアンサー
  • notnot
  • ベストアンサー率47% (4900/10359)
回答No.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

suvaryu
質問者

お礼

回答ありがとうございます。 試してみます。

suvaryu
質問者

補足

「ネットワークとダイヤルアップ接続」の部分を 「ネットワーク接続」に変えて実行するとできました。 ありがとうございました。

関連するQ&A

専門家に質問してみよう