vbs调用CMD问题

2024-12-30 00:19:35
推荐回答(1个)
回答1:

Dim strText
Set oShell = CreateObject("WScript.Shell")
Set oExec = oShell.Exec("%COMSPEC% /C ""PING 127.0.0.1""")
Do While Not oExec.StdOut.AtEndOfStream
    strText = oExec.StdOut.ReadAll()
Loop

结果在strText里