I wrote a simple c# console program that i can run while locked up in full screen mode to kill the game, here's the source.
[STAThread]
static void Main()
{
Process [] procs = Process.GetProcesses();
int found = 0;
foreach(Process p in procs)
{
if (p.ProcessName == "eqgame")
{
Console.WriteLine("Killing " + p.ProcessName + " " + p.MainWindowTitle);
p.Kill();
found++;
}
}
if (found == 0)
Console.WriteLine("Everquest not found");
else
Console.WriteLine("Processes killed: " + found.ToString());
Console.ReadKey();
}
|