Skip to content

Instantly share code, notes, and snippets.

@ryanmoon
Created July 9, 2018 19:34
Show Gist options
  • Save ryanmoon/273c32272a11cc138f4e50262970c206 to your computer and use it in GitHub Desktop.
Save ryanmoon/273c32272a11cc138f4e50262970c206 to your computer and use it in GitHub Desktop.
[Find Windows Software] Using Powershell Find Version of Software Installed Replace VARIABLE with the name of the Software #powershell #version
Get-WMIObject -Class win32_product -Filter {Name like "%VARIABLE%"} | Select-Object -Property Name,Version | ft -hidetableheaders
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment