Can AHK do this? Automate AWS login.

Get help with using AutoHotkey (v1.1 and older) and its commands and hotkeys
SteveMann
Posts: 4
Joined: 12 Mar 2022, 16:19

Can AHK do this? Automate AWS login.

Post by SteveMann » 20 May 2022, 09:58

I am using an Amazon Web Service in my Home Assistant, but a seemingly random times, AWS won't connect until I re-enter my login credentials.
(I have only been lightly using AHK for some substitutions and shortcuts).

The URL is http://192.168.1.57:3456

I will either be prompted for my Amazon login and password, or I will get ERR_CONNECTION_REFUSED.

Would it be possible to use AutoHotKey to try the login and either enter my Amazon credentials or quit?
Last edited by BoBo on 20 May 2022, 10:37, edited 1 time in total.
Reason: Added "Automate AWS login." to the subject line. To make it more specific. HTH

User avatar
mikeyww
Posts: 26596
Joined: 09 Sep 2014, 18:38

Re: Can AHK do this? Automate AWS login.

Post by mikeyww » 20 May 2022, 12:37

That address is local to your machine. You could always try a basic kind of text-sending script.

Code: Select all

F3::SendInput {Text}myuserid`tmypassword`n
Be cautious where you put the script file, as your credentials would be in plain, unencrypted text, if you use this sort of example.

Post Reply

Return to “Ask for Help (v1)”