Computing.Net > Forums > Windows XP > Batch to install programs

Computer Problems? Computing.Net has over 1,000,000 posts about all things technology related! Over 90% answered within 24 hours! Click here to start participating now! Also, be sure to check out the New User Guide.

Batch to install programs

Reply to Message Icon

Name: Dark Vader
Date: June 13, 2007 at 01:56:30 Pacific
OS: Win XP
CPU/Ram: Many/many
Product: many
Comment:

Hello and sorry about my bad english!

I didn't find any solution in my problem by googling around so... (simply because I don't know the keywords to search)

I need to build batch to install different programs. The problem is that i don't know how to make this very simple way. Running Batch ask user which programs do you want to istall. Output would be something like this: 1, 2, 5 ,7. From these numbers batch should install programs that correspond the numbers given by user. Problem is that if I have 15 programs and user inputs numbers 1,2,5,7 how to separate those in single variables...

In simple words I need a Batch where user can choose which programs to install. There would be about 15 programs listed by numbers. User gives corresponding numeber(s) and then batch install those programs.



Sponsored Link
Ads by Google

Response Number 1
Name: IVO
Date: June 13, 2007 at 03:28:56 Pacific
Reply:

I hope your basic batch know-how can support you in scripting what is no way a simple task.

About your question see the code below

@Echo Off
:LOOP
Set /P PGM#=Enter PGM Number^>

For /L %%J in (1,1,15) Do (
If "%%J"=="%PGM#%" GoTo :%PGM#%)
GoTo :LOOP

:1
Echo Install [%PGM#%]
GoTo :EOF

:2
Echo Install[%PGM#%]
GoTo :EOF

and so on


0
Reply to Message Icon

Related Posts

See More







Post Locked

This post is quite old and has been locked from receiving new replies. Please create a new posting instead.


Go to Windows XP Forum Home


Sponsored links

Ads by Google


Results for: Batch to install programs

Batch file to install programs www.computing.net/answers/windows-xp/batch-file-to-install-programs-/174779.html

where to install programs www.computing.net/answers/windows-xp/where-to-install-programs/127363.html

cant install programs in win xp www.computing.net/answers/windows-xp/cant-install-programs-in-win-xp/13807.html