在安装XenApp5的时候,可能会因为补丁打的太多,而导致看不到Farm,也就是Farm在Access Management Console中消失了。
在Run Discovery以后,只能看到下图,而看不到正常的Farm信息。
该问题是由于.Net Framework 2.0的一个安全更新KB976576导致Access Management Console所需要的一些DLL未注册。解决该问题,请运行以下代码。
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 | %windir%\microsoft.net\framework\v2.0.50727\regasm /codebase “%programfiles%\Common Files\Citrix\Presentation Server – Administration Snap-in\pse.core.dll” %windir%\microsoft.net\framework\v2.0.50727\regasm /codebase “%programfiles%\Common Files\Citrix\Access Management Console – Dashboard Watcher\DWExtension.dll” %windir%\microsoft.net\framework\v2.0.50727\regasm /codebase “%programfiles%\Common Files\Citrix\Access Management Console – Diagnostics\CdfExtension.dll” %windir%\microsoft.net\framework\v2.0.50727\regasm /codebase “%programfiles%\Common Files\Citrix\Access Management Console – Knowledge Base\KnowledgeBaseExtension.dll” %windir%\microsoft.net\framework\v2.0.50727\regasm /codebase “%programfiles%\Common Files\Citrix\Access Management Console – Hotfix Management\HotfixExtension.dll” %windir%\microsoft.net\framework\v2.0.50727\regasm /codebase “%programfiles%\Common Files\Citrix\Access Management Console – Legacy Tools\MMCPlugins\LegacyToolsExt\CMCLaunchExtension.dll” %windir%\microsoft.net\framework\v2.0.50727\regasm /codebase “%programfiles%\Common Files\Citrix\Access Management Console – Report Center\ReportCentreExtension.dll” %windir%\microsoft.net\framework\v2.0.50727\regasm /codebase “%programfiles%\Common Files\Citrix\Access Management Console – Web Interface\WIExt.dll” %windir%\microsoft.net\framework\v2.0.50727\regasm /codebase “%programfiles%\Common Files\Citrix\License Server – Administration Snap-in\LicensingExtension.dll” |