【已解决】如何操作cmd下systeminfo命令
本帖最后由 haodd 于 2010-8-10 12:18 编辑如题
想截取相关内容显示在 msgbox如何操作呢? systeminfo >> systeminfo.txt
输出文本, 对着文本操作 ; Demonstrates StdoutRead()
#include <Constants.au3>
Local $foo = Run(@ComSpec & " /c dir foo.bar", @SystemDir, @SW_HIDE, $STDERR_CHILD + $STDOUT_CHILD)
Local $line
While 1
$line = StdoutRead($foo)
If @error Then ExitLoop
MsgBox(0, "STDOUT read:", $line)
Wend
While 1
$line = StderrRead($foo)
If @error Then ExitLoop
MsgBox(0, "STDERR read:", $line)
Wend
MsgBox(0, "Debug", "Exiting...") 三楼正解{:face (332):} 这个很有意思。学习一下。怎么这个命令没有汉化呢 支持,学习了~ 支持一下吧
http://www.discuz.net/static/image/common/sigline.gif
https://img.alicdn.com/imgextra/i4/871851027/TB2XlRhfdFopuFjSZFHXXbSlXXa_!!2-martrix_bbs.png
页:
[1]