How can I call a .exe file W/unknown Path?
How can I call a .exe file W/unk开发者_运维技巧nown Path which installed on the machine in C#?
Process.Start(?);
Process.Start("myExeFileName.exe");
You'll need to hope that the system search path includes the path where the executable lives, or that it has registered an APPPATH
.
精彩评论