My friend wrote some small and quite useful program that allows to kill SRO when the OS is frozen or SRO is not responding (ctrl+alt+del is not working always).
So 1st file kills SRO_client process and 2nd allows to kill any other processes. Files are clean and no viruses.
To prove it, here 2nd tool.
P.S. you need to have framework!
[Only registered and activated users can see links. Click Here To Register...]
[Only registered and activated users can see links. Click Here To Register...]
[Only registered and activated users can see links. Click Here To Register...]
; Generated by WIN-SFV32 v1.0
; (Compatible: Total Commander 7.02a)
ProcessKiller.exe 52D0801C
SROkiller.exe 8E9C24B2
So 1st file kills SRO_client process and 2nd allows to kill any other processes. Files are clean and no viruses.
To prove it, here 2nd tool.
P.S. you need to have framework!
PHP Code:
using System;
class mainb
{
public static void Main()
{
Console.WriteLine("Enter name without '.exe'. For example ' explorer '");
Console.WriteLine("What process to kill?");
string name = Console.ReadLine();
proc.KillProcess(name);
}
}
using System.Diagnostics;
using System;
class proc
{
public static void KillProcess(string Process_name)
{
try
{
foreach (Process specific in Process.GetProcessesByName(Process_name))
{
Console.WriteLine("Killing process: "+specific.ProcessName);
specific.Kill();
}
} catch {}
}
}
[Only registered and activated users can see links. Click Here To Register...]
[Only registered and activated users can see links. Click Here To Register...]
; Generated by WIN-SFV32 v1.0
; (Compatible: Total Commander 7.02a)
ProcessKiller.exe 52D0801C
SROkiller.exe 8E9C24B2