Evren Bingøl
Evren Bingøl

Reputation: 1725

Driver Development DbgengRemoteCommand is missing

I have 2 machines with win 10 Enterprise(clean install) and visual studio 2015 with WDK 10. I have made one of the machine the host and one the target. By following the msdn link.

I followed the instructions from here and also tried the next example here

Both examples gave me the same error "DbgengRemoteCommand" is missing.

I can see the target computer from Drive Install > Deployment.

Upvotes: 3

Views: 2014

Answers (2)

Kaplan
Kaplan

Reputation: 11

I had the same problem, but before the error i had a info that hardware id is not matching with .inf file all i did was entering <yourProjectName>.inf

and under

[Standard.NT$ARCH$]

%DeviceName% = ...

the name is after comma, you just have to swap it with the value that you entered in DriverInstall > Deployment > HardwareIdDriverUpdate

it was totally obvious for me but i couldn't find under what name i should look for hardware id value, so here it is :D

Upvotes: 0

Yuying Chen
Yuying Chen

Reputation: 96

I have the same problem when following the UMDF, but have no problem following the KMDF. So I changed the Debugger from "Debugging Tools for Windows - Remote Debugger" to "Debugging Tools for Windows - Kernel Debugger", and it works.

Upvotes: 8

Related Questions