用户名密码宏或工具[关闭]


0

我为程序编写扩展。该程序具有一个用户名/密码对话框。没有“记住我的密码”选项。输入此信息的任务非常繁琐,并且中断了我的开发工作流程。

有没有可以自动执行此过程的工具?

理想情况下,我希望该工具启动程序>输入我的用户名和密码>单击“确定”登录。

此功能的子集总比没有好。我有Visual Studio 2010。

该程序是具有很少文档的自定义医疗应用程序。

Answers:


2

AutoHotKey将是完美的选择。实际上,我已经将其用于类似用途。

您的脚本将如下所示:

;This macro will run when you press Windows + a
#a::
Run, [program executable]
;You may need to uncomment this pause and set it if your program doesn't start instantly.
;pause [number in milliseconds]
Send [username]{tab}[password]{enter}
return

请注意,如果您的对话框很奇怪,则可能会有所不同。我已将其设置为标准用户名/密码对话框。


很棒的工具。我的脚本很相似。我选择WinWaitActive而不是暂停以等待窗口变为活动状态。
P.Brian.Mackey 2012年

@ P.Brian.Mackey啊,不知道那一个。我唯一担心的是,程序在激活后没有立即打开密码对话框。
SaintWacko 2012年

即使UI加载缓慢,我也没有任何问题。
P.Brian.Mackey 2012年
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.