nikhil chaubey
nikhil chaubey

Reputation: 401

devcon.exe failed in windows 10

I am manually trying to install a test driver from

https://github.com/Microsoft/Windows-driver-samples/tree/master/audio/sysvad

I build sysvad solution and got tabletaudiosample on a windows 10 , 64 bit virtual machine.

I copied .inf, .sys . cat and package files to a folder inside target computer.

enter image description here

1.Hardware ID will be found in respective inf file, open inf with notepad++ ,ctrl+f [HardwareIds]

2.bcdedit /set TESTSIGNING ON

reboot

go to devcon.exe folder

3.cd C:\Tools

4.Install the certificate named as 'package', right click, install.

5.open command prompt as administrator

devcon.exe install C:\Users\WDKRemoteUser\Desktop\Debug\tablet\tabletaudiosample.inf *ROOT\sysvad_TabletAudioSample

Device node created. Install is complete when drivers are installed...
Updating drivers for ROOT\sysvad_TabletAudioSample from C:\Users\WDKRemoteUser\Desktop\Debug\tablet\tabletaudiosample.inf.
devcon.exe failed.

In the device manager, I can see an unknown device. Here devcon.exe failed with no other useful message.

How can I see what are caused the failure? Is there any log file generated?

Thanks for help.

Upvotes: 5

Views: 20139

Answers (2)

hungcuiga1
hungcuiga1

Reputation: 118

Maybe too late to answer, i have a same as problem,this information for error is put in c:\windows\inf\setupapi.dev.log. I fixed with install the certificate in this way

Upvotes: 2

user258609
user258609

Reputation: 109

This issue is opened since april 2016 : https://github.com/Microsoft/Windows-driver-samples/issues/57

it seems the SYSVAD driver example, expected to show the official Win10 universal audio driver interface, has not been tested (it is not functional), not been validated, and not been certified yet...

Upvotes: 0

Related Questions