Hi i am able to execute a remote process using Wmi and was able to get return Value and Process Id of the Process. Is there any way to get the Output of the Process which was started by Wmi. Eg. If i start an exe which prints something in console will i be able to get those values using this Api. Any help is appreciated.
Share
You must redirect the output to a file, then read the file across the network.
Use the CMD.EXE /S /C option to do this.
Example command line to run
Program.exe:Then connect to server like this
\\servername\c$\path\to\stdout.txtto read the stdout results.Note: Pay careful attention to the extra quotes around the command to run. These are necessary to ensure the command line is interpreted correctly.