I have a WCF Service that will execute a batch file. However, I don't want that batch file to be visible/editable by the user. Is there any way I can embed the batch file code into my service (perhaps in a method).
Currently I am using
System.Diagnostics.Process.Start(myBatchFileName);
to launch my .bat file but as I mentioned, is visible to users.