windows自动启动程序并登陆账号密码的VBS脚本

windows自动启动程序并登陆账号密码的VBS脚本

dim program
program="程序路径"
set Wshell=CreateObject("Wscript.Shell")
set oexec=Wshell.Exec(program)
wscript.Sleep 2000
Wshell.SendKeys "{TAB}"
Wshell.SendKeys "{TAB}"
Wshell.SendKeys "账号" 		
wscript.Sleep 1000
Wshell.SendKeys "{TAB}" 
Wshell.SendKeys "密码"     	 
Wshell.SendKeys "{TAB}"
Wshell.SendKeys "{TAB}"
Wshell.SendKeys "{TAB}"
Wshell.SendKeys "{ENTER}"		
Wscript.quit
# 新建文本文档,并复制内容,保存。修改文件后缀为“filename.vbs”。即可双击运行
备注:这是VBS脚本,可以实现简单的程序自动输入账号密码登陆,中间的TAB次数根据不同的程序会有不同的差异,
请自行调整
初学者,如有疑问可下方评论沟通。

你可能感兴趣的:(运维,windows,自动登陆,VBS脚本)