在WinCE 5.0的時後,都會有Platform Manager這組component,因此開發者可以在eVC開發好程式,使用cemgrc.exe透過Ethernet,將程式Download到Target Device上;但到了WinCE 6.0的時代,Platform Manager被移掉了,但也不是沒有其他方式將程式Download到Target Device上
以下將介紹在Visual Studio 2008上,透過Ethernet將開發好的程式Download到Target Device上
1. 首先,要先知道Target Device(WinCE 6.0)的IP
2. 接下來將C:Progream FilesCommon filesMicrosoft sharedCoreCon1.0Targetwce400x86下的5個檔案,複製到Target Device下Windows目錄,並執行ConmanClient2.exe及CMaccept.exe(若OS為64-bit,請至C:Progream Files (x86)下尋找)
- Clientshutdown.exe
- ConmanClient2.exe
- CMaccept.exe
- eDbgTL.dll
- TcpConnectionA.dll
3. 接下來在VS 2008中,在Tools功能表中,選擇Options
4. 選擇Devices,在Show devices for platform中選擇Windows CE,接下來按Properties
5. 選擇Configure
6. 選擇Use specific IP address,並填入Target Device中的IP,設定完畢按OK離開,回到VS 2008主畫面
7. 在Tools選單中,選擇Connect to Device,在Platform的部分選擇Windows CE,Devices部分選擇Windows CE Device,成功連接後會出現”Connection succeeded”,按Close關閉視窗;若是失敗,到Target Device上,再次執行ConmanClient2.exe及CMaccept.exe這兩個程式後,再連接一次
8. 此時按F5或是下圖中紅色圈起處後會跳出Deploy視窗,Device部分選擇Windows CE Device後,按Deploy即可將程式Download到Target Device上測試了