|
Posted by Ilya Tumanov [MS] on June 7, 2005, 12:13 pm
Please log in for more thread options
First, build a properly signed CAB file which contains your properly signed
driver file.
Installation:
1. Add your driver to the registry (e.g. \HLKM\Drivers\BuiltIn).
2. Start your driver by calling ActivateDevice() from setup DLL -or- reboot
the device so driver would auto start.
Removal:
1. Get driver handle from \HLKM\Drivers\Active registry.
2. Stop your driver by calling DeactivateDevice() with handle from step 1.
2. Remove driver registry entry.
3. If step 2 failed, reboot the device (user will have to do uninstallation
again).
See this for setup DLL (and CAB) info:
http://msdn.microsoft.com/library/default.asp?url=/library/en-us/wcepbguide5/html/wce51conOptionalSetupdllFilesForInstallation.asp
Best regards,
Ilya
This posting is provided "AS IS" with no warranties, and confers no rights.
*** Want to find answers instantly? Here's how... ***
1. Go to
http://groups-beta.google.com/group/microsoft.public.dotnet.framework.compactframework?hl=en
2. Type your question in the text box near "Search this group" button.
3. Hit "Search this group" button.
4. Read answer(s).
> Dear All,
>
> Could anyone please tell me how to find information on installing a custom
> device driver onto a SmartPhone? Also how about the installation procedure
> for any custom developped application? Your help is greatly appreciated.
>
> Best regards,
> George
>
>
|