XenDesktop控制台打开慢

通常我们在安装好XenDesktop ,需要打开Desktop Studio大概需要等待30秒以上,而且弹出来可能会提示出错,提示您“是否卸载MMC控制台”。这个比较讨厌,在官方搜索到了解决方法。微软比较坑爹,每次打开控制台都需要验证Authenticode签名,导致打开速度异常缓慢。这就需要修改三个地方。

解决方法:

在安装DDC控制器Windows Server 2008 上,打开C:\Windows\System32

新建“记事本.txt”修改为“mmc.exe.config”以.config为后缀名的文件,用记事本打开复制一下内容,带#号不要复制:

#For 32-bit Windows Installations:  

# Create a file in C:\windows\system32\mmc.exe.config.

 

#Place the following text inside the file and save it:
 
<?xml version="1.0" encoding="utf-8"?>
<configuration>
<runtime>
<generatePublisherEvidence enabled="false" />
</runtime>
</configuration>

 

#For 64-bit Windows Installations:  

# Create a file in C:\Windows\SysWOW64\mmc.exe.config.

 

#Place the following text inside the file and save it:
 
<?xml version="1.0" encoding="utf-8"?>
<configuration>
<runtime>
<generatePublisherEvidence enabled="false" />
</runtime>
</configuration>

 

在XenDESTKTOP上C:\Program Files\Citrix\Desktop Studio下,新建LaunchConsole.exe.config

<?xml version="1.0" encoding="utf-8"?>
<configuration>
<runtime>
<generatePublisherEvidence enabled="false" />
</runtime>
</configuration>

保存即可;

其实复制这几段内容都是一样的,只是放置的位置和文件名不同罢了!最好将DDC重启下。

官方KB:CTX120115

 

 

你可能感兴趣的:(windows,安装,Desktop,控制台,记事本)