AuditWizard - Administration - General - How to Find the Version Number

From Layton Support
Revision as of 04:23, 12 September 2018 by Jpainter (Talk | contribs)

Jump to: navigation, search

Btn back up.png Back to Contents

Contents

Application Version

Info Dialog

In AuditWizard, click the Info button Aw icon info.png. The Info dialog will open. The version number appears next to the annotation Version:. The contents of the Modules pane can be copied.

Aw ver 01.png

Programs and Features Control Panel

If you can't launch AuditWizard, open the Windows Programs and Features control panel.

Aw ver prog feat01.png


One or two entries for AuditWizard will be present. If the entry AuditWizard X.X.X Update appears, the number in the name is the current version. This entry appears when AuditWizard is updated from an older version.

If only AuditWizard v8 appears, then the currently installed version is listed in the Version column. The full installer records this entry.

File Properties

You can also get the version number from the Properties of the AuditWizard application file.

  1. Navigate to C:\Program Files\AuditWizard v8\.
  2. Get Properties on AuditWizardv8.exe.
  3. Read the Product version.

Database Version

Type of Database

There are two types of database that may be in use, the built-in SQL Compact database that is installed and active on first launch, or a SQL Server database.

From within AuditWizard

Go to Administration > General > Database Maintenance. The version and database name will appear under the section Change Database:

Aw admin gen verdb01.png

If the database in use is the embedded database installed on first use, the Data Source will be:

   C:\Program Files (x86)\AuditWizard v8\db\aw_db.sdf

If a SQL Server database is in use, the Data Source will be:

   SERVER\INSTANCE, Database : AuditWizard

Note that the server name may or may not have an instance, and the database name, by default, is AuditWizard, though it may be different.

From Configuration Files

If you can't launch AuditWizard, follow these steps to determine which type of SQL database is in use:

  1. In Windows Explorer, go to C:\Program Files (x86)\AuditWizard v8\.
  2. Open AuditWizardv8.exe.config in Notepad.
  3. Search for the string CompactDatabaseType.

If the value is True, then the SQL Compact database is in use. It's called aw_db.sdf and is located in C:\Program Files (x86)\AuditWizard v8\db\. If the value is False, then a SQL Server database is in use. You can tell where this is with the tags:

  • ConnectionStringExpressDataSource: SQL Server name
  • ConnectionStringExpressDataSource: SQL database name

Database Version Number

The version of the database may be different to that of the application. The database structure may not need to be modified between versions. In terms of disaster recovery, the same application version could be installed and connected to the database.

In the database table VERSION, there is a single row. The version number is a concatenation of the _MAJOR and _MINOR columns. This SQL query will also return the version number:

Versions Prior to 8.4.5

   SELECT CAST (_MAJOR AS NVARCHAR(5)) + '.'
   + CAST (_MINOR AS NVARCHAR(5))
   AS "AuditWizard Database Version"
   
   FROM [VERSION]

Note that, due to a known issue, in some cases this table will contain no records.

Versions After and Including 8.4.5

   SELECT CAST (_MAJOR AS NVARCHAR(5)) + '.'
   + CAST (_MINOR AS NVARCHAR(5)) + '.'
   + CAST (_REVISION AS NVARCHAR(5))
   AS "AuditWizard Database Version"
   
   ,CASE WHEN _PATCHVERSIONCHANGED = 1 then 'Yes' ELSE 'No'
   END AS 'Database Format Changed?'
  
   FROM [VERSION]

Scanner Version

The version of the Scanner may be different to that of the application. The release notes will tell you if you have to redeploy the Scanner after update.

On the Server

The master Scanner is stored in the AuditWizard Program Files folder and is deployed to the network share. When the Scanner is updated, it must be copied here first, otherwise deploying will deploy the older version.

  1. Navigate to C:\Program Files (x86)\AuditWizard v8\.
  2. Get Properties on AuditScanner.exe.
  3. Click the Details tab.

    Aw admin gen ver scan01.png


  4. As of 8.4.4.6, the version is the Product Version.
  5. Prior to 8.4.4.6, the version is the File Version.

In the Network Share

Once deployed, the version in the network share can be checked.

  1. Navigate to your AuditWizard network share.
  2. Open the scanner folder.
  3. Get Properties on the AuditScanner.exe file.
  4. Click the Details tab.
  5. As of 8.4.4.6, the version is the Product Version.
  6. Prior to 8.4.4.6, the version is the File Version.

Agent Version

The version of the Agent may be different to that of the application. The release notes will tell you if you have to redeploy the Agent after update.

On the Server

  1. Navigate to C:\Program Files (x86)\AuditWizard v8\AuditAgent\
  2. Get Properties on AuditAgent.exe.
  3. Click the Details tab.

    Aw admin gen ver agent01.png


  4. From 8.4.4.6, the version is the Product Version.
  5. Prior to 8.4.4.6, note the Date modified.

On the Client

By Auditing

  1. In AuditWizard Network View, check status.
  2. If the Agent is deployed, audit the computer.
  3. Upload the audit file.
  4. Click the computer in the left-hand pane.
  5. In the Summary tab on the right, the Scanner Type will be AuditAgent and the version number will be given.

By File Properties

  1. Navigate to C:\Windows\System32\.
  2. Get Properties on AuditAgent.exe.
  3. Click the Details tab.

    Aw admin gen ver agent01.png


  4. As of 8.4.4.6, the version is the Product Version.
  5. Prior to 8.4.4.6, note the Date modified.

Btn back up.png Back to Contents

Personal tools
Namespaces

Variants
Actions
Main Page
Online User Guides
General Support
Release Notes
Toolbox