Windows PowershellによるスタートメニューのフォルダとOS上のディレクトリの関連情報を参照する方法を紹介
スタートメニューのフォルダとOS上のディレクトリの関連情報を参照(スタートメニュー、OSディレクトリ)。全てのプロパティについて取得したい場合は、Format-List * で可能。
サンプルソース
(入力)
Get-WmiObject Win32_LogicalProgramGroupDirectory | Format-List Antecedent,Dependent
(出力)
Antecedent : \\HOSTNAME\root\CIMV2:Win32_LogicalProgramGroup.Name="Default:Start Menu"
Dependent : \\HOSTNAME\root\cimv2:Win32_Directory.Name="C:\\Users\\Default\\AppData\\Roaming\\Microsoft\\Windows\\Start Menu"
Antecedent : \\HOSTNAME\root\CIMV2:Win32_LogicalProgramGroup.Name="Default:Start Menu\\Programs"
Dependent : \\HOSTNAME\root\cimv2:Win32_Directory.Name="C:\\Users\\Default\\AppData\\Roaming\\Microsoft\\Windows\\Start Menu\\Programs"
Antecedent : \\HOSTNAME\root\CIMV2:Win32_LogicalProgramGroup.Name="Default:Start Menu\\Programs\\Accessibility"
Dependent : \\HOSTNAME\root\cimv2:Win32_Directory.Name="C:\\Users\\Default\\AppData\\Roaming\\Microsoft\\Windows\\Start Menu\\Programs\\Accessibility"
・・・・・・・・・・・・(省略)・・・・