WDF driver installation echo

Computer to install the drivers called the "target computer" or "test computer" .

Typically, such computer-generated independently of the computer development and driver package.


detailed steps

  1. Administrator, open a Command Prompt window. Then, enter the following command:
    bcdedit /set TESTSIGNING ON
    Restart the target computer.

  2. On the target computer for the driver to generate a package to create a folder (for example, C: \ EchoDriver).
    Generating a driver package from the host computer described in the foregoing copy all files (inf, sys, cat, cer )
    and devcon.exe tool (WDK Tools installation file folder),
    and these files are stored on the target computer to create a file folder C: \ EchoDriver in.

  3. On the target computer, right-click the .cer certificate file, and click "Install" and follow the prompts to install the test certificate.

  4. Installation tool driver devcon general syntax: devcon install <INF file> <hardware ID>
    INF file contains hardware for mounting the .sys ID, Echo for example, the hardware ID of root \ ECHO.
    On the target computer, Administrator, open a Command Prompt window, navigate to the folder C: \ EchoDriver, then enter the following command:
    devcon install echo.inf root\ECHO

  5. Restart the computer.


Or directly with the bat batch

cd    C:\EchoDriver
devcon.exe  install  echo.inf   root\ECHO
pause

Guess you like

Origin blog.csdn.net/u012308586/article/details/94720862