haodd 发表于 2010-8-10 03:47:40

【已解决】如何操作cmd下systeminfo命令

本帖最后由 haodd 于 2010-8-10 12:18 编辑

如题

想截取相关内容显示在 msgbox如何操作呢?

xayle 发表于 2010-8-10 04:57:27

systeminfo >> systeminfo.txt
输出文本, 对着文本操作

rikthhpgf2005 发表于 2010-8-10 09:36:15

; 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...")

haodd 发表于 2010-8-10 12:17:59

三楼正解{:face (332):}

xsjtxy 发表于 2010-8-10 12:47:41

这个很有意思。学习一下。怎么这个命令没有汉化呢

hjq766 发表于 2017-5-6 16:48:56

支持,学习了~

tkogr 发表于 2017-5-14 03:21:13

支持一下吧











http://www.discuz.net/static/image/common/sigline.gif
https://img.alicdn.com/imgextra/i4/871851027/TB2XlRhfdFopuFjSZFHXXbSlXXa_!!2-martrix_bbs.png
页: [1]
查看完整版本: 【已解决】如何操作cmd下systeminfo命令