1. [发现问题] 安装Articulate Presenter '09之后,打开时报错:Unable to find a version of the runtime to run this application. 错误标题是:.Net Framework Initialization Error。

    2. [分析问题] 从错误提示来看,应该是.NET CLR版本兼容性的问题,我的机器上安装了VS2010,所以CLR应该是v4。而系统是Windows 7 64bit,应该自带了CLR v2,Presenter ’09可能不支持v4使用Visual Studio 2010 SDK的命令:ClrVer.exe验证了一下:

D:\Program Files (x86)\Microsoft Visual Studio 10.0\VC>clrver Versions installed on the machine:

v2.0.50727

v4.0.30319

    3. [解决问题] 解决问题出人意料的顺利:在目标文件Presenter.exe所在的目录新建配置文件Presenter.exe.config:

<configuration>
  <startup>
    <supportedRuntime version="v2.0.50727"/>
  </startup>
</configuration>

相关文章:

  • 2021-05-17
  • 2021-07-26
  • 2022-12-23
  • 2022-01-31
  • 2021-09-22
  • 2021-08-18
  • 2021-05-06
  • 2022-02-21
猜你喜欢
  • 2021-09-10
  • 2022-12-23
  • 2022-12-23
  • 2021-12-06
  • 2021-05-19
  • 2022-12-23
  • 2022-12-23
相关资源
相似解决方案