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

PC / Laptop Setup Steps

Baseline Machine1. Hard drive partitionsa. Operating System shall be installed on C:\WINDOWSb. Applications shall be…

Windows XP and Browser Compatibilities

1. Internet Explorer: The highest IE version that a machine running on Windows XP would…

How to Restore Deleted Active Directory objects

The manual process via LDP by MicrosoftStep 1: Locate the deleted objectrun LDP using a…