

InterviewSolution
Saved Bookmarks
1. |
Solve : install multiple application using batch file? |
Answer» Hi friends I WANT to make a CD which installs 5-6 programs such as adobe reader, ms office etc. automatically using batch file. pls help meI've found a couple of things that could be interesting: it is not so easy, because most of software installers has no command line support for batch mode installations 3) (for the programmers out here who can help the OP by reading this): Quote You could package the applications you want to install into the projects resource file, then at run time unpack them into a temporary location and execute them. Depending on what it is you packing\unpacking you may be able to use the /S or /Silent parameters. If not, why not have a go at doing what the install program does manually. It should all be possible.. 4) Less interesting, an application that does it for you: AllMyApps 5) (Also for the programmers out there to help the OP) A guy who wrote such a script, but his full source is not available: Quote I wrote a script to install multiple applications but would like them to wait until the previous install is complete. I know I can use the WSCript.Sleep command but I believe I can only vary that command on a time limit. I need something that acts like...install application 'a'; install application 'b' once installation for application 'a' is complete; install application 'c' once installation for application 'b' is complete. 6) "Linking Multple MSI files through VB script" Solution 1 Quote Accepted Solution (works): Solution 2 Quote I don't believe that ShellExecute is really going to provide the functionality that you want without some serious pain. If you can use WSH the following code will work fine: Treval Program I use to make installers for my stuff: http://www.advancedinstaller.com/download.html Now, that being said- the main reason I didn't respond earlier was because A:) the CD is obviously meant for distribution and B:) you are including copyright software on it.Lmao actually I also found that advancedinstaller but I thought hey, since he's asking a batch file maybe we should just give it to him that way instead of a THIRD party app.. =OThanks for giving lot of information...Thanks for giving lot of information...you could do Code: [Select]start adobeinstaller.exe start etc.exe ... |
|