Using .vbs File Will Let Us Login Into Any Websites Without Typing on the Keyboard
Auto Login to Any Websites and Browsers
This auto login is to make us easier to login to any websites without
typing the username and the password. This tip will work if the browser
is already running on the desktop and the desired website is already
opened, for example Facebook, Gmail, Yahoo, etc. How to do that? We are
going to use the Notepad and save it into .vbs and .bat file format.
The First Step (Creating .vbs file format using Notepad)
Copy the following codes into the Notepad then save it into .vbs file format (Yahoo.vbs):
set WshShell = WScript.CreateObject("WScript.Shell")
WScript.Sleep 4000
WshShell.SendKeys "username"
WScript.Sleep 2000
WshShell.SendKeys "{TAB}"
WScript.Sleep 2000
WshShell.SendKeys "password"
WshShell.SendKeys "{TAB}"
WshShell.SendKeys "{ENTER}"
WScript.Quit()
Comments
Post a Comment