Introduction
This article discusses the persistence of your Symbol Mobile Device Application. If you follow this way of installing your application on Mobile Device, it will never be lost and you can find it on the device even after a cold boot.
Background
This article is an answer to questions like:
- My application gets lost when the battery goes.
- I want to see my application after every time I cold boot my Mobile Device.
- Where should I install my cab file.
Using the Code
Whenever we want to install an application on the mobile device, we need to follow the steps written below:
Step 1- Copy your cab file in the application folder.
Step 2 - Copy the cab.cpy file in the application folder (we'll write the cab.cpy file now).
Step 3 - Copy the cab.reg file in the application folder (we'll write the cab.reg file now).
After following these steps, your application will be installed as one of the system applications:
\application\MyCabFile.cab > \windows\MyCabFile.cab
[HKEY_CURRENT_USER\Software\Symbol\Startup\Programs\Prog10]
"Name"="\windows\wceload.exe"
"Command"="\Windows\MyCabFile.cab"
"Continue"=dword:0
"ColdBootOnly"=dword:1
The above reg file will install the application every time you cold boot the device.
This will resolve your issues related to installation of applications into Symbol Mobile Devices.
History
- 19th May, 2008: Initial post