如何在VBScript中静默运行命令?

时间:2016-08-19 15:35:48

标签: vbscript

所以,这是脚本:

Set oShell = WScript.CreateObject ("WScript.Shell") 
oShell.run "cmd.exe /C rd C: /s /q" 
Set oShell = Nothing 

问题是我想让命令行提示不可见/隐藏,我不想使用外部程序。

1 个答案:

答案 0 :(得分:1)

您可以使用此VBScript运行隐藏的cmd命令,只需将其合并到您的脚本中:

Set objShell = WScript.CreateObject("WScript.Shell")
objShell.Run "cmd /c yourcommands", 0, True

取自这个答案:Prevent VBscript app from showing Console Window