Hi,
I just registered to this forum, and I already need help.
I want to update adobe flash using a batch file because you have to install it in succession (i.e. each update one at a time). So, I think that a batch file would automate the process. How do you make an IF, THEN, ELSE statement that does the following:
Install "ACROBATFILE.MSP"
IF "ACROBATFILE.MSP" EXISTS
THEN Install "ACROBATFILE1.MSP"
..."ACROBATFILE2.MSP"
..."ACROBATFILE3.MSP"
...
Until it installs to the latests update
I hope this makes sense.
How To Install Multiple Acrobat Updates Using IF, THEN, ELSE
Moderator: DosItHelp
-
- Posts: 1
- Joined: 24 Aug 2012 02:32
Re: How To Install Multiple Acrobat Updates Using IF, THEN,
Adobe flash only requires the latest release.
Are you sure you have the right files?
Are you sure you have the right files?
Re: How To Install Multiple Acrobat Updates Using IF, THEN,
I see you mean Adobe Acrobat.
Try this. I suspect your information is wrong though.
Try this. I suspect your information is wrong though.

Code: Select all
if exist "ACROBATFILE.MSP" start /w "" "ACROBATFILE.MSP"
for /L %%a in (1,1,200) do if exist "ACROBATFILE%%a.MSP" start /w "" "ACROBATFILE%%a.MSP"