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.
我们有一个 EXE 文件,它与位于我们网络之外的云服务器进行通信,并每天下载工作流程更新和一些数据库文件。我们没有此应用程序的源代码。
每当我们重新启动我们的服务器时,我们都需要手动启动这个应用程序,并且我们需要点击里面的“启动”按钮来让应用程序运行起来。
我们已经在任务调度器中添加了这个应用程序,但是应用程序会弹出并等待我们点击“开始”按钮。有什么方法可以使用某些脚本自动单击此应用程序内的按钮?
任何帮助,将不胜感激。
试试这个 VB 脚本
Set WshShell = CreateObject("WScript.Shell") WshShell.AppActivate yourAPP WshShell.SendKeys "{TAB}" WshShell.SendKeys "{ENTER}"