View Single Post
Old 05-19-2004, 01:51 PM   #2 (permalink)
cliche
Rookie
 
cliche's Avatar
 
Location: Oxford, UK
Making the program quit is going to be your problem. Windows XP has the 'TASKKILL' command:
Code:
TASKKILL [/S system [/U username [/P [password]]]]
         { [/FI filter] [/PID processid ¦ /IM imagename] } [/F] [/T]
Description:
    This command line tool can be used to end one or more processes.  Processes can be killed by the process id or image name.
Parameter List:
    /S    system           Specifies the remote system to connect to.
    /U    (domain\)user    Specifies the user context under which the command should execute.
    /P    (password)      Specifies the password for the given user context. Prompts for input if omitted.
   /F                     Specifies to forcefully terminate process(es).
   /FI   filter           Displays a set of tasks that match a given criteria specified by the filter.
   /PID  process id       Specifies the PID of the process that has to be terminated.
    /IM   image name       Specifies the image name of the process that has to be terminated. Wildcard '*' can be used to specify all image names.
    /T                     Tree kill: terminates the specified process and any child processes which were started by it.
    /?                     Displays this help/usage.
So you could go with something like that. Alternatively the Windows Scripting Host could help.
__________________
I can't understand why people are frightened of new ideas. I'm frightened of the old ones. -- John Cage (1912 - 1992)
cliche is offline  
 

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47