Finding the Version Number of Your Secret Server Release

There are several ways to find the version number of your Secret Server release. The procedures in this section apply to the Professional and Platinum editions of the Secret Server on-premises application.

Through Secret Server

You can find the version number of your Secret Server release from any Secret Server page. Just click your user icon in the top right corner, and a box opens displaying information including the full version number.

Through Windows File Explorer

  1. Log into the web server where the Secret Server application is installed.

  2. Open Windows File Explorer.

  3. Navigate to C:/inetpub/wwwroot/SecretServer/bin

  4. Right-click the Thycotic.ihawu.Business.dll file and select Properties.

  5. In the Properties dialog, click the Details tab, which displays information including your product version.

Through SQL

  1. Log into your Secret Server database server.

  2. Open and log into your Microsoft SQL Server Management Studio application.

  3. Click Connect.

  4. At the top level of the Object Explorer pane, click the + symbol next to servername\instance.

  5. Click the + symbol next to Databases.

  6. Right-click your Secret Server database and select New Query from the dialog.

  7. In the SQL Query pane that opens, paste the following query:

    Copy
    SELECT * from tbVersion
    ORDER BY CAST(REPLACE(VersionNumber, '.', '') AS INT) DESC;
  8. Click Execute.

  9. On the Results tab below the SQL Query pane, confirm that your query executed successfully and find the version number of your current Secret Server release in the top row.

Through the API

You can also use the REST API to check the version of Secret Server using the endpoint GET /v1/version.