1.

Solve : Need Help Batch file?

Answer»

hi
i have created a near about 10 to 15 presentations in flash. and made them exe

now i have to run those each exe's for a certain period of time one after another
Can it be done with a batch file

Thanks
Any help would be appreicated
You never mentioned an OS, but one way would be to DOWNLOAD SLEEP from the Win2003 Tools and intersperse it with your exe FILES:

Example:

Code: [Select]flash1.exe
sleep 5
flash2.exe
sleep 5
.
.
.

OR

You could do this on the cheap and intersperse PING:

Code: [Select]flash1.exe
ping -n 5 127.0.0.1 > nul
flash2.exe
ping -n 5 127.0.0.1 > nul
.
.
.

If you have Win9x you can also use CHOICE but it is not recommended as it SUCKS up CPU cycles.

Note: change the number after sleep or -n for whatever time you need in seconds.

Good luck. 8-)i am using windows xpThe use either sleep or ping. KEEP in mind the Win2003 Toolkit is a large download. Ping is already installed on your machine.

Use the examples in the previous post on how to use either command.

8-)thanks will try one of this



Discussion

No Comment Found