Categories:

With this, you can easily collect the details of all components that are installed on your server.

get-wmiobject win32_product |
where {$_.Name -match "SQL" -AND $_.vendor -eq "Microsoft Corporation"} |
select name, version

Tags:

Comments are closed