Posted On January 12, 2023

How to Search for Installed Application by Name in PowerShell

kimconnect 0 comments
blog.KimConnect.com >> Codes , Windows >> How to Search for Installed Application by Name in PowerShell

One can search using the known Vendor or application Name as illustrated below:

[testwindows]: PS C:\Users\user1\Documents> Get-WmiObject -Class Win32_Product | ?{$_.Name -like '*exporter*'}


IdentifyingNumber : {EDD0CDE3-4519-4C1A-9FB4-C8C067615698}
Name              : windows_exporter
Vendor            : prometheus-community
Version           : 0.20.0
Caption           : windows_exporter

[btestwindows]: PS C:\Users\user1\Documents> Get-WmiObject -Class Win32_Product | ?{$_.Vendor -like '*prometheus*'}


IdentifyingNumber : {EDD0CDE3-4519-4C1A-9FB4-C8C067615698}
Name              : windows_exporter
Vendor            : prometheus-community
Version           : 0.20.0
Caption           : windows_exporter

Leave a Reply

Your email address will not be published. Required fields are marked *

Related Post

Troubleshooting or Software Debugging Steps

1. Validate the problem2. Find to root cause by tailing logs or stack tracing3. Reproduce…

Linux: How To Use Dig

Checking Name Server(s) kim@kim-linux:~$ dig @8.8.8.8 microsoft.com ; <<>> DiG 9.16.1-Ubuntu <<>> @8.8.8.8 microsoft.com ;…

Domino Server Restore Procedure

1. In AWS, verify that a new instance of a Domino Server has been launched…