1

我能够打开我的 gmail 但试图打开下一个 url a。我可以这样做吗?如何?

需要修复一个( WshShell.Exec "C:\test.bat" )

'Script starts here
Set WshShell = WScript.CreateObject("WScript.Shell")

'Wait 1 second (1000 ms)
WScript.Sleep 1000

'Open IE and go to gmail.com (your IExplore.exe file location may be different)
WshShell.Exec "C:\Program Files\Internet Explorer\IEXPLORE.EXE gmail.com"

'Allow time for IE to finish loading (about 15 secs for slow connections/machines)
WScript.Sleep 10000

'Send the login info in the login box
'login (change username to your login name
WshShell.Sendkeys "xxxxxxxxxx"
WScript.Sleep 500

'hit TAB key to move to password field
WshShell.Sendkeys "{TAB}"
WScript.Sleep 500

'Send the password info
'change your password to your login password
WshShell.Sendkeys "xxxxxxxxxxxxx"
WScript.Sleep 500

'Hit 'Enter' key to log-in
WshShell.Sendkeys "{ENTER}"
WScript.Sleep 10000

WshShell.Exec "C:\test.bat"

'Allow time for IE to finish loading (about 15 secs for slow connections/machines)
WScript.Sleep 15000

'Send the login info in the login box
'login (change username to your login name
WshShell.Sendkeys "xxxxxxxxx"
WScript.Sleep 500

'hit TAB key to move to password field
WshShell.Sendkeys "{TAB}"
WScript.Sleep 500

'Send the password info
'change your password to your login password
WshShell.Sendkeys "xxxxxxxx"
WScript.Sleep 500

'Hit 'Enter' key to log-in
WshShell.Sendkeys "{ENTER}"
4

1 回答 1

0

编辑:这对我有用。

测试.vbs

Set WshShell = WScript.CreateObject("WScript.Shell") 
WshShell.Exec "test.bat"

和 test.bat

@echo off 
start www.yahoo.com
于 2012-06-02T01:27:52.583 回答