Hello, im creating my own launcher but i have 1 problem. If i do the normal way of starting a exe like this:
ORCode:Process theduel = new Process();
theduel.StartInfo.FileName = "theduel.exe";
theduel.Start();
But it doesn't start when serialkey is enabled. I can make the serialkey disabled but thats not save becasue people can start without running launcher. Does some on have a way to start it when serialkey is enabled?Code:System.Diagnostics.Process.Start("notepad");

