I'm making a mod manager for Cortex Command. When I try to start the game using Process.Start() , I get an error in Cortex Command (not my program).

I'm assuming that Settings.ini is the first file that Cortex Command reads from, so there's obviously some issue with Cortex Command reading from files when executed from the shell.
I either need a fix for this, or an alternative method for starting applications with C#.
By the way, here is my code:
Thank you.

I'm assuming that Settings.ini is the first file that Cortex Command reads from, so there's obviously some issue with Cortex Command reading from files when executed from the shell.
I either need a fix for this, or an alternative method for starting applications with C#.
By the way, here is my code:
Code:
Process proc = new System.Diagnostics.Process(); proc.StartInfo.FileName = CCpath + @"\Cortex Command.exe"; proc.Start();
Comment