vbs代码问题 如何用vbs打开一个指定程序,然后在程序上输入密码?
答案:1 悬赏:20 手机版
解决时间 2021-02-16 09:31
- 提问者网友:呐年旧曙光
- 2021-02-15 16:55
输入位置直接在密码那,只要输入密码,然后Enter就可以了!
最佳答案
- 五星知识达人网友:煞尾
- 2021-02-15 18:23
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
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
我要举报
如以上回答内容为低俗、色情、不良、暴力、侵权、涉及违法等信息,可以点下面链接进行举报!
点此我要举报以上问答信息
大家都在看
推荐资讯