stasys44 Posted November 8, 2009 Posted November 8, 2009 I need to integrate library for USB xxUSBxx.dll (x is any char)
Sp0iLedBrAt Posted November 8, 2009 Posted November 8, 2009 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.dllThis 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 commandregsvr32 "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.cmdI must encourage you to test this before you actually install.
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now