Putty auto login with password
putty save password
putty password
putty
putty auto login
Probably all of us who works on daily basis with Linux servers faces this "problem": login with putty on remote server with user and password for one hundred time a day. A solution would be to save the username and the password, so one step to do the job. Of course this is not a secure way to do it, but is suitable for test servers and also from personal computers.
First, just to make sure you don't have an too old version of putty, download the latest version.
If you want to connect to SSH using putty the command will be:
putty -ssh username@hostname.com -pw password
On Windows you can simply create a shortcut and add the credentials as parameters:
- Create a shortcut on your desktop to putty.exe;
- (optional) Rename the shortcut to something suggestive, e.g putty - username@hostname.com;
- Right-click on shortcut and choose Properties;
- Modify target to: "<path_to_putty>.exe" username@hostname.com -pw password;
- click OK.
Enjoy the shortcut!