• Welcome to TechPowerUp Forums, Guest! Please check out our forum guidelines for info related to our community.
  • The forums have been upgraded with support for dark mode. By default it will follow the setting on your system/browser. You may override it by scrolling to the end of the page and clicking the gears icon.

Need help modding NVidia INF file

faceman11

New Member
Joined
Oct 8, 2020
Messages
3 (0.00/day)
I need help!!!

I tried to follow the instructions by Yuki: https://null-src.com/posts/nvidia-notebook-driver-inf-mod/post.php but no luck!
Laptop: HP EliteBook 8740w
OS: Win 10
NVIDIA Graphics Driver Version: 355.85
Device ID:
PCI\VEN_10DE&DEV_0DDA&SUBSYS_1520103C

GPU
NVIDIA_DEV.0DDA.1631.103C = "NVIDIA Quadro 2000M "

When I execute the installer, the program successfully completes System Check, License Agreement, Options, but the installer end with the "NVIDIA Installer failed".

Thx!
 
You messed up the "product identifier" in the SUBSYS_ID : 1520 vs. 1631
Actually you can strike the SUBSYS_ID (and the Windows build check)

Why do you mod an antiquated driver?
There is a brand new Fermi driver 392.62, which you can modify and use

Original nvhmwi.inf from 392.62 :

Code:
[Manufacturer]
%NVIDIA_A% = NVIDIA_Devices,NTamd64.10.0,NTamd64.10.0...14310

[NVIDIA_Devices.NTamd64.10.0...14310]
%NVIDIA_DEV.0FF6.8104.103C% = Section010, PCI\VEN_10DE&DEV_0FF6&SUBSYS_8104103C
%NVIDIA_DEV.1CBC.847B.103C% = Section084, PCI\VEN_10DE&DEV_1CBC&SUBSYS_847B103C
%NVIDIA_DEV.1CBC.847C.103C% = Section084, PCI\VEN_10DE&DEV_1CBC&SUBSYS_847C103C
%NVIDIA_DEV.1CBC.848A.103C% = Section086, PCI\VEN_10DE&DEV_1CBC&SUBSYS_848A103C
%NVIDIA_DEV.1CBC.848B.103C% = Section086, PCI\VEN_10DE&DEV_1CBC&SUBSYS_848B103C

[NVIDIA_Devices.NTamd64.10.0]
%NVIDIA_DEV.0FF6.8104.103C% = Section009, PCI\VEN_10DE&DEV_0FF6&SUBSYS_8104103C
%NVIDIA_DEV.1CBC.847B.103C% = Section083, PCI\VEN_10DE&DEV_1CBC&SUBSYS_847B103C
%NVIDIA_DEV.1CBC.847C.103C% = Section083, PCI\VEN_10DE&DEV_1CBC&SUBSYS_847C103C
%NVIDIA_DEV.1CBC.848A.103C% = Section085, PCI\VEN_10DE&DEV_1CBC&SUBSYS_848A103C
%NVIDIA_DEV.1CBC.848B.103C% = Section085, PCI\VEN_10DE&DEV_1CBC&SUBSYS_848B103C 

[Strings]
DiskID1 = "NVIDIA Windows 10 (64 bit) Driver Library Installation Disk 1"
NVIDIA = "NVIDIA"
NVIDIA_A = "NVIDIA"
NVIDIA_DEV.0FF6.8104.103C = "NVIDIA Quadro K1100M"
NVIDIA_DEV.1CBC.847B.103C = "NVIDIA Quadro P600"
NVIDIA_DEV.1CBC.847C.103C = "NVIDIA Quadro P600"
NVIDIA_DEV.1CBC.848A.103C = "NVIDIA Quadro P600"
NVIDIA_DEV.1CBC.848B.103C = "NVIDIA Quadro P600"

Modded INF

Code:
[Manufacturer]
%NVIDIA_A% = NVIDIA_Devices,NTamd64.10.0,NTamd64.10.0

[NVIDIA_Devices.NTamd64.10.0]
%NVIDIA_DEV.0DDA =  Section010, PCI\VEN_10DE&DEV_0DDA

[Strings]
DiskID1 = "NVIDIA Windows 10 (64 bit) Driver Library Installation Disk 1"
NVIDIA = "NVIDIA"
NVIDIA_A = "NVIDIA"
NVIDIA_DEV.0DDA = "NVIDIA Quadro 2000M "

If setup.exe still fails, install via "have disk" method.
 
Thanks StefanM,

I did the mod as you suggested, but the install failed in the same spot. I also tried to load (update) the driver from the Device Manager, but the system stated that I had the latest driver.
Any other suggestions?
 
the system stated that I had the latest driver
This message appears when do you a "manual installation" where you point to a directory.
Use the similar "have disk" method where you point directly to the modded INF file.
 
Thanks StefanM for the help! In addition to your great instructions, I needed to disable driver signature.

Got it working!!! -)
 
I know the last post is 3 years old, but maybe i get some hint.
I did all the stuff that StefanM has described. The install procedure with the "have disk" method starts but after a while a get a hashtag failure message.
(driver signature was disabled by bcdedit command before the install procedure).

This is just a quick message for maybe help for the hashtag problem.
 
Back
Top