Cti Posted September 15, 2007 Posted September 15, 2007 Hi,I found some good info on how to make silent installers and such, but what I am looking to do is make a installer which can install a few apps exampleBatt CheckImage FilterZoom etc ( I have 13 which need to be installed ) Each one of those folder has the needed files, they are all installshields and have the setup.iss in each folder. I found these two pages HERE and HERE which has some usefull information.If anyone could help me here I am a little stuck
radix Posted September 15, 2007 Posted September 15, 2007 It's simple.You need a .cmd file like this:@echo offstart /wait firstapp.exe /s /smsstart /wait secondapp.exe /s /sms...exitBut first run every program with switch /r and copy result file setup.iss from %windir% in the same folder with setup.exe. Then build an installer with 7zsfx with .cmd file as executable after extraction.The bad thing is that your applications will be installed in the same locations e.g. C:\Program Files\App Name\not in %programfiles&\App Name\ (usefull when Windows is installed on other disk then C).
Cti Posted September 16, 2007 Author Posted September 16, 2007 Thank you I do have another question, how would I make a silent installer for this, it is a driver when I unpack I get 4 files Install.exe ( says install program for windows 2000 drivers )yk51x86.catyk51x86.infyk51x86.sysNow when I run Install.exe a CMD window flashes quick, I am not sure if this installs the driver because it is already installed, I also tried Install.exe /? it says usage:install <INF_File> <Hardware_ID>Really I just need to know does the install.exe install the driver ? Thanks
radix Posted September 16, 2007 Posted September 16, 2007 (edited) Thank you I do have another question, how would I make a silent installer for this, it is a driver when I unpack I get 4 files Install.exe ( says install program for windows 2000 drivers )yk51x86.catyk51x86.infyk51x86.sysNow when I run Install.exe a CMD window flashes quick, I am not sure if this installs the driver because it is already installed, I also tried Install.exe /? it says usage:install <INF_File> <Hardware_ID>Really I just need to know does the install.exe install the driver ? ThanksIt's simple. Uninstall that driver and then double click on Install.exe.For Marvell Yukon driver you can find new installer which support silent installation on their site. Edited September 16, 2007 by radix
Inferi0r Posted September 16, 2007 Posted September 16, 2007 Don't forget to use my new tutorial for 7z SFX which you can find here. Now you can also use parameters such as %ProgramFiles%.
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