I would like to use autohotkey to make a key binding that pastes my admin password into the admin prompts so I don't have to type it out 100 times a day. At the moment I have a AHK script that will paste text in most programs but it doesn't work in things like active directory or the windows admin prompt for credentials.
Can anyone help me with this?
here's my current script. When I press cntrl+J it pastes the testadminpass text but not into the password prompts
^j::
send, TestAdminPass
return