Script? Batch file? Loading multiple programs...

Trizoy

VIP Member
Hello all,
I need some help in loading a number of programs in order.. At work I use 11 different programs, and I need them open simultaneously.. I would like to click a single file to open a sript, or program wich open the rest of the programs. I tried using the starup, but could not get certain ones to open before others...(wrong order) i tried using a Batch file, but it would get stalled on the telnet sessions... Does anyone have an idea how I can do this?
 
Compile this in your favorite C++ compiler.

BEGIN COPY HERE---
#include <stdio.h>
#include <stdlib.h>

int main ()
{
system ("Command Number 1");
system ("Command Number 2");
system ("Command Number 3");
system ("Command Number 4");
system ("Command Number 5");
system ("Command Number 6");
system ("Command Number 7");
system ("Command Number 8");
system ("Command Number 9");
system ("Command Number 10");
system ("Command Number 11");
return 0;
}
END COPY HERE---

Personally, I use absolute paths.
 
Back
Top