how to force Terminal to make reset after installing my cab ?
i made C# program and cab for WinCE
thanks in advance
how to force Terminal to make reset after installing my cab ?
i made C# program and cab for WinCE
thanks in advance
You can include an special dll file in your cab file named setup.dll. Inside this dlls there are several functions you can implement:
During the Install_Exit function you could try to reset the device programmatically by calling
KernelIoControl(IOCTL_HAL_REBOOT, NULL, 0, NULL, 0, NULL);
However, as stated here, the device OEM may or may not allow you to reset the device from a user application, so you may need to contact the OEM of the device for other alternatives.