12/05/17 21:07:44.55 l/cXDPRS
>>120
MainWindow.xaml.cs 123行~
String moduleFolder = System.IO.Path.GetDirectoryName(Environment.GetCommandLineArgs()[0]);
String exePath = moduleFolder + "\\EpgTimerSrv.exe";
System.Diagnostics.Process process = System.Diagnostics.Process.Start(exePath);
コマンドにパスが含まれないとmoduleFolderが空になって "\EpgTimerSrv.exe" が呼ばれてしまう
String moduleFolder = System.Windows.Forms.Application.StartupPath;
とかにしとけばいいかと