Hi
I have the following sql2012 answerfile
;SQL Server 2012 Configuration File
[OPTIONS]
ACTION="AddNode"
IAcceptSQLServerLicenseTerms="True"
ENU="True"
QUIET="False"
QUIETSIMPLE="True"
UpdateEnabled="True"
UpdateSource="MU"
HELP="False"
INDICATEPROGRESS="False"
X86="False"
INSTANCENAME="MSSQLSERVER"
SQMREPORTING="False"
FAILOVERCLUSTERGROUP="SQL Server (MSSQLSERVER)"
CONFIRMIPDEPENDENCYCHANGE="False"
FAILOVERCLUSTERIPADDRESSES="IPv4;10.68.130.78;Cluster Network 2;255.255.255.0"
FAILOVERCLUSTERNETWORKNAME="BABYSEAL-01"
AGTSVCACCOUNT="DOMAIN1\sql_agent_service_acct"
AGTSVCPASSWORD="Passw0rd!"
SQLSVCACCOUNT="DOMAIN1\sql_svc_service_acct"
SQLSVCPASSWORD="Passw0rd!"
FTSVCACCOUNT="NT Service\MSSQLFDLauncher"
When i run this locally on the cluster partner node it installs and everything is great. Im installing it using the following command
c:\sql2012-source1\setup.exe /ConfigurationFile=c:\sql2012-source1\configFile_partner.ini
When i try and execute it remotely from a powershell script from the primary cluster node the installation fails. The command i run there is as follows:
PS C:\invoke-command -computername 'clus-test02' -script {& "c:\sql2012-source1\setup.exe" /ConfigurationFile=c:\sql2012-source1\configFile_partner.ini}
The installation does not seem to create the full set of bootstrap logs. In fact the only log created is the Detail_GlobalRules file and it always seems to end at the following point:
(01) 2012-07-25 02:45:24 Slp: Init rule target object: Microsoft.SqlServer.Configuration.SetupExtension.AclPermissionsFacet
(01) 2012-07-25 02:45:24 Slp: Launching external tool: C:\Program Files\Microsoft SQL Server\110\Setup Bootstrap\SQLServer2012\x64\FixSqlRegistryKey_x64.exe
(01) 2012-07-25 02:45:24 Slp: ------------------------------------------------------------
Anyone have any ideas what is going on?