Featured Post

x += x++; ?!

Let’s take this code as an example: int x = 3; x += x++; The first thing the compiler does whenever it sees something like z += y is to convert it to z = z + y. This is obviously true for +=, -=, *=, and /=.   Ok, this was easy. Now we have just to consider: x= x + x++; This, by the way, gives...

Read More

Device Command Shell - DCS - A Simple but very useful PowerToy

Posted by Logu Krishnan | Posted in Mobile | Posted on 10-10-2005

Tags: ,

0

Found a neat little PowerToy for smart device development, a Shell enhancement to the Visual Studio 2005 – Device Command Shell (DCS). DCS neatly tucks itself within the command window, and you can execute various shell commands against your target device. This tiny tool gives you the flexibility to edit the registry, play with processes, configure your DLL’s, play with filesystem et al.

 

Some of the commands supported currently are (Partial list)

CE Config, CE Install , CE GetRegKey, CE Ping,  CE Query, CE Regsvr, CE Start, CE Connect and more…

 

You can get DCS from http://www.gotdotnet.com/workspaces/workspace.aspx?id=50618f79-c7b1-4588-9c0a-cf4ddae8092a

  • Share/Save/Bookmark