-
I have made a setup for my applications, i want to put my setup program on a cd but how can i make my setup program execute from my cd.I don't want to install my setup and then run my setup to install my application. And if i make my setup an .exe,my setup will not work without the needed file(.dll,.ocx,.tlb).
What could i do ?
-
Create an AutoRun.INI file that sits in the root directory of your CD.
In that INI file, place the following code:
[autorun]
OPEN=MySetup.exe
icon=MySetup.ico
And save the file (make sure you have the file saved before you transfer to cd of course hehehe - I've been known to do stupid things at times, So I warn ya ahead of time :)
This should allow it to work.