vbs代码问题 如何用vbs打开一个指定程序,然后在程序上输入密码?

输入位置直接在密码那,只要输入密码,然后Enter就可以了!... 输入位置直接在密码那,只要输入密码,然后Enter就可以了! 展开
 我来答
鄙人_焉哉乎也
推荐于2016-06-19 · TA获得超过167个赞
知道小有建树答主
回答量:89
采纳率:0%
帮助的人:130万
展开全部
Option Explicit

Dim objShell, strProgram, strKeys
Set objShell = CreateObject("Wscript.Shell")
strKeys = "Hello world" '要发送的字符,请自己更改
strProgram = "c:\windows\system32\notepad.exe" '需要打开的程序,请自己指定
With objShell
.Run strProgram
WScript.Sleep 500
.SendKeys strKeys
.SendKeys "~"
End With
Set objShell = Nothing
追问
Option Explicit

Dim objShell, strProgram, strKeys
Set objShell = CreateObject("Wscript.Shell")
strKeys = "Hello world" '要发送的字符,请自己更改
strProgram = "E:\英雄联盟\TCLS\Client.exe" '需要打开的程序,请自己指定
With objShell
.Run strProgram
WScript.Sleep 3000
.SendKeys strKeys
.SendKeys "123456/.,"
End With
Set objShell = Nothing
是这样吗?
还有Enter键没加进去呢
追答
Option Explicit

Dim objShell, strProgram, strKeys
Set objShell = CreateObject("Wscript.Shell")
strProgram = "E:\英雄联盟\TCLS\Client.exe" '需要打开的程序,请自己指定
With objShell
.Run strProgram
WScript.Sleep 3000
.SendKeys "123456/.," '这里是你要输入的密码
.SendKeys "~" '这个是 Enter
End With
Set objShell = Nothing
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式