首页 新闻 会员 周边

怎么一次性部署程序到wince设备上。

0
悬赏园豆:50 [已关闭问题] 关闭于 2009-07-08 15:00

VS2005开发MC1000/Wince 5

我想在PC机上部署程序到wince5设备上,现有NETCFv2.wce5.armv4i.cab,App.cab两个文件,我想通过在PC端部署到设备,不需要手工操作。也就是说我希望把文件拷贝到设备上,在设备上点CAB包安装。

Adage的主页 Adage | 初学一级 | 园豆:150
提问于:2009-06-24 17:59
< >
分享
所有回答(1)
0

create an MSI (or other desktop installer) and deploy all required CABs one by one from it

or

trying to write a batch/command/script file which would load "WCELoad.exe" for the list of cab files.

Example:

ProcessStartInfo psi = new ProcessStartInfo();

psi.FileName = "wceload.exe";

psi.Arguments = @"some_file.CAB";  //Path goes here

Process.Start(psi);

http://social.msdn.microsoft.com/Forums/en-US/netfxcompact/thread/1988bb62-66e7-4472-861d-b4beefd6aa62

winzheng | 园豆:8797 (大侠五级) | 2009-06-25 16:21
清除回答草稿
   您需要登录以后才能回答,未注册用户请先注册