diff --git a/build-support/appveyor-set-sql-alias-for-springqa.ps1 b/build-support/appveyor-set-sql-alias-for-springqa.ps1 index bbac680a..0d53ceb2 100644 --- a/build-support/appveyor-set-sql-alias-for-springqa.ps1 +++ b/build-support/appveyor-set-sql-alias-for-springqa.ps1 @@ -29,12 +29,12 @@ $TCPAlias = "DBMSSOCN," + $ServerName + "\" + $InstanceName $NamedPipesAlias = "DBNMPNTW,\\" + $ServerName + "\pipe\" + "MSSQL$" + $InstanceName + "\sql\query" #Creating our TCP/IP Aliases -#New-ItemProperty -Path $x86 -Name $AliasName -PropertyType String -Value $TCPAlias -Force -#New-ItemProperty -Path $x64 -Name $AliasName -PropertyType String -Value $TCPAlias -Force +New-ItemProperty -Path $x86 -Name $AliasName -PropertyType String -Value $TCPAlias -Force +New-ItemProperty -Path $x64 -Name $AliasName -PropertyType String -Value $TCPAlias -Force #WARNING: left here in case we ever want to switch to named-piped, but since we can't have two aliases # named the same for two diff. conn. protcols, this is commented out here in favor of the TCPIP alias above #Creating our Named Pipes Aliases -New-ItemProperty -Path $x86 –Name $AliasName -PropertyType String -Value $NamedPipesAlias -New-ItemProperty -Path $x64 –Name $AliasName -PropertyType String -Value $NamedPipesAlias \ No newline at end of file +#New-ItemProperty -Path $x86 –Name $AliasName -PropertyType String -Value $NamedPipesAlias +#New-ItemProperty -Path $x64 –Name $AliasName -PropertyType String -Value $NamedPipesAlias \ No newline at end of file