This is what they made me do at my work, create a batch file to install the DLL and OCX files needed for the program. Use Regsvr32.exe to register them after they get copied to the c:\\windows\\system or c:\\winnt\\system32\\ directory.

It should look like this:

xcopy %1:\\control\\dumbdll.dll c:\\windows\\system /v /c
c:\\windiws\\system\\regsvr32 dumbdll.dll /s /c


The /s on Regsvr32 will silence its output and /c will show results to the console..

call the batch file like so:

install.bat e

Put the drive letter after the batch file of the CD drive when you call it from your program.