Click here to Skip to main content
65,938 articles
CodeProject is changing. Read more.
Articles
(untagged)

Pocket PC Memory Card Based Installer

0.00/5 (No votes)
24 Feb 2006 1  
A sample software installer for the Pocket PC that installs software when a memory card is inserted into the device.
Sample Image - PPC_CardInstall.png

Introduction

Installation of software on a mobile device is a trivial thing these days. Often the application is supplied with a Setup program that the user runs. I remember the first time that I installed a Pocket PC application by running a setup program from my desktop. The application installed onto the device, and afterwards I even had an entry in my Add-Remove Programs.

It almost did not make sense to me that to install software on my Pocket PC I should run a setup program on my desktop.

There is, however, a case when an installation like the one just described is not desired. That case for me is when I need to install my software on more than a single device. To handle multiple device installations without going through the process of partnering each device is the purpose of this code.

Some instances where this code could be useful are:

  • Pre-configuring 20 Pocket PC devices to ship to a customer.
  • Allowing the customer to provision multiple devices at a remote site.

Usage Scenario:

  1. Unbox a device.
  2. Charge the device.
  3. Boot the device and perform initial screen tapping until the today screen is displayed.
  4. Insert an SD Card into the device. (Device is totally configured to run my software).
  5. Turn of the device - Send device to customer.

This code is an "AutoPlay" for a memory card. The goal was to insert an SD Card into the Pocket PC device, and have the .NET 2.0 Framework installed, if not already installed, then install my program.

The program presented here was designed to meet the following base requirements:

  1. Activate when the SD Card is inserted into the device
  2. Require no network from the device
  3. Require no pre-installed software except the OS. PPC2003 SE in this instance
  4. Require no ActiveSync anything

In addition to the base requirements, the following requirements are added:

  1. Detect if the Compact Framework v2.0 is installed
  2. Install the Compact Framework v2.0 if missing
  3. Detect if my software is installed
  4. Install my software if missing
  5. Display a web page to the user at the end of the installation
  6. Write a log of actions

License

This article has no explicit license attached to it but may contain usage terms in the article text or the download files themselves. If in doubt please contact the author via the discussion board below.

A list of licenses authors might use can be found here