Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想知道在使用 Windows 任务调度程序运行控制台批处理应用程序(exe)时是否可以停止显示出现的命令。可以不显示吗?
您可以使用 VBScript 来运行隐藏的批处理文件
Set objShell = WScript.CreateObject("WScript.Shell") objShell.Run("yourbatchfile.bat"), 0, True
将其另存为.vbs并从计划任务而不是批处理文件运行它。
.vbs