PDA

View Full Version : Killing a script before it launches in a cluster


vijaykiran
10-02-2009, 10:58 AM
Hello,

For some of our projects at our school, we use a client/server setup to run vizard apps. We routinely have large models that typically take time to load up.

Many times, it so happens that we want to kill the app before it even launches (e.g., Network connection is lost to one of the nodes, realized we didn't switch to fullscreen mode, etc). Currently, we wait until the app launches completely before pressing the 'Esc' key to kill it. It is quite inconvenient to do so.

It would be nice to have a way to kill/stop the app and not have to wait until it launched. Is there a way to do it?

Thanks,
Vijay.

farshizzo
10-02-2009, 11:06 AM
Try creating a batch file on your desktop with the following contents:TASKKILL /F /T /IM winviz.exeWhenever you want to kill the Vizard script process, just double click the batch file and the script should immediately exit.

vijaykiran
10-05-2009, 10:33 AM
Thanks farshizzo. That worked.

- Vijay.