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.
我有 Richcopy 工具,我需要每隔 5 分钟运行一次。我需要应用程序在后台运行而不是显示启动窗口。
请帮助我们。
您可以使用 VBScript(另存为 .vbs)在后台隐藏运行它
Set objShell = WScript.CreateObject("WScript.Shell") objShell.Run("richcopytool.exe"), 0, True
或许像这样
schtasks -create -tn <name> -sc minute -mo 5 -tr <command> -ru system
参考