0

I'm using the below code in my WCF service to execute Notepad:

 public void ExecuteApp()
    {
       Process p = new Process();
        p.StartInfo.FileName = "notepad.exe";
        p.Start();
    }

and I call it from a remote machine but nothing happens in the WCF hosted machine.

Jamal
  • 763
  • 7
  • 22
  • 32

0 Answers0