How can I open a software if I know the name of software?
Process word = new Process();
word.StartInfo.FileName = "winword.exe";
word.Start();
Expectation is the above code will open Microsoft word. But the issue is I need the name of exe (winword for above code). How can open any software enter by user's like If user enter photoshop then it will open photoshop on button click. I want to find name of exe programtically. Please Help me on this. Any idea will be appreciated. Thanks.