8

Can we use KEEPASS to auto-fill the window credential? or are there any password tool can do ít?
many thanks!
detail for my problem: I work a lot with some resources using window credential as log-in method, so manual-type them is some kind terrible, store them in a window vault not a choice, because the policy make me change them every 15 days , and then I must remove all the vault and re-create them.


update : I've tried "*.mycompany.com" and "10.*" (my sites are on servers with IP like 10.16.34.169) but it doesn't work! Are there any help to troubleshot this problem?


this is not an answer but a solution for someone has this problem like me!
Using Autohotkey and a piece of code below, you can forgot the Credential manager! just edit the *.ahk file when you change password.

#IfWinActive, ahk_class ahk_class #32770
    ^!a:: Send youdomain.com\yourid{Tab}YourPa$$w0rd{Enter}
return

window credential

Luke
  • 1,490

1 Answers1

7

I use the KeePass AutoType feature to log in to various RDP sessions in the network.

On the Auto-Type tab I add a custom sequence for a specific window.

KeePass Auto-Type custom sequence

To add the entry I use the default sequence but add {DOWN} to the beginning of it. This means that it doesn't matter what username is currently displayed in the security details as the {DOWN} sequence forces it to use the "Use another account" option.

To set up the custom entry you need to have the Windows security dialog open and waiting for input then go into the KeePass Auto-Type tab and press Add then fill in the box as shown:

enter image description here

Works for me!

shunty
  • 710