Jürgen Steinblock
Jürgen Steinblock

Reputation: 31738

Visual Studio - Can I debug my app on a CE device over the network

I am developing an app for Windows CE with Visual Studio 2008.

If I connect the device via USB I can debug / deploy my app on the device. But on the CE device the USB connection is just presented as another network interface with a private IP.

Now I am wondering If it is possible to dismiss the USB connnection an connect over the LAN (both my PC and the CE device are on the same subnet).

Upvotes: 3

Views: 3162

Answers (1)

Alan
Alan

Reputation: 7951

Yes it is possible, I do this at work. First you need to run IPConfig on the device and get the IP. Setup the IP in visual studio's connection properties. Next there are two executables and some files you need to copy to the device.. here this should explain

How to: Connect to Windows CE Device Without ActiveSync

Just execute those two exe's and you should be able to connect. BTW, debugging over ethernet is much faster and less buggy than activesync

Upvotes: 9

Related Questions