Search found 3 matches

by pari.vinu
04 Sep 2013 02:12
Forum: DOS Batch Forum
Topic: Batch file to install multiple softwares
Replies: 5
Views: 8082

Re: Batch file to install multiple softwares

Ok. Thanks foxidrive. now i got the idea of switched. Currently I am able to install the software by making auto=1 in install.inf file and then with the following script I am able to install. @echo off for /F "tokens=2 delims=<>" %%i in ('type test.xml ^|find "<install>"') do ( s...
by pari.vinu
03 Sep 2013 19:59
Forum: DOS Batch Forum
Topic: Batch file to install multiple softwares
Replies: 5
Views: 8082

Re: Batch file to install multiple softwares

Thanks for reply foxidrive. what is switches in installation programs ?
by pari.vinu
03 Sep 2013 00:47
Forum: DOS Batch Forum
Topic: Batch file to install multiple softwares
Replies: 5
Views: 8082

Batch file to install multiple softwares

I am new to windows batch file. Here is my first attempt in batch file. Here is my requirement: I should have batch file. When executes, it should read the XML config file for the software to be installed and the location of destination. When I execute the batch script, it should install all the sof...