Windows Powershellによるサービスの関連付けの情報を取得する方法を紹介
サービスの関連付けの情報を取得(先行ジョブ、ジョブ)。全てのプロパティについて取得したい場合は、Format-List * で可能。
サンプルソース
(入力)
Get-WmiObject Win32_DependentService | Format-List Antecedent,Dependent
(出力)
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"
・・・・・・・(以下続く:省略)・・・・・