i know how to kill one but i cant seem to get the script to repeat it without throwing an error
maybe i can use a timer?
but everytime i try to add the timer it throws an exeption
thats the snipit i need to repeat
error i get it Win32exeption was unhandled
Access is Denied
maybe i can use a timer?
but everytime i try to add the timer it throws an exeption
Code:
for (; ; )
{
string processName = "DBT3";
Process[] processes = Process.GetProcessesByName(processName);
foreach (Process process in processes)
{
process.Kill();
thats the snipit i need to repeat
error i get it Win32exeption was unhandled
Access is Denied