A
accyboy1981
Hi,
I'm creating a website that is required to run an executable file over
a network. I'm currently using the System.Diagnostics namespace with
code similar to this:
Process p = new Process();
p.StartInfo.FileName = "\\pc-name\\dir\\program-name.exe";
p.Start();
The above code does not work I'm assuming it is the Process doesn't
have to access rights to the PC. I don't know how to assign these
parameter, or if what I'm doing is even possible.
Any help would be much appreciated.
Thanks
Simon
I'm creating a website that is required to run an executable file over
a network. I'm currently using the System.Diagnostics namespace with
code similar to this:
Process p = new Process();
p.StartInfo.FileName = "\\pc-name\\dir\\program-name.exe";
p.Start();
The above code does not work I'm assuming it is the Process doesn't
have to access rights to the PC. I don't know how to assign these
parameter, or if what I'm doing is even possible.
Any help would be much appreciated.
Thanks
Simon