In file: ZoneManager.cs
Line 241: process.StartInfo.FileName = "server" + "." + extension.ToString();
ERROR:
No such file.
FIX: (works on windows)
process.StartInfo.FileName = Path.GetFileNameWithoutExtension(Tools.GetProcessPath) + Path.GetExtension(Tools.GetProcessPath);
Please fix for your future windows users.
Thank you.