What am I doing wrong here ?
Firstly, how do I get it to open the process silently.
Secondly, how do I get the process input / ouput ?
I tried reading from both the pipes but nothing works.
Any help ?
Firstly, how do I get it to open the process silently.
Secondly, how do I get the process input / ouput ?
I tried reading from both the pipes but nothing works.
Any help ?
Framework brl.standardio Import pub.freeprocess Local temp_process:TProcess = CreateProcess("cmd.exe /c ~qipconfig~q") Local temp_read:String Print "started" While temp_process.status() temp_read = temp_process.pipe.readline() Print "read = @"+temp_read+"@" Wend temp_process.close() temp_process.terminate() temp_process = Null Print "ended"