I am receiving the following error when I attempt to run New-SPConfigurationDatabase on Windows Server 2012. This is going to be a 4 server farm with a SQL 2012 database. I am running the command in administrative sharepoint powershell, logged in as a user that has sysadmin permissions to the database, along with the farm user having full sysadmin to the database. The command runs for a second before erroring, and it actually creates the config db along with its tables on the SQL server. I'm not getting any events in the windows error logs on either the server the command is running on or the sql server.
The Sharepoint 2013 installer had the Dec 2012 CU slipstreamed into them before I installed. And I installed using AutoSPInstaller (to the point where this was the error that it was giving, so I isolated the command from the script to track down the problem
further).
Command that causes the problem:
New-SPConfigurationDatabase -DatabaseName "13_Config" -DatabaseServer "SharePoint_SQL12" -AdministrationContentDatabaseName "13_Content_Admin" -Passphrase $secPhrase -FarmCredentials $farmCredentialError:
New-SPConfigurationDatabase : Failed to call GetTypes on assembly Microsoft.Office.InfoPath.Server, Version=15.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c. Derived method 'RequiresWebPartClientScript' in type 'Microsoft.Office.InfoPath.Server.Controls.WebUI.BrowserFormWebPart' from assembly 'Microsoft.Office.InfoPath.Server, Version=15.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c' cannot reduce access. At line:1 char:1+ New-SPConfigurationDatabase -DatabaseName "13_Config" -DatabaseServer"Shar ...+ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~~+ CategoryInfo : InvalidData: (Microsoft.Share...urationDatabase: SPCmdletNewSPConfigurationDatabase) [New-SPConfigurationDatabase], SPUpgra deException+ FullyQualifiedErrorId : Microsoft.SharePoint.PowerShell.SPCmdletNewSPCon figurationDatabase
Any help is greatly appreciated, as googleing this error doesn't seem to result in anybody else having this problem.
Thanks in advance!
-Alex