[Tool] SRO Killer+

05/31/2008 15:21 Fizzy_Man#1
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!
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...]

[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
05/31/2008 15:29 Fizzy_Man#2
If you found it useful, tell me pls
05/31/2008 15:38 Hussert#3
Nice idea , indeed ;)

Sometimes I have to force shutdown my laptop just because of some lagging window ... really useful .. :)
05/31/2008 15:42 Fizzy_Man#4
Thanks :D

anyone liked it? :-/ damn it. for me it is very useful when i get DC


Frankkko:
Please do not double post, I merged them this time, next time; Infraction.
06/09/2008 01:50 Cha0sBG#5
ye i like it verry much :)
06/09/2008 06:35 wesleyc#6
[Only registered and activated users can see links. Click Here To Register...]
06/09/2008 17:59 SpriGgy#7
its not really the same but its coded in the same way. Maybe a older Version of SROKiller or stolen source Code.
06/09/2008 20:21 Fizzy_Man#8
there is nothing to steal :) spend 30 mins of studying C# and u can write same program :) i just wanted to share it, did not know that idea was already implemented
06/11/2008 07:10 Win32Prorat19#9
Wowah... this is usefull!!~ Thx man~