Jump to content

Login Bot (VBS) will this work?

iLostMyXbox21

 

So I’m trying to make a script that will automatically log me into skyward (so I don’t have to do it, I wanted to do this as a fun project, hopefully then my teacher will stop treating me like I don’t know anything about computers lmao)

 

This first one is a simplified and faster version. It should be instant (or close to instant)

Spoiler

Set WshShell = WScript.CreateObject(“WScript.Shell”)
WScript.Sleep 2500
WshShell.SendKeys “{TAB}”
WshShell.SendKeys “{TAB}”
WshShell.SendKeys “{TAB}”
WshShell.SendKeys “{TAB}”
WshShell.SendKeys “{TAB}”
WshShell.SendKeys “USERNAME”
WshShell.SendKeys “{TAB}”
WshShell.SendKeys “PASSWORD”
WshShell.SendKeys “{ENTER}”
WScript.Quit

 

 

And here is the more complicated (animated) one, the sleep times are just guesses, I am gonna mess around with them until it looks good

 

Spoiler


Set WshShell = WScript.CreateObject(“WScript.Shell”)

WScript.Sleep 2500

WshShell.SendKeys “{TAB}”
WScript.Sleep 100
WshShell.SendKeys “{TAB}”
WScript.Sleep 100
WshShell.SendKeys “{TAB}”
WScript.Sleep 100
WshShell.SendKeys “{TAB}”
WScript.Sleep 100
WshShell.SendKeys “{TAB}”
WScript.Sleep 100
WshShell.SendKeys “U”
WScript.Sleep 250
WshShell.SendKeys “s”
WScript.Sleep 250
WshShell.SendKeys “e”
WScript.Sleep 250
WshShell.SendKeys “r”
WScript.Sleep 250
WshShell.SendKeys “n”
WScript.Sleep 250
WshShell.SendKeys “a”
WScript.Sleep 250
WshShell.SendKeys “m”
WScript.Sleep 250
WshShell.SendKeys “e”
WScript.Sleep 250
WshShell.SendKeys “{TAB}”
WScript.Sleep 250
WshShell.SendKeys “P”
WScript.Sleep 250
WshShell.SendKeys “a”
WScript.Sleep 250
WshShell.SendKeys “s”
WScript.Sleep 250
WshShell.SendKeys “s”
WScript.Sleep 250
WshShell.SendKeys “w”
WScript.Sleep 250
WshShell.SendKeys “o”
WScript.Sleep 250
WshShell.SendKeys “r”
WScript.Sleep 250
WshShell.SendKeys “d”
WScript.Sleep 250

WshShell.SendKeys “{ENTER}”

WScript.Quit

 

 

 

Obviously, I changed my actual username and password to say username and password for security, would these work like I expect them too? I cannot test them now, but I will be able to later today

✧・゚: *✧・゚:*  Quote for a reply  *:・゚✧*:・゚✧

 

✧・゚: *✧・゚:*   Ask for discord   *:・゚✧*:・゚✧

Link to comment
Share on other sites

Link to post
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now

×