Is there any getting started guides or how-to guides installed with the .NET SDK?
Where is the .NET SDK DLL?
How do I soft-reset the device programmatically from my .NET application?
[DllImport("coredll.dll", SetLastError = true)]
static extern int SetSystemPowerState(string psState, int StateFlags, int Options);
const int POWER_FORCE = 4096;
const int POWER_STATE_RESET = 0x00800000;
SetSystemPowerState(null, POWER_STATE_RESET, POWER_FORCE);