Windows Powershellによるインストールされているストアアプリケーションの情報を取得する方法を紹介
インストールされているストアアプリケーションの情報を取得(名前、プログラムID、ベンダー)。全てのプロパティについて取得したい場合は、Format-List * で可能。
サンプルソース
(入力)
Get-WmiObject Win32_InstalledStoreProgram | Format-List Name,ProgramId,Vendor
(出力)
Name : Microsoft.AAD.BrokerPlugin
ProgramId : Microsoft.AAD.BrokerPlugin_1000.14393.0.0_neutral_neutral_cw5n1h2txyewy
Vendor : CN=Microsoft Windows, O=Microsoft Corporation, L=Redmond, S=Washington, C=US
Name : Microsoft.AccountsControl
ProgramId : Microsoft.AccountsControl_10.0.14393.0_neutral__cw5n1h2txyewy
Vendor : CN=Microsoft Windows, O=Microsoft Corporation, L=Redmond, S=Washington, C=US
Name : Microsoft.BioEnrollment
ProgramId : Microsoft.BioEnrollment_10.0.14393.0_neutral__cw5n1h2txyewy
Vendor : CN=Microsoft Windows, O=Microsoft Corporation, L=Redmond, S=Washington, C=US