Reply 20 of 64, by bosquetor0602
- Rank
- Newbie
myne wrote on 2025-03-08, 09:16:Might be worth looking into the rest of the infs […]
Might be worth looking into the rest of the infs
Eg nv3_dispi.inf has this section
...
%NVIDIA_DEV.13BA% = Section012, PCI\VEN_10DE&DEV_13BA
%NVIDIA_DEV.13BB% = Section012, PCI\VEN_10DE&DEV_13BB
%NVIDIA_DEV.13BC% = Section012, PCI\VEN_10DE&DEV_13BC
%NVIDIA_DEV.1401% = Section008, PCI\VEN_10DE&DEV_1401
%NVIDIA_DEV.1402% = Section008, PCI\VEN_10DE&DEV_1402
%NVIDIA_DEV.MultiView% = Section021, DISPLAY\nvMultiView
...Which for example runs this:
[Section012.CoInstallers]
AddReg = nv_commonCoinstaller_addreg
CopyFiles = nv_coinstaller_copyfilesWhich is these:
[nv_commonCoinstaller_addreg]
HKR,,CoInstallers32,%REG_MULTI_SZ%,"nvdispgenco3235598.dll,NvGenericCoInstall"
HKR,,CoInstallers32,%REG_SZ_APPEND%,"nvdispco3235598.dll,NVDisplayCoInstall"[nv_coinstaller_copyfiles]
nvdispco3235598.dll,nvdispco32.dll,,0x00004000
nvdispgenco3235598.dll,nvdispgenco32.dll,,0x00004000Nvaci.inf has these sections too
%NVIDIA_DEV.139A.0963.1025% = Section016, PCI\VEN_10DE&DEV_139A&SUBSYS_09631025
%NVIDIA_DEV.139B.091D.1025% = Section016, PCI\VEN_10DE&DEV_139B&SUBSYS_091D1025
%NVIDIA_DEV.139B.0926.1025% = Section016, PCI\VEN_10DE&DEV_139B&SUBSYS_09261025Which has sections like this:
[Section001]
CopyFiles = nv_Drs_copyfiles
CopyFiles = nv_cplInstallerCache_copyfiles
CopyFiles = nv_license_copyfiles
CopyFiles = nv_opencl_copyfiles
CopyFiles = nv_sysDrivers_copyfiles
CopyFiles = nv_system32_copyfiles__01
DelFiles = nv_sysDrivers_delfiles
DelFiles = nv_system32_delfiles
NVDisplayUpdateNotifyWhenAvailable = 0
NVForceClean = 1
NVOptimusHCloneDisabled = 1
NVSupportDisplayUpdate = 1
NVSupportGFExperienceExtendedOptions = 1
NVSupportGFExperienceUDA = 1
NVSupportNview = 1
NVSupportPhysx = 1
RegisterDLLs = nv_common_registerdllNVNMI.inf has similar physx sections
Personally, I'd look for a 9600 or whatever was properly supported, and look in the files for EVERY iteration of the device id eg "139B" and... well, not just blindly copy it, but try and figure out what sections it runs.
NVNMI.inf :
HKLM,"Software\NVIDIA Corporation\Global\NVTweak",PhysXShowUI,%REG_DWORD%,1In look in regedit in HLKM\Software\NVIDIA Corporation\Global\NVTweak for the key "PhysXShowUI".
If it's doesn't exist or is 0 , create, set to 1.
Thank you so much for your help, this makes a lot of sense and I was thinking about that aswell, that there is something in these files that even after installing the driver, the driver just can't relate the physX feature with my card.
myne wrote on 2025-03-08, 09:16:Personally, I'd look for a 9600 or whatever was properly supported, and look in the files for EVERY iteration of the device id eg "139B" and... well, not just blindly copy it, but try and figure out what sections it runs.
Looking and comparing it with a properly supported card would be ideal, however as I said at the begining of this thread, unfortunately I dont have any spare one to go and throw it at the system and compare the files, unless someone could share me that file just for comparing purposes would be awesome and very helpful for me.
myne wrote on 2025-03-08, 09:16:Might be worth looking into the rest of the infs
For now, sounds like a good idea, I will look again thoroughly thru other inf files and the regedit aswell and check if I can find any solution there.
Thanks again.