eMbedded Visual C++ 安装配置

eMbedded Visual C++ 4.0下载地址
http://download.microsoft.com/download/WindowsCENETPlatformBuilder/Install/4.0/NT5XP/EN-US/eVC4.exe

Latest Service Pack for eMbedded Visual C++ 4.0 is Service Pack 4

http://www.microsoft.com/downloads/details.aspx?FamilyID=4a4ed1f4-91d3-4dbe-986e-a812984318e5&displaylang=en

Service Pack 4 (SP4) allows existing eVC4 users to target Windows CE 5.0 based devices. In addition to supporting the new Windows CE 5.0 platform, SP4 is cumulative in nature and includes support for Windows CE 4.0, 4.1 and 4.2 based platforms as well. This download must be installed on top of existing eVC4 installations.

 

Use the following CD key when installing this software: TRT7H-KD36T-FRH8D-6QH8P-VFJHQ

 

EVC安装完成以后可能会遇到一些问题。

当模拟器在启动时,会出现一个标题为“Emulator for Windows CE”的消息框,消息文本为“One or more files from the Emulator for Windows CE installation is missing.Please reinstall Emulator for Windows CE and try again.” 出现这个消息框之后,连接或部署到模拟器会失败

如模拟器启动不起来。每次开机时出现如下图所示的提示对话框。

并且在设备管理器中出现如下图所示情况


出现这种情况的主要原因就是Virtual PC/Windows CE Emulator与物理地址扩展(PAE)有冲突。PAE主要是使系统能使用4GB以上的内存,一般来说基本上没有用,所以直接禁用PAE即可。确认PAE是否工作的方式如下图所示,如果显示“物理地址扩展”,就说明PAE启动了。


禁用PAE的方法即修改boot.ini文件中的内容(注意红色部分)

在“运行”里输入“sysdm.cpl”。其实就是系统属性。

点击“高级”下的“启动和故障恢复”选项的“设置”
在弹出的对话框里点击“编辑”其实就是调出了“boot.ini”,如果有别的方法进入boot.ini也可以。关键下一步,把里面的“/nonexecute”改成“/execute”。保存。重启。然后SDK就可以用了。

原来Boot.ini文件的内容

[boot loader]

timeout=2

default=multi(0)disk(0)rdisk(0)partition(1)\WINDOWS

[operating systems]

multi(0)disk(0)rdisk(0)partition(1)\WINDOWS="Microsoft Windows XP Professional" /noexecute=optin /fastdetect

修改后的Boot.ini文件的内容

[boot loader]

timeout=2

default=multi(0)disk(0)rdisk(0)partition(1)\WINDOWS

[operating systems]

multi(0)disk(0)rdisk(0)partition(1)\WINDOWS="Microsoft Windows XP Professional" /execute=optin /fastdetect

修改完成以后,保存,并重启机器就不会出现异常了,模拟器也能正常启动。

 

本文部分来自CSDN博客,转载请标明出处:http://blog.csdn.net/Q_spring/archive/2009/04/21/4098556.aspx

本文部分来自CSDN博客,转载请标明出处:http://blog.csdn.net/tt89381585/archive/2009/12/11/4986760.aspx

posted @ 2010-07-16 11:04  Rex..  阅读(1589)  评论(0编辑  收藏  举报