Skip to content

C# code to soft reset a Windows Mobile device

Here is the C# code to soft reset a Windows Mobile device (using P/Invoke) [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; private void SoftReset() { SetSystemPowerState(null, POWER_STATE_RESET, POWER_FORCE); } Share this:

Read More

New SureLock Studio features

Latest SureLock Studio release consists on the following new features: 1. Option to display WiFi Signal Strength icon on the kiosk launcher screen 2. Option to display IP address on the toolbox screen 3. Display current date and time on the kiosk launcher screen If you don’t know already what SureLock does, here is an…

Read More

Microsoft to continue support for Ruggedized Handheld market

Ruggedized handhelds are a class of mobile devices that are designed to run mission critical applications while withstanding the harsh environments. Several OEM like Motorola/Symbol, Intermec, Psion Teklogix, Honeywell have been building ruggedized handhelds for several years now. Most of these devices are based on Micrsoft Windows CE and Windows Mobile operating systems. Recent whitepaper…

Read More

How to change file extensions in Windows Mobile?

Ever wondered how to change file extensions on your Windows Mobile phone? One thing is for sure: you cannot use the builtin file explorer program. It does not even show the file extensions let alone change them. Well. there are two solutions: ActiveSync: Connect the device to the PC over ActiveSync and browse to the…

Read More