VBS(VBScript)によるインストールされているストアアプリケーションの情報を取得する方法を紹介
WMIを使って、インストールされているストアアプリケーションの情報を取得(名前、プログラムID、ベンダー)
サンプルソース
※取得可能なプロパティ(情報)は、以下手順で取得可能⇒WMIのクラス・プロパティ一覧の確認
※「型が一致しません」のエラーが出る場合⇒VBSのWMIの出力で、型が一致しませんのエラーが出る場合
(入力:cscript)
Dim qu,cl,swbe,service,sms1,sms2,sms3
Set swbe = WScript.CreateObject("WbemScripting.SWbemLocator")
Set service = swbe.ConnectServer
Set qu = service.ExecQuery("Select * From Win32_InstalledStoreProgram")
For Each cl In qu
sms1 = cl.Name
sms2 = cl.ProgramId
sms3 = cl.Vendor
Wscript.Echo "Name:" & sms1
Wscript.Echo "ProgramId:"& sms2
Wscript.Echo "Vendor:"& sms3
Wscript.Echo
Next
(出力)
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