05-05-2012, 12:30 PM
try to use the full path on it.
Process MyProcess = new Process();
MyProcess.StartInfo.FileName = @"c:\\Server\\GameServer\\Gameserver.exe";
MyProcess.StartInfo.WorkingDirectory = @"c:\\Server\\GameServer\\";
MyProcess.Start();
and it can be that u may need to add
MyProcess.LoginName = "yourPCuserName";
MyProcess.Password = "yourPCuserNamePassword";
not sure about this but u may find something about it in google

