Hello,
i can't install Exchange 2013. Setup failed at Step Mailbox role: Transport Service.
The error message is:
Error:
The following error was generated when "$error.Clear();
$maxWait = New-TimeSpan -Minutes 8
$timeout = Get-Date;
$timeout = $timeout.Add($maxWait);
$currTime = Get-Date;
$successfullySetConfigDC = $false;
while($currTime -le $timeout)
{
$setSharedCDCErrors = @();
try
{
Set-SharedConfigDC -DomainController $RoleDomainController -ErrorVariable setSharedCDCErrors -ErrorAction SilentlyContinue;
$successfullySetConfigDC = ($setSharedCDCErrors.Count -eq 0);
if($successfullySetConfigDC)
{
break;
}
Write-ExchangeSetupLog -Info ("An error ocurred while setting shared config DC. Error: " + $setSharedCDCErrors[0]);
}
catch
{
Write-ExchangeSetupLog -Info ("An exception ocurred while setting shared config DC. Exception: " + $_.Exception.Message);
}
Write-ExchangeSetupLog -Info ("Waiting 30 seconds before attempting again.");
Start-Sleep -Seconds 30;
$currTime = Get-Date;
}
if( -not $successfullySetConfigDC)
{
Write-ExchangeSetupLog -Error "Unable to set shared config DC.";
}
" was run: "Unable to set shared config DC.".
I have a new 2012 Domain with 2 Domaincontrollers. The systems are running as VM's and IP v6 is enabled.
The OS where Exchange should be installed is Windows 2012 Server und the Installationsource is Exchange 2013 RTM.
The Installationaccount is in the Schema-,- Enterprise- and Domain-Admin Group.
I have installed the remote Management Tools on the Exchange Server.
Install-WindowsFeature RSAT-ADDS
I prepared the AD with the following commands:
setup.exe /prepareschema /IAcceptExchangeServerLicenseTerms
setup.exe /prepareAD /OrganizationName:myorgname /IAcceptExchangeServerLicenseTerms
setup.exe /PrepareDomain/IAcceptExchangeServerLicenseTerms
At leased i installed the prerequisites and components discribed in the followind TechNet article
http://technet.microsoft.com/de-DE/library/bb691354.aspx
I have done the Installation multible times without success!!!
For uninstallation and cleanup i used the steps described here:
Any ideas what's wrong?
Thanks in advance
Guido