General Notes | Database Installation | Polling Server Installation | Desktop Client Installation
General Notes About This Installation Guide
In scripts, bold items within square braces [] (e.g. [user-specified-data:default-value]) indicate user-supplied information that will need to be modified to fit your particular installation.
Database Installation
Windows User Requirements | Quick Installation | Detailed Installation
This section describes how to download and install an empty database for the Visual Casino application to use.
Windows User Requirements
This activity requires that the windows user has permission to create both databases and users in the target database server instance.
SQL Server Service Configuration Requirements
Visual Casino requires the following settings configured in order to operate properly:
- SQL Server Authentication must allow SQL Server Authentication (https://docs.microsoft.com/en-us/sql/relational-databases/security/choose-an-authentication-mode?view=sql-server-2017)
- SQL Server must have TCP/IP Networking Enabled (https://docs.microsoft.com/en-us/sql/database-engine/configure-windows/enable-or-disable-a-server-network-protocol?view=sql-server-2017)
Quick Installation
- On your SQL server, download the database from: https://www.biometrica.com/download/visual-casino-7-database/
- Restore the database to your SQL server
IF NOT EXISTS (SELECT * FROM dbo.sysdatabases WHERE [name]='VisualCasino')
BEGIN
RESTORE DATABASE VisualCasino
FROM DISK='[C:\PATH\TO\DATABASE\BACKUP]\VisualCasino6Empty2005v72.bak'
WITH RECOVERY,
MOVE 'VisualCasino_Data' TO '[C:\PATH\TO\DATABASE\RESTORE\LOCATION]\VisualCasino.mdf',
MOVE 'VisualCasino_Log' TO '[C:\PATH\TO\LOG\RESTORE\LOCATION]\VisualCasino_log.ldf';
END
GO -
On your SQL server, download and run the following script: https://support.biometrica.com/hc/article_attachments/360013668593/setup-sqlexpress.sql
Detailed Installation
- On your SQL server, download the database from https://www.biometrica.com/download/visual-casino-7-database/
- Restore the database to your SQL server
IF NOT EXISTS (SELECT * FROM dbo.sysdatabases WHERE [name]='VisualCasino')
BEGIN
RESTORE DATABASE VisualCasino
FROM DISK='[C:\PATH\TO\DATABASE\BACKUP]\VisualCasino6Empty2005v72.bak'
WITH RECOVERY,
MOVE 'VisualCasino_Data' TO '[C:\PATH\TO\DATABASE\RESTORE\LOCATION]\VisualCasino.mdf',
MOVE 'VisualCasino_Log' TO '[C:\PATH\TO\LOG\RESTORE\LOCATION]\VisualCasino_log.ldf';
END
GO -
Add an SQL User with the username of VisualCasino
IF NOT EXISTS (SELECT * FROM master.dbo.syslogins WHERE [name]= N'VisualCasino')
BEGIN
CREATE LOGIN VisualCasino WITH PASSWORD = '[password:VisualCasino]'
END
GO - Make the VisualCasino user an owner of the VisualCasino database
-
USE VisualCasino;
GO
IF NOT EXISTS (SELECT * FROM sys.database_principals WHERE [name]=N'VisualCasino')
BEGIN
CREATE USER VisualCasino FOR LOGIN VisualCasino
EXEC sp_addrolemember N'db_owner', N'VisualCasino'
END
GO - Make the VisualCasino database the default database for the VisualCasino user
-
EXEC sp_defaultdb @loginame='VisualCasino', @defdb='VisualCasino'
Polling Service Installation and Initial Setup
Windows User Requirements | Quick Installation | Detailed Installation | Initial Setup
This section describes how to install the Visual Casino application on the Polling Server and how to configure the polling server to run for Visual Casino 7
Windows User Requirements
Some portions of the installation and configuration will require the user to be able to install Applications and Services onto the machine performing the polling service. This will require Administrative access to the machine and may require the assistance of your organization's IT department.
Quick Installation
- Download the installer from: https://www.biometrica.com/download/visual-casino-7-windows-installer/
- Run the installer
Detailed Installation
Initial Setup
Application Setup | SIN/UMbRA Service Setup | CID Service Setup | DBINIT Creation
Application Setup
- Set the Server field to point to the Machine Name\InstanceName for the Database installed in the previous section. NOTE: If a password other than the default password was used, you will need to create a DBINIT file - see the DBINIT Creation section for this process.
- Select the Local Authentication radio button
- Enter the user name Administrator
- Enter a blank password
- Click Connect
- Enter the Customer ID provided by Biometrica Systems, Inc.
- Contact Biometrica Systems, Inc. and provide them with your Customer Key
- Once Biometrica Systems, Inc. has acknowledged entering your Customer Key, Select Web Update
- Once the update succeeds, Close the License Manager window using the X at the top right of the window
- Enter a new password for the Administrator user - this is the root Administrator account and should only be used in emergencies.
SIN/UMbRA Service Setup
- Select Administration > System Settings > SIN Settings ...
- Click New to create a new Property
- Choose the Property for your installation from the dropdown menu
- Select the Old Polling Mode radio button
- Enter the SIN Station ID provided by Biometrica Systems, Inc.
- Enter the Account Name provided by Biometrica Systems, Inc.
- Enter the SIN Password provided by Biometrica Systems, Inc.
- Enter the following in SIN Server: https://sin.biometrica.com/ipsin
- Set the Polling Interval to 5 minutes
- Set the SIN Polling Machine to the local machine's name (this should be displayed below the field)
- Select Test - this should respond with Success. If it does not, contact Biometrica Systems, Inc.
- Select the New SSIN Polling Mode radio button at the top
- Enter the following in SSIN Server: https://ssin.biometrica.com
- In SSIN Username, enter your SIN Station ID followed by helpdesk@biometrica.com
- in SSIN Password, enter the SIN Password provided by Biometrica Systems, Inc.
- Select Disable VC6 SIN Polling
- Click Test - this should respond with Success. If it does not, contact Biometrica Systems, Inc.
- Click OK
CID Service Setup
- Select Administration > System Settings > CID Settings ...
- Set the Polling Interval to 60 minutes
- Enter the name of the local machine in the Polling Machine field
- Set the Download Preference to Download and Update
- Set the CID Update URL to: https://cid.biometrica.com
- Click OK
- Select Administration > Advanced Settings
- Select Settings > Service Settings > Service Setup from the left-hand tree
- Un-check the box for Install SIN Service
- Check the box for Install CID Service
- Click Install
- Click Cancel
DBINIT Creation (Optional)
In cases where the default database password is not used, a DBINIT file must be created in order for Visual Casino to access the application. This file can also be used to speed up configuration of new desktop clients. The DBINIT file is encrypted so that it cannot be easily read outside the Visual Casino application.
- On the login page, select Create DB Init File
- in Server, enter the MachineName\InstanceName for the database server
- In Database, enter VisualCasino
- In Username, enter VisualCasino
- In Password, enter the password created for the VisualCasino user (default is VisualCasino)
- Re-enter the Password in the Confirm Password field
- Click Save
- enter a name for the file (e.g. mydatabase.dbinit) and save it
- Close the DB Init. File Editor window using the X in the top right corner
This file is saved in the folder C:\ProgramData\VisualCasino6\ and can be copied to this folder on new installations. The file will be automatically detected by Visual Casino.
Desktop Client Installation
Windows User Requirements | Quick Installation
Windows User Requirements
In order to install the application, you must have permission to add and remove programs from the workstation.
Quick Installation
- Download the installer from: https://www.biometrica.com/download/visual-casino-7-windows-installer/
- Run the installer
- Set the Server field to point to the Machine Name\InstanceName for the Database installed in the previous section. NOTE: If a password other than the default password was used, you will need to create a DBINIT file - see the DBINIT Creation sub-section in the Polling Service Installation and Initial Setup section for this process.
- Log in to the application.
If you experience issues installing Visual Casino 7 on a machine, please consult our troubleshooting section at: https://support.biometrica.com/hc/en-us/articles/1500001441141-Troubleshooting-Installation-Errors