I have a Console Application that needs to call an application.
As I'm not sure where it was installed, I need to assign the value to the path variable as below to get the app install location.
string path = System.AppDomain.CurrentDomain.BaseDirectory + "IASD.ASCS.WPF.exe";
Now when I pass the parameter to open the application, Console Application does not open the application.
Processe.Start (path);
No error message is displayed. Just do not load the executable.
How do I call this application when I do not know where the executable was installed?