用于检测用户提示的 VBS 脚本

发布于 2024-11-14 05:57:04 字数 98 浏览 2 评论 0原文

有没有办法使用 VBscript 检测何时出现用户提示?我正在运行一个脚本,该脚本使用 sendkeys 来响应用户提示,但其中一个提示的出现时间存在很大差异。
谢谢 -尼尔

Is there a way to detect when a user prompt appears using a VBscript? I have a script running that's using sendkeys to respond to user prompts, but one of the prompts is heavily variable in how long it will appear.
Thanks
-Neil

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

甜是你 2024-11-21 05:57:04

我不太确定您的用户提示是什么意思,但我假设在这个答案中它是向用户显示的某种窗口/对话框。

如果是这种情况,您可能只需在脚本中执行某种循环并反复查看它是否存在。您可以使用 Windows API 函数来完成此操作。哪个最好取决于您的情况,但我建议您查看 EnumWindows, FindWindowFindWindowEx,它应该可以让您找到提示。

如果您之前没有使用过 VBScript 中的 Win API,您可以找到如何调用这些方法的示例

I'm not exactly sure what you mean with user prompt, but I'm assuming in this answer that it's some kind of window/dialog that appears to the user.

If that's the case, you could probably just do some kind of loop in your script and repeatedly look if it exists. You can do this using Windows API functions. Which ones would be best depends a bit on your situation, but I'd suggest that you look at EnumWindows, FindWindow and FindWindowEx, which should let you find the prompt.

If you've not used Win API from VBScript before, you can find a sample of how to call those methods here.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文