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
-
Log into the web server where the Secret Server application is installed.
-
Open Windows File Explorer.
-
Navigate to
C:/inetpub/wwwroot/SecretServer/bin
-
Right-click the
Thycotic.ihawu.Business.dll
file and select Properties. -
In the Properties dialog, click the Details tab, which displays information including your product version.
Through SQL
-
Log into your Secret Server database server.
-
Open and log into your Microsoft SQL Server Management Studio application.
-
Click Connect.
-
At the top level of the Object Explorer pane, click the + symbol next to servername\instance.
-
Click the + symbol next to Databases.
-
Right-click your Secret Server database and select New Query from the dialog.
-
In the SQL Query pane that opens, paste the following query:
CopySELECT * from tbVersion
ORDER BY CAST(REPLACE(VersionNumber, '.', '') AS INT) DESC; -
Click Execute.
-
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
.