Microsoft

TwitterFacebook
Get flash to fully experience Pearltrees

Data Points: Accessing Data from a Mobile Application

http://msdn.microsoft.com/en-us/magazine/cc135982.aspx Data Points Accessing Data from a Mobile Application John Papa
http://www.blogsdna.com/18187/download-windows-8-developer-preview-build-iso-32-bit-64-bit.htm

Download Windows 8 Developer Preview Build ISO (32-bit & 64-bit) Torrent

Like Windows 7 Public betas Microsoft has made the first Windows 8 Developer Preview build publicly available for download to all Windows enthusiast.
http://msdn.microsoft.com/en-us/library/bb737392.aspx

OMA DM Provisioning Files

OMA DM commands are transmitted between the server and the client device in messages.
http://msdn.microsoft.com/en-us/library/bb737517.aspx

OMA Client Provisioning Files

One provisioning XML file typically contains configuration information for multiple Configuration Service Providers.

Managing Windows Mobile Devices

Managing a device involves configuring the device after the initial operating system (OS) is put in ROM. The initial image placed in ROM is the bootstrap image. http://msdn.microsoft.com/en-us/library/bb737404.aspx
http://msdn.microsoft.com/en-us/library/bb158529.aspx

Creating an Installer for Windows Mobile Applications

When deploying your Windows Mobile application, you may want to create an installer that runs on the user's desktop and invokes the Application Manager to install your application on the user's device. The creation of an installer with Visual Studio is simple, requires little coding, and can be done within the existing Visual Studio Solution for your application. Make sure that Solution Explorer for your project is visible.

Mobile PractiCEs: How to create a windows mobile (Smart Device) .Cab installer

This time I'm going back to a basic topic: How to create a windows mobile installer for our mobile (Pocket PC / Smartphone)application. I've already blogged before about how to build a .cab which registers the assemblies on the .Net CF GAC . But this time I'm focusing on the .cab installer itself. A Cab file is the default setup format for Windows CE and Windows Mobile devices (similar to windows .msi files). You probably already have installed several application using .cab files, and are familiar with the concept. One point which is often unknown is that .cab files are processed by wceloader.exe , and it can only install one .cab file at a time . http://www.mobilepractices.com/2008/02/how-to-create-windows-mobile-smart.html
http://msdn.microsoft.com/en-us/library/aa924308.aspx

Optional Setup.dll Files for Installation

When you create a cabinet (.cab) file, you can choose to add an optional Setup.dll file. This enables you to perform operations before and after the installation and unistallation of your application on target devices. If you are using CAB Wizard to create your .cab file, you specify your Setup.dll in the DefaultInstall section of your .inf file.
The Wceload tool (Wceload.exe), which is an XML-based CAB installer application, runs on your target device.

Wceload Tool

http://msdn.microsoft.com/en-us/library/bb158700.aspx

CAB Wizard

When you finish developing your driver or application, you can use the CAB Wizard to create cabinet (.cab) files to facilitate installation of your driver or application on devices. This file acts as a container, holding all necessary device driver or application files in one location, which ensures that these files are present at installation. You create a .cab file by first using a text editor to create an .inf file and then using the CAB Wizard command-line tool (Cabwiz.exe) at the command prompt.

Mobile PractiCEs: Setup.dll Sample and Walkthrough: Terms & Conditions / End User License Agreement for a Smart Device CAB installer

Visual Studio Smart Device CAB projects are extremely helpful in many ways for building a cab installer , even thought they have some pending issues, like a more natural MSBUILD integration, they allow us to have a cleaner and dynamic definition of our mobile app installation based on our source projects instead of relying just in binary and .inf files.
On this page, there are examples of XML scripts for any Windows Mobile device , and examples for devices with Windows Mobile 6.1 or later .

Advanced XML Setup Script