I am currently faced with a problem, I need to execute a batch script within a programs memory (so it does not have to extract the batch file to a temporary location).
I am open to solutions in C# and C++
Any help would be appreciated
|
|
|
Options 3 and 4 aren't really very attractive! Option 1 looks pretty good to me but I don't know what's leading to your constraint. |
||||
|
|
|
Open a pipe to the command shell and write the program code into that pipe. Here is an example: http://support.microsoft.com/default.aspx?scid=kb;en-us;190351 |
|||
|
In C# it's an easy way to use System.Diagnostics for the job. How!? Basically, every batch command is an .exe file so you can start it in a separate process. Some code:
If you don't want to start every command in a separate process the solution is with a simple stream redirection.
|
||||
|
|