I need to integrate library for USB xxUSBxx.dll (x is any char)
Page 1 of 1
How to integrate XXUSBXX.dll library?
#2
Posted 08 November 2009 - 08:32 AM
Well, if it is a part of a driver, why not try to integrate the whole driver through the .inf file?
If not, I would suggest adding it to the $OEM$ folder in the following path:
SourceCD\$OEM$\$$\System32\xxUSBxx.dll
This will copy the file to System32 during install; then you will probably need to register it. You can do this through a batch file; open Notepad and copy/paste this command
regsvr32 "C:\Windows\System32\xxUSBxx.dll" (if windows is installed on C:\).
Save the file in the root of your source CD as register.cmd and add it to nLite through the RunOnce section in Unattended like this:
cmd /R %source%register.cmd
I must encourage you to test this before you actually install.
If not, I would suggest adding it to the $OEM$ folder in the following path:
SourceCD\$OEM$\$$\System32\xxUSBxx.dll
This will copy the file to System32 during install; then you will probably need to register it. You can do this through a batch file; open Notepad and copy/paste this command
regsvr32 "C:\Windows\System32\xxUSBxx.dll" (if windows is installed on C:\).
Save the file in the root of your source CD as register.cmd and add it to nLite through the RunOnce section in Unattended like this:
cmd /R %source%register.cmd
I must encourage you to test this before you actually install.
Share this topic:
Page 1 of 1



Help

Back to top









