我正在尝试从 vbscript 中执行批处理命令。
我希望将输出写入文件。
当我运行它时,我没有得到控制台或文件的输出。
我正在努力:
Dim objShell, command
Set objShell = WScript.CreateObject ("WScript.shell")
command = "wmic product get Name > textfile.txt"
objShell.Run command, 0, True
Set objShell = Nothing
我究竟做错了什么?
当我wmic
在命令提示符下运行命令时,它运行良好。