Computer Science Canada ending processes |
Author: | ReN3g@de [ Tue Feb 17, 2004 5:31 pm ] |
Post subject: | ending processes |
is it possible to end processes in Turing? like if u give the .exe name and everything becuz i have all the exe info i just want to know if u could end the process like in Task Manager. |
Author: | Tony [ Tue Feb 17, 2004 5:37 pm ] |
Post subject: | |
you can't do that throught turing, because that would require windows API access |
Author: | octopi [ Tue Feb 17, 2004 5:43 pm ] |
Post subject: | |
You can execute a secondary program that can kill the process for you. You will need to do alot of magic to find the process ID, from the program name...unless you just make a c++ program that does it all for you. Heres a program, that will show the process id's and if you call it with the switch /k PID then it will kill that process. |