Hello,
Had the same problem here: SP2010SP1 Slipstreamed with June 2012 and OWA slipstreamed with SP1.
I changed the AutoSPInstallerFunctions.ps1 (v3.2) like this:
Original:
Stefan.
Had the same problem here: SP2010SP1 Slipstreamed with June 2012 and OWA slipstreamed with SP1.
I changed the AutoSPInstallerFunctions.ps1 (v3.2) like this:
Original:
#Region Create or Join Farm
# ===================================================================================
# Func: CreateOrJoinFarm
# Desc: Check if the farm is created
# ===================================================================================
Function CreateOrJoinFarm([xml]$xmlinput, $secPhrase, $farmCredential)
{
WriteLine
$configDB = $dbPrefix+$xmlinput.Configuration.Farm.Database.ConfigDB
Changed:#Region Create or Join Farm
# ===================================================================================
# Func: CreateOrJoinFarm
# Desc: Check if the farm is created
# ===================================================================================
Function CreateOrJoinFarm([xml]$xmlinput, $secPhrase, $farmCredential)
{
WriteLine
Write-Host "Addition: running PSCONFIG to prevent script break..."
Start-Process -FilePath $PSConfig -ArgumentList "-cmd upgrade -inplace b2b -wait -force" -NoNewWindow -Wait
Write-Host "Addition: running PSCONFIG to prevent script break... DONE"
Start-sleep 10
$configDB = $dbPrefix+$xmlinput.Configuration.Farm.Database.ConfigDB
Hope this helps somebody!Stefan.