仿佛我明白了什么,赶紧去试验 谢谢15楼,又学到一个知识点:#include <Constants.au3>
Local $foo = Run(@ComSpec & " /c ipconfig /all", @SystemDir, @SW_HIDE, $STDERR_CHILD + $STDOUT_CHILD)
Local $line
While 1
$line = StdoutRead($foo)
If @error Then ExitLoop
MsgBox(0, "STDOUT read:"&@error, $line)
Wend
While 1
$line = StderrRead($foo)
If @error Then ExitLoop
MsgBox(0, "STDERR read:"&@error, $line)
Wend 为什么很多人都推荐 >>*.txt呢 不愿意看到运行程序时出现多余文件
页:
1
[2]