If you intend to connect to the HotDocs Hub databases without a username 
 and password (for example, using an application pool identity), you must 
 edit the Invoke Powershell script used during Hub 
 installation.
To edit the Invoke Powershell script to use Integrated Security
	- Edit the Invoke.ps1 Powershell 
	 script supplied with the Hub installer files.
 
	- Remove the Mandatory = $true text 
	 for the following parameters:
 
	
		- $SqlPass – for 
		 example, [Parameter()] [string] 
		 $SqlPass
 
		- $SqlUser – for 
		 example, [Parameter()] [string] 
		 $SqlUser
 
	
	- Edit the connection strings for the following variables to use 
	 integrated security:
 
	
		- $ConnectionStringPermissions 
		 
 
		- $ConnectionStringTenancyResolver 
		 
 
		- $ConnectionStringIdentityStore 
		 
 
		- $ConnectionStringInterviews 
		 
 
		- $ConnectionStringTemplates 
		 
 
		- $ConnectionStringAnswers
 
	
For example:
$ConnectionStringPermissions = "Server=$SqlServer;Database=Permissions;Integrated Security=true;"