Skip to content

Instantly share code, notes, and snippets.

@vbfox
Created June 28, 2017 13:11
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save vbfox/f4a8c768dda30b24cd21a07aaa30db2c to your computer and use it in GitHub Desktop.
Save vbfox/f4a8c768dda30b24cd21a07aaa30db2c to your computer and use it in GitHub Desktop.
Finding where is an installed package msi file (Windows Installer)
get-wmiobject Win32_Product | Where-Object { $_.Name -like "*foo*" } | Format-Table Name, LocalPackage, PackageCache, PackageName, InstallSource
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment