Technical Document #132


Technical Document #132

Doc ID: 132
Product: WinDriver
Version: 8.1x and above

Distributing your WinDriver-based driver to a target Windows PC - WinDriver version 8.1x and above.

This document outlines the basic steps for installing a driver developed with version 8.1x or newer of WinDriver on a target Windows Vista / Server 2003 / XP / 2000 / 98 / Me PC. Detailed driver distribution instructions can be found in the WinDriver User's Manual for your WinDriver version.

The Windows driver distribution steps for version 8.0x of WinDriver are outlined in Technical Document #130.
The Windows distribution steps for version 6.x - 7.x of WinDriver are outlined in Technical Document #117.

Documentation Notes:

  • All OS references in this document are applicable only to WinDriver versions that officially support these operating systems (see Technical Document #4 for the list of operating systems supported by the latest WinDriver version).

    For example, references to Windows 98/Me (and the related wdreg16.exe utility) are applicable only to version 9.20 and below of WinDriver.

  • The windrvr6.sys, windrvr6.inf and wd<version>.cat files, mentioned in this document, can be found under the WinDriver\redist directory on the development PC. wdreg.exe / wdreg_gui.exe / wdreg16.exe and difxapi.dll (v8.11+) can be found under the WinDriver\util directory. (The source code of the wdreg utilitiy is found under the WinDriver\samples\wdreg directory).
  • Beginning with version 8.00 of WinDriver you can rename the WinDriver driver module (windrvr6.sys) and the related INF file (windrvr6.sys). You can also submit the driver for WHQL certification or have it Authenticode signed yourself, using your own WinDriver catalog file (xxx.cat), as explained in the WinDriver User's Manual. If you have selected to rename any of the provided WinDriver files, replace the references to these files in the present document with the names of your new files.
  • The wdreg.exe and wdreg_gui.exe utilities provide the same functionality. The difference is in the way the installation messages are displayed - graphical messages (wdreg_gui.exe) or console messages (wdreg.exe). You can therefore replace any reference to wdreg.exe in the following instructions with wdreg_gui.exe.
    When installing windrvr6.sys on Windows 98/Me, you should use the wdreg16.exe utility.
  • Beginnning with version 8.11 of WinDriver the wdreg utility is dependent on the difxapi.dll DLL.

Back to Top


Installation Notes:

  • You must have administrative privileges in order to install drivers on Windows.
  • When distributing your driver, take care not to overwrite a newer version of windrvr6.sys with an older version of this driver.
  • If you wish to distribute drivers for both 32-bit and 64-bit target platforms, you must prepare a separate driver installation package for each platform.
  • When upgrading the driver from a previous version of WinDriver, which also uses the windrvr6.sys driver module (v6.00 and above):

    • If you have also created a Kernel PlugIn driver (e.g., old_kp.sys), remove this driver before proceeding with the installation:

      To remove old_kp.sys, run:
      \> wdreg -name OLD_KP uninstall

    • For a reboot-free installation of the new driver, verify that there are no open handles to the windrvr6.sys service. This includes verifying that there are no open applications that use this service and that there are no connected Plug-and-Play (PCI/USB) devices that are registered to work with it via an INF file. Otherwise, the installation might instruct the user to either uninstall all devices currently registered to work with WinDriver and Retry, or Cancel and reboot the PC in order to successfully complete the installation of the new driver.

Back to Top


Installation Steps:

NOTE: For Windows 98/Me, replace the references to wdreg.exe below with wdreg16.exe.

  1. Copy windrvr6.sys, windrvr6.inf and wd<version>.cat to the same directory.

    NOTE:

    • If you select to copy wd<version>.cat to a different location you will need to modify the CatalogFile entry in the windrvr6.inf file to point to the location of the catalog file.
    • You can also select not to distribute the wd<version>.cat catalog file, in which case you need to remove or comment-out the CatalogFile line in the windrvr6.inf file. However, note that if you do so the installation will not utilize the driver's Authenticode digital signature (see the WinDriver User's Manual for more information).
  2. Use the utility wdreg.exe to install WinDriver's kernel module on the target computer:
    \> wdreg -inf <path to windrvr6.inf> install

    NOTE: Remember that wdreg requires the difxapi.dll DLL (v8.11+).

    TIP: If you copy wdreg.exe and difxapi.dll to the same directory as windrvr6.sys and windrvr6.inf, you can simply run the following command from your installation directory in order to install the driver:
    install_dir:] wdreg -inf windrvr6.inf install

  3. If you have created a Kernel PlugIn driver (e.g., my_kp.sys), copy this driver to Windows drivers directory - %windir%\system32\drivers - and install it using the wdreg.exe utility:
    \> wdreg -name MY_KP install

    NOTE: The driver name is indicated without the *.sys extension.

  4. On Windows 98/Me, reboot the PC to complete the driver installation.

  5. For Plug-and-Play devices (PCI/USB): install the device INF file, which registers your device to work with the windrvr6.sys service (normally this file is created using WinDriver's DriverWizard utility).

    On Windows 2000/XP/Server 2003/Vista, you can use the wdreg.exe utility with the install command to automatically install the INF file:
    \> wdreg -inf <path to device.inf> install

    On Windows 98/Me, install the device INF file manually, using Windows' Update Driver wizard (from the Device Manager) or New Hardware Wizard, as explained in the instructions that will be displayed when generating the file with DriverWizard, and in the WinDriver User's Manual for the relevant WinDriver version. Alternatively, copy the INF file to Windows' INF directory
    (%windir%\inf) and reboot to let Windows locate and install the file.

  6. If your project uses the wdapi<version>.lib library (for example wdapi900.lib) - as is the case for the sample and generated DriverWizard projects - you need to distribute the wdapi DLL:

    • When distributing 32-bit applications/DLLs to 32-bit targets OR when distributing 64-bit applications/DLLs to 64-bit targets: Copy WinDriver\redist\wdapi<version>.dll (e.g., wdapi900.dll) to the target's %windir%\system32 directory.

      NOTE: If you attempt to copy the 64-bit DLL to the
      %windir%\system32 directory using a 32-bit installation program, you may find that the DLL file is actually copied to the 32-bit %windir%\sysWOW64 directory. The reason for this is that Windows x64 platforms translate references to 64-bit directories from 32-bit commands into references to 32-bit directories. You can avoid the problem by using 64-bit commands to perform the necessary installation steps from your 32-bit installation program. The system64.exe program, provided in the WinDriver\redist directory of the Windows x64 WinDriver distributions, enables you to do this.

    • When distributing 32-bit applications to 64-bit targets: Copy WinDriver\redist\wdapi<version>_32.dll (for example wdapi900_32.dll) to the target's %windir%\sysWOW64 directory and rename the file to wdapi<version>.dll.
  7. Copy your driver application/DLL to the target and run it!


Back to Top
Corporate Index   |   Connectivity Software Store   |  

WinDriver, version 8.1x and above, version 9.x, version 8.1.x, version 8.10, version 8.11, Win98, Win2000, WinXP, Server 2003, Vista, PCI, PCMCIA, ISA, USB, wdapi.dll, wdapi_32.dll, distribution, installation, upgrade, windrvr6, windrvr6.sys, INF, wdreg, wdreg_gui, wdreg16, windrvr6.inf, Kernel PlugIn, target, x64, sysWOW64, system64.exe, difxapi.dll, catalogfile, wdver.cat