Finding the Version Number of Your Verify Privilege Vault Release
There are several ways to find the version number of your Verify Privilege Vault release, which are detailed below.
Through Verify Privilege Vault
You can find the version number of your Verify Privilege Vault release from any Verify Privilege Vault 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 Verify Privilege Vault application is installed.
-
Open Windows File Explorer.
-
Navigate to
C:/inetpub/wwwroot/SecretServer/bin -
Right-click the
Thycotic.ihawu.Business.dllfile and select Properties. -
In the Properties dialog, click the Details tab, which displays information including your product version.
Through SQL
-
Log into your Verify Privilege Vault 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 Verify Privilege Vault 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 Verify Privilege Vault release in the top row.
Through the API
You can also use the REST API to check the version of Verify Privilege Vault using the endpoint GET /v1/version.
Through PowerShell
-
Open a PowerShell prompt on the machine(s) running isvp-vault.
-
Run the following command, changing the drive and/or path as required:
(Get-Item C:\inetpub\wwwroot\SecretServer\bin\Thycotic.ihawu.Business.dll).VersionInfo.FileVersion