Using SQL Server Discovery Tool to list installed components

Problem

I would like to get a detailed report of all the SQL Server components that are installed on the local server. Is there any easy way by which I could get this done?

Solution

Starting with SQL Server 2008, there is a built-in tool that can be used to get all the components that are installed on the local server. There are two ways by which the report can be generated. Check out the below options.

Option 1: SQL Server Installation Center

On the local server, click on “Start” and use the “Search” option.

From GUI

In the search box enter sql server to find installed programs related to SQL Server and then select the version of the installation center you want to run, in our case it is SQL Server 2016 CTP3.0 Installation Center (64-bit) as shown below.

SQL Server 2016

From SQL Server Installation Center, click on “Tools” on the left and click on “Installed SQL Server features discovery report” as shown below.

Installation Center

A detailed report which has information of all the SQL Server related components gets generated as shown below. As you can see, this report shows all the SQL Server components that are installed on the local server. (Note: there are additional columns, but to make the image readable I left off the last few columns from the report)

components

Option 2: Using command prompt

Go to the SQL installation folder from where you installed SQL Server. In my case, it is this folder: C:\SQLServer_13.0_Full.

Once you have navigated to this folder on the command prompt, enter this command : Setup.exe /Action=RunDiscovery

command prompt

A new window will appear and once it completes you will see the final report as displayed above.

new window

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

Next Steps

Leave a Reply

Your email address will not be published. Required fields are marked *