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.

The procedures in this section apply to the Professional and Platinum editions of the Verify Privilege Vault on-premises application.

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

  1. Log into the web server where the Verify Privilege Vault 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 Verify Privilege Vault 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 Verify Privilege Vault 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 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

  1. Open a PowerShell prompt on the machine(s) running isvp-vault.

  2. 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