i hope that someone can help me figure this out, I have a requirement to open different system’s install on a pc, something like a page with a few buttons each one will open for example, excel, word, internal systems, a different URL, etc.
I know that something like this is possible with System.Diagnostics.Process.Start(“Process”)
, but a few of this programs had a weird path or specific to a user, I am trying to use a Web service to open this if this is even possible.
When I code the WebMethod and test it on my PC works, but if deplot it and try it form the server throws an error.
As I far as I can tell, it might think in a different solution for this, any ideas?
[WebMethod]
public string HelloWorld()
{
using (Process proc = Process.Start(@"Path"))
{
}
return "";
}