Hello,
I am unable to upgrade to sp3 on an Exchange server 2010. It fails while upgrading the Hub Transport with the below error. The Server is running Windows 2008R2.
The following error was generated when
"$error.Clear();
$vdirName = "PowerShell (Default Web Site)";
$proxyVdirName = "PowerShell-Proxy (Default Web Site)";
$InternalPowerShellUrl="http://" + $RoleFqdnOrName + "/powershell";
$vdir = get-PowerShellVirtualDirectory -server $RoleFqdnOrName -DomainController $RoleDomainController | where { $_.Name -eq $vdirName };
$proxyVdir = get-PowerShellVirtualDirectory -server $RoleFqdnOrName -DomainController $RoleDomainController | where { $_.Name -eq $proxyVdirName };
if ($vdir -ne $null -or $proxyVdir -ne $null)
{
update-PowerShellVirtualDirectoryVersion -DomainController $RoleDomainController;
}
if ($vdir -eq $null)
{
$vdirName = "PowerShell";
new-PowerShellVirtualDirectory $vdirName -InternalUrl $InternalPowerShellUrl -DomainController $RoleDomainController -BasicAuthentication:$false -WindowsAuthentication:$false -RequireSSL:$false;
}
else
{
Set-PowerShellVirtualDirectory $vdirName -InternalUrl $InternalPowerShellUrl -DomainController $RoleDomainController -WindowsAuthentication:$false -RequireSSL:$false;
}
if ($proxyVdir -eq $null)
{
$proxyVdirName = "PowerShell-Proxy";
new-PowerShellVirtualDirectory $proxyVdirName -DomainController $RoleDomainController -BasicAuthentication:$false -WindowsAuthentication:$true -RequireSSL:$true -AppPoolId "MSExchangePowerShellProxyAppPool" -Path ($RoleInstallPath + "ClientAccess\PowerShell-Proxy");
}
else
{
Set-PowerShellVirtualDirectory $proxyVdirName -DomainController $RoleDomainController -WindowsAuthentication:$true -RequireSSL:$true;
}
" was run: "A failure occurred while trying to update metabase properties.".
A failure occurred while trying to update metabase properties.
The system cannot find the path specified.
Click here for help... http://technet.microsoft.com/en-US/library/ms.exch.err.default(EXCHG.141).aspx?v=14.3.123.3&e=ms.exch.err.Ex88D115&l=0&cl=cp
Any pointers on how to correct the problem would be much appreciated.
Thanks,
Michael