09-27-2011, 04:44 PM
Start the orginal Nksp.exe dont need a patched exe :p
//Starting the exe
if (File.Exists("Bin\\Nksp.exe"))
{
ProcessStartInfo startInfo = new ProcessStartInfo();
startInfo.FileName = "Bin\\Nksp.exe";
startInfo.Arguments = "4022";
Process.Start(startInfo);
}[/Code]

