When my image boots to the desktop for the first time my driver installer does it's thing, and since the nVidia control panel is (thankfully) not a part of the graphics packs, I get the "RUNDLL32.EXE C:\WINDOWS\system32\NvCpl.dll,NvStartup" error on boot. I have tried the following bits to try and make it not do that, but it keeps happening...
regwrite("HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Run","NvCplDaemon","REG_SZ","")
regwrite("HKEY_CURRENT_USER\SOFTWARE\Microsoft\Windows\CurrentVersion\Run","NvCplDaemon","REG_SZ","")
regdelete("HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Run","NvCplDaemon")
regdelete("HKEY_CURRENT_USER\SOFTWARE\Microsoft\Windows\CurrentVersion\Run","NvCplDaemon")
regdelete("HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Run","NvMediaCenter")
regdelete("HKEY_CURRENT_USER\SOFTWARE\Microsoft\Windows\CurrentVersion\Run","NvMediaCenter")
I found that RegDelete was not doing anything so tried the RegWrite "" trick, and I thought that would do it but nope. So then I tried one after the other, nope again. I'm pretty flummoxed and can't find the right answers through Google, care to share how Finisher does it?
Thanks
Ian