Exchange 2010安装在Server 2008上失败

我试图在全新安装的Server 2008上安装Exchange 2010.我相信我具有正确configuration的所有服务器angular色和function,但是出现此错误:


摘要:12项目。 0成功,1失败。 已用时间:00:04:07

组织准备失败

错误:“$ error.Clear();

$acceptedDomains = @{}; Get-AcceptedDomain | foreach { $domainName = $_.DomainName.ToString(); if ($acceptedDomains.Contains($domainName)) { Write-ExchangeSetupLog -Warning "Duplicate AcceptedDomain found. '$($acceptedDomains[$domainName])' and '$($_.Name)' both reference domain '$domainName'"; } else { $acceptedDomains.Add($domainName, $_.Name); }; }; function getSmtpTemplates ([string]$property) { $input | Select-Object -ExpandProperty $property | Where-Object {$_.PrefixString -eq "SMTP"} | Foreach-Object {$_.AddressTemplateString -replace ".*@", ""}; } function addDomains ([Microsoft.Exchange.Data.Directory.SystemConfiguration.AcceptedDomainType]$domainType) { $domain = $null; $input | Where-Object {-not $acceptedDomains.ContainsKey($_)} | Where-Object {[Microsoft.Exchange.Data.SmtpDomainWithSubdomains]::TryParse($_, [ref] $domain)} | Foreach-Object { $name = $domain.ToString(); if ($name.Length -gt 64) { $name = $name.Substring(0, 64) }; if ($acceptedDomains.ContainsValue($name) ) {$name = [System.Guid]::NewGuid().ToString()}; new-AcceptedDomain -Name:$name -DomainName:$domain -DomainType:$domainType; $acceptedDomains[$domain.ToString()] = $name; }; } $emailAddressPolicies = Get-EmailAddressPolicy; $emailAddressPolicies | getSmtpTemplates "NonAuthoritativeDomains" | addDomains "InternalRelay"; $emailAddressPolicies | getSmtpTemplates "EnabledEmailAddressTemplates" | addDomains "Authoritative"; " was run: "The property value is invalid. The value can't contain leading or trailing whitespace. Property Name: Name". 

该属性值无效。 该值不能包含前导或尾随空格。 物业名称:名称已逝时间:00:04:07


任何帮助将不胜感激!

在Exchange 2003中,打开“Exchange系统pipe理器”,导航到“收件人”>“收件人策略”,find具有尾部空格的收件人策略(默认值除外)。 右键单击该策略并select重命名,删除其名称后的空格。

这个尾随的白色空间是什么导致这个问题。

这是Exchange 2007中的一个已知问题,其中一个收件人策略中的DN包含stream氓空白。

看看这个http://technet.microsoft.com/en-us/library/dd233089(EXCHG.80).aspx ,看看使用ADSIedit的策略是什么。