-
Notifications
You must be signed in to change notification settings - Fork 295
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Device manager error #1
Comments
Did you try copying and pasting the text of the bat file into an administrator command prompt with the working directory where the files were extracted? I think that has a better success rate. |
Thanks, works now, I think the issue you were having with other people saying it wont install the cert from the .bat was because the bat looked like this; ./CertMgr.exe /add IddSampleDriver.cer /s /r localMachine root but needed this: CertMgr.exe /add IddSampleDriver.cer /s /r localMachine root |
I was going to post this as a separate issue, but it relates to the above comment. EDIT: github deleting backslash |
I get this error when trying to install in device manage (it half way succeeds)r: This device is not working properly because Windows cannot load the drivers required for this device. (Code 31) |
Getting code 31 as well |
You can also get this error by not placing |
I also had an issue with it not registering the certification, despite running the batch file as admin. When I opened an admin command window in the folder and ran it, it worked. The reason is that when running as admin, the working directory is c:\system32, so the ".\CertMgr.exe" part doesn't work, as it's not in the system32 directory. There's a very easy fix for this, to ensure others don't run into the issue. Simply change it to "%~dp0\CertMgr.exe" or, better yet, to avoid the other issue I had, which is that the install guide here didn't specify this needs to be in C:\iddSampleDriver to work, have the batch file ask the user if it's ok to copy the files there, then do so and then register it. Here's a batch file that will do this, which will simplify this process and help prevent people having issues: `@echo off REM Check if running with admin privileges REM Check if in directory needed to work cls I'd also suggest adding in the install steps on the releases page to ensure it's in that directory, even though this updated batch script would do that, just in case. |
.\CertMgr.exe /add %~dp0IddSampleDriver.cer /s /r localMachine root Also, See #26. @echo off
set CERTIFICATE="%~dp0IddSampleDriver.cer"
certutil -addstore -f root %CERTIFICATE%
certutil -addstore -f TrustedPublisher %CERTIFICATE%
pause |
I wonder if anyone else has had issues trying to install this device manually with device manager. I've tried this while running device manager as an administrator and ran the bat file first. Even after rebooting I still get
"An error has occurred during the installation of the device."
I hope something can be done, it'd be lovely to enable a few extra monitors for VR use.
regards
The text was updated successfully, but these errors were encountered: