private void StartLogger() { Thread.Sleep(500); string exeDirectory = FindPath.FindDirectory("MandatoryAssignemnetSWC", extraDirectory: "\\TesterLogger\\bin\\Release\\netcoreapp2.1\\win-x86\\TesterLogger.exe"); var process = new Process { StartInfo = { FileName = exeDirectory, Arguments = (Configuration.LogPath + Configuration.LogFileName), CreateNoWindow = false, UseShellExecute = true, } }; process.Start(); Console.ReadKey(); }