At work, you need to run multiple USB flash disks after each machine is started.ProgramTo write a batch file, as shown below:
Call
@ echo off
echo
You are about to run startup programs !
pause
:: load Outlook
CMD / K " C: \ Program Files \ Microsoft Office \ office12 \ Outlook. EXE " / Recycle
:: load visual
studio 2008
call "C: \ Program Files \ Microsoft Visual Studio 9.0 \ common7 \ ide \ devenv.exe "
These commands will start the first program and wait until I close it before running the second program. I want to run multiple programs at the same time. How to implement it?
Change call to start.
Start
Start"C: \ Program Files \ Microsoft Office \ office12 \ Outlook. EXE"
::LoadVisual Studio 2008
Start"C: \ Program Files \ Microsoft Visual Studio 9.0 \ common7 \ ide \ devenv.exe"
Function implementation is sometimes one step away from success, but it is often the last step. Stick to taking one more step to see the dawn