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
SQL Server Monitoring and Management Tools
Database Managed Services & DBA Support
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