I once observed an individual using a file (presumably a batch file) to effortlessly log in to multiple websites with just a click. It seemed like it was created using VB.
After attempting to search for a similar script on Google, I came up empty-handed.
Although I have some knowledge in C++, UNIX, HTML, and JavaScript, I am unsure if achieving the same functionality on a Windows machine using these languages would be feasible compared to using VB or C##.
I managed to open multiple sites by creating a simple Windows batch file with commands like:
start http://www.gmail.com
start http://stackoverflow.com
Despite this, I am still puzzled as to how clicking on a batch file could automate the login process without requiring manual input of username and password.
Should I focus on learning Visual Basic, .NET, or Windows batch programming to achieve this?
Additionally, is it possible to use this method for logging into remote desktops as well?