解决citrix 4.0上.net2.0共存的问题
如何解决.Net2.0的问题
2007-1-2整理
由于用友系统已经开始在基于.net2.0上,所以在部署Citrix Web Interface会出现Configuration files for this site could not be read的错误,解决办法是:
在\windows\system32中创建一个“mmc.exe.config”的文件,文件内容为:
<?xml version ="1.0"?>
<configuration>
<startup>
<requiredRuntime version="v1.1.4322"/>
<supportedRuntime version="v1.1.4322"/>
</startup>
</configuration>
再次打开access managment console.就不会有报错了