关于WinCE6.0平台搭建的问题

PB6.0插件只能安装在VS2005上,安装之前需要安装好VS80sp1-KB926604-X86-CHS.exe,可以使用批处理:

reg export HKLM\Software\Policies\Microsoft\Windows\Installer installer.reg
reg add HKLM\Software\Policies\Microsoft\Windows\Installer /v MaxPatchCacheSize /t REG_DWORD /d 0 /f
@echo 关闭数字签名验证
reg add HKLM\SOFTWARE\Policies\Microsoft\windows\safer\codeidentifiers /v authenticodeenabled /t REG_DWORD /d 1 /f
net stop msiserver
start /wait VS80sp1-KB926604-X86-CHS.exe
reg delete HKLM\Software\Policies\Microsoft\Windows\Installer /v MaxPatchCacheSize /f
reg import installer.reg
reg add HKLM\SOFTWARE\Policies\Microsoft\windows\safer\codeidentifiers /v authenticodeenabled /t REG_DWORD /d 1 /f
net stop msiserver
del /q installer.reg 2>nul


之后安装WinCE 6.0 , Windows Embedded CE 6.0 Platform Builder Service Pack 1.msi,以及CE6R2.iso(如有必要)



应用程序开发可以在VS2005与VS2008中,VS2008支持C#智能设备项目应用程序创建,VS2005好像不支持!

你可能感兴趣的:(关于WinCE6.0平台搭建的问题)