hi ..
im trying to terminate a process
so in python i used
os.system("taskkill /IM notepad.exe/T"
and
os.popen("taskkill /IM notepad.exe /f")
neither have worked since the process does close but start up again !!
on SOME computers it did work, the process was terminated
but on others it did not
what would be a good way to stop this process from running and stop whatever is running it running !?
i need to terminate this process so it does not start again and any affect that it cause the computer to have will be gone
i can find the pid value and the name of the image
using
os.system(tasklist)
so all i need is a way to kill the process
sorry for my english, im not a native english speaker
Thanks
DDNDD