VBS(VBScript)によるサービスの関連付けの情報を取得する方法を紹介
WMIを使って、サービスの関連付けの情報を取得(先行ジョブ、ジョブ)
サンプルソース
※取得可能なプロパティ(情報)は、以下手順で取得可能⇒WMIのクラス・プロパティ一覧の確認
※「型が一致しません」のエラーが出る場合⇒VBSのWMIの出力で、型が一致しませんのエラーが出る場合
(入力:cscript)
Dim qu,cl,swbe,service,sms1,sms2
Set swbe = WScript.CreateObject("WbemScripting.SWbemLocator")
Set service = swbe.ConnectServer
Set qu = service.ExecQuery("Select * From Win32_DependentService")
For Each cl In qu
sms1 = cl.Antecedent
sms2 = cl.Dependent
Wscript.Echo "Antecedent:" & sms1
Wscript.Echo "Dependent:"& sms2
Wscript.Echo
Next
(出力)
Antecedent : \\HOSTNAME\root\cimv2:Win32_SystemDriver.Name="Tcpip"
Dependent : \\HOSTNAME\root\CIMV2:Win32_SystemDriver.Name="Ndu"
Antecedent : \\HOSTNAME\root\cimv2:Win32_SystemDriver.Name="NDIS"
Dependent : \\HOSTNAME\root\CIMV2:Win32_SystemDriver.Name="NetAdapterCx"
Antecedent : \\HOSTNAME\root\cimv2:Win32_SystemDriver.Name="tdx"
Dependent : \\HOSTNAME\root\CIMV2:Win32_SystemDriver.Name="NetBT"
Antecedent : \\HOSTNAME\root\cimv2:Win32_SystemDriver.Name="Tcpip"
Dependent : \\HOSTNAME\root\CIMV2:Win32_SystemDriver.Name="NetBT"
Antecedent : \\HOSTNAME\root\cimv2:Win32_SystemDriver.Name="Mup"
Dependent : \\HOSTNAME\root\CIMV2:Win32_SystemDriver.Name="rdbss"
・・・・・・・(以下続く:省略)・・・・・