Hi, I just modified the plugin successful for working with Geforce 275.33 drivers. It works with my Geforce GTX 560 Ti. Only buttons of my Windows Blinds WinXP-Style-Plugin are not correct. But who cares... Better than nothing...
nvidia_plugin.inf
CODE
; PE Builder v3 plugin INF file
; by reatogo
[Version]
Signature= "$Windows NT$"
[PEBuilder]
Name="Nvidia Forceware 275.33/93.71 Mini-Hybrid"
Enable=1
[WinntDirectories]
a = "system32\ReinstallBackups\0042\DriverFiles"
b = "Lhsp\System"
[SourceDisksFiles]
nv4_disp.inf=20,,1 ; this is used for newer cards >= GeForce 6 Series (275.33)
nv4_disp.dll=2,,1
nv4_mini.sys=4,,1
nv4_disp.cat=2,,1
nvapi.dll=2,,1
nvcompiler.dll=2,,1
nvcuda.dll=2,,1
nvcuvenc.dll=2,,1
nvcuvid.dll=2,,1
nvdispco32.dll=a,,1
nvdrsdb.bin=a,,1
nvgenco32.dll=a,,1
nvinfo.pb=2,,1
nvoglnt.dll=2,,1
NvStereoUtilityOGL.exe=2,,1
OpenCL.dll=2,,1
NvMcTray.dll=2,,1
NvCpl.dll=2,,1
license.txt=b,,1
DisplayDriver.nvi=2,,1
DisplayDriverExt.dll=2,,1
NVDATA.DATA=2,,1
dbInstaller.exe=a,,1
nv4_old.sys=4,,1 ; older cards for <= GeForce FX Series (93.71)
nv4_old.inf=20,,1
nv4_old.dll=2,,1
nvhwvid.dll=2,,1
dxdiag.au3=2,,1
[Software.AddReg]
0x2,"Microsoft\Windows\CurrentVersion\RunOnceEx\900","dxdiag","||xpeinit.exe -s -m ""DxDiag"" %programfiles%\autoit\Autoit3.exe %systemroot%\system32\dxdiag.au3"
0x2,"Sherpya\XPEinit\StartUp","NVidia-Taskleistensymbol","X:\I386\SYSTEM32\RUNDLL32.EXE X:\I386\SYSTEM32\NvMcTray.dll,NvTaskbarInit"
0x2,"Sherpya\XPEinit\StartUp","NVidia-Hilfsprogramm","X:\I386\SYSTEM32\RUNDLL32.EXE X:\I386\SYSTEM32\NvCpl.dll,NvStartup"
dxdiag.au3
CODE
$ven = RegRead("HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Class\{4D36E968-E325-11CE-BFC1-08002BE10318}\0000","MatchingDeviceId")
if $ven = "" then
exit(0)
endif
$chars = FileRead(EnvGet('Windir') & "\inf\nv4_disp.inf")
if @error <> 0 then
exit(0)
endif
if StringInStr($chars, $ven, 0) = 0 then
exit(0)
endif
$pid=Run("dxdiag.exe", @SystemDir)
WinWait("DirectX")
WinSetState("DirectX","",@SW_SHOW)
do
sleep(500)
until ControlCommand("DirectX", "", "msctls_progress321", "IsVisible", "") = 0
ProcessClose($pid)