A putty shortcut that automatically launches a profile?
up vote
41
down vote
favorite
How can I create a putty shortcut that automatically launches a profile, so I can dial into a specific computer with one click?
windows-7 shortcuts putty
add a comment |
up vote
41
down vote
favorite
How can I create a putty shortcut that automatically launches a profile, so I can dial into a specific computer with one click?
windows-7 shortcuts putty
3
It's not even necessary to have a saved session for that.putty.exe user@host -p 42
and similar options can be used.
– grawity
Feb 20 '11 at 13:52
add a comment |
up vote
41
down vote
favorite
up vote
41
down vote
favorite
How can I create a putty shortcut that automatically launches a profile, so I can dial into a specific computer with one click?
windows-7 shortcuts putty
How can I create a putty shortcut that automatically launches a profile, so I can dial into a specific computer with one click?
windows-7 shortcuts putty
windows-7 shortcuts putty
asked Feb 20 '11 at 13:21
C. Ross
2,444105377
2,444105377
3
It's not even necessary to have a saved session for that.putty.exe user@host -p 42
and similar options can be used.
– grawity
Feb 20 '11 at 13:52
add a comment |
3
It's not even necessary to have a saved session for that.putty.exe user@host -p 42
and similar options can be used.
– grawity
Feb 20 '11 at 13:52
3
3
It's not even necessary to have a saved session for that.
putty.exe user@host -p 42
and similar options can be used.– grawity
Feb 20 '11 at 13:52
It's not even necessary to have a saved session for that.
putty.exe user@host -p 42
and similar options can be used.– grawity
Feb 20 '11 at 13:52
add a comment |
4 Answers
4
active
oldest
votes
up vote
59
down vote
accepted
From the Putty FAQ:
To run a PuTTY session saved under the name ‘mysession’, create a Windows shortcut that invokes PuTTY with a command line like
pathnametoputty.exe -load "mysession"
---EDIT---
In Windows 7, the shortcut has to be in quotes like this:
"pathnametoputty.exe" -load "mysession"
Thanks, the same grammar to PuTTYtray.
– Weekend
Sep 3 at 12:52
add a comment |
up vote
3
down vote
I had referred to Putty Connection Manager as a useful addon, giving one click connects and tabbed windows, but it seems the app is dead and all the files removed from the hosting site.
While checking into this, I found a fork of the project, called superputty (see below) and a reference to KiTTY - a Win32 native version of PuTTY with extra features so here you go:
Superputty: http://code.google.com/p/superputty/
KiTTY: http://kitty.9bis.com/
There is no published files for puttycm, or homepages.
– Olli
Feb 20 '11 at 13:43
Yep - looks like the project has died - can't find the files anywhere. Shame. I have edited the post to reflect this.
– Linker3000
Feb 20 '11 at 16:06
add a comment |
up vote
1
down vote
PuttyTray is an alternative where you get sessions in the Windows quickjump list if you pin it to the taskbar. Mine is pinned at position 9, so I type Win+Alt+9 to show list of sessions and arrow key to select, then enter to launch.
It also has a bunch of other nice to have features.
add a comment |
up vote
0
down vote
In windows use this target for putty shortcut for save username and password and also load a saved session:
"C:Program FilesPuTTYputty.exe" -load "your_saved_session" "username@your_server_address" -pw "your_password"
- right click on putty shortcut
- fill out "target" field of shortcut using above code (alter to your own properties).
- click save button.
After that when you click on PuTTy shortcut it loads your session automatically using given username and password.
Putting passwords in shortcut isn't a good idea. Type the password in putty window manually.
– Biswapriyo
Nov 23 at 6:54
Yes Biswapriyo, but in educational purposes it is too boring type password many times!
– hamid araghi
Nov 23 at 7:11
add a comment |
4 Answers
4
active
oldest
votes
4 Answers
4
active
oldest
votes
active
oldest
votes
active
oldest
votes
up vote
59
down vote
accepted
From the Putty FAQ:
To run a PuTTY session saved under the name ‘mysession’, create a Windows shortcut that invokes PuTTY with a command line like
pathnametoputty.exe -load "mysession"
---EDIT---
In Windows 7, the shortcut has to be in quotes like this:
"pathnametoputty.exe" -load "mysession"
Thanks, the same grammar to PuTTYtray.
– Weekend
Sep 3 at 12:52
add a comment |
up vote
59
down vote
accepted
From the Putty FAQ:
To run a PuTTY session saved under the name ‘mysession’, create a Windows shortcut that invokes PuTTY with a command line like
pathnametoputty.exe -load "mysession"
---EDIT---
In Windows 7, the shortcut has to be in quotes like this:
"pathnametoputty.exe" -load "mysession"
Thanks, the same grammar to PuTTYtray.
– Weekend
Sep 3 at 12:52
add a comment |
up vote
59
down vote
accepted
up vote
59
down vote
accepted
From the Putty FAQ:
To run a PuTTY session saved under the name ‘mysession’, create a Windows shortcut that invokes PuTTY with a command line like
pathnametoputty.exe -load "mysession"
---EDIT---
In Windows 7, the shortcut has to be in quotes like this:
"pathnametoputty.exe" -load "mysession"
From the Putty FAQ:
To run a PuTTY session saved under the name ‘mysession’, create a Windows shortcut that invokes PuTTY with a command line like
pathnametoputty.exe -load "mysession"
---EDIT---
In Windows 7, the shortcut has to be in quotes like this:
"pathnametoputty.exe" -load "mysession"
edited Dec 10 '14 at 21:19
Community♦
1
1
answered Feb 20 '11 at 13:25
Siim K
5,82463964
5,82463964
Thanks, the same grammar to PuTTYtray.
– Weekend
Sep 3 at 12:52
add a comment |
Thanks, the same grammar to PuTTYtray.
– Weekend
Sep 3 at 12:52
Thanks, the same grammar to PuTTYtray.
– Weekend
Sep 3 at 12:52
Thanks, the same grammar to PuTTYtray.
– Weekend
Sep 3 at 12:52
add a comment |
up vote
3
down vote
I had referred to Putty Connection Manager as a useful addon, giving one click connects and tabbed windows, but it seems the app is dead and all the files removed from the hosting site.
While checking into this, I found a fork of the project, called superputty (see below) and a reference to KiTTY - a Win32 native version of PuTTY with extra features so here you go:
Superputty: http://code.google.com/p/superputty/
KiTTY: http://kitty.9bis.com/
There is no published files for puttycm, or homepages.
– Olli
Feb 20 '11 at 13:43
Yep - looks like the project has died - can't find the files anywhere. Shame. I have edited the post to reflect this.
– Linker3000
Feb 20 '11 at 16:06
add a comment |
up vote
3
down vote
I had referred to Putty Connection Manager as a useful addon, giving one click connects and tabbed windows, but it seems the app is dead and all the files removed from the hosting site.
While checking into this, I found a fork of the project, called superputty (see below) and a reference to KiTTY - a Win32 native version of PuTTY with extra features so here you go:
Superputty: http://code.google.com/p/superputty/
KiTTY: http://kitty.9bis.com/
There is no published files for puttycm, or homepages.
– Olli
Feb 20 '11 at 13:43
Yep - looks like the project has died - can't find the files anywhere. Shame. I have edited the post to reflect this.
– Linker3000
Feb 20 '11 at 16:06
add a comment |
up vote
3
down vote
up vote
3
down vote
I had referred to Putty Connection Manager as a useful addon, giving one click connects and tabbed windows, but it seems the app is dead and all the files removed from the hosting site.
While checking into this, I found a fork of the project, called superputty (see below) and a reference to KiTTY - a Win32 native version of PuTTY with extra features so here you go:
Superputty: http://code.google.com/p/superputty/
KiTTY: http://kitty.9bis.com/
I had referred to Putty Connection Manager as a useful addon, giving one click connects and tabbed windows, but it seems the app is dead and all the files removed from the hosting site.
While checking into this, I found a fork of the project, called superputty (see below) and a reference to KiTTY - a Win32 native version of PuTTY with extra features so here you go:
Superputty: http://code.google.com/p/superputty/
KiTTY: http://kitty.9bis.com/
edited Feb 20 '11 at 16:16
answered Feb 20 '11 at 13:41
Linker3000
24.4k34264
24.4k34264
There is no published files for puttycm, or homepages.
– Olli
Feb 20 '11 at 13:43
Yep - looks like the project has died - can't find the files anywhere. Shame. I have edited the post to reflect this.
– Linker3000
Feb 20 '11 at 16:06
add a comment |
There is no published files for puttycm, or homepages.
– Olli
Feb 20 '11 at 13:43
Yep - looks like the project has died - can't find the files anywhere. Shame. I have edited the post to reflect this.
– Linker3000
Feb 20 '11 at 16:06
There is no published files for puttycm, or homepages.
– Olli
Feb 20 '11 at 13:43
There is no published files for puttycm, or homepages.
– Olli
Feb 20 '11 at 13:43
Yep - looks like the project has died - can't find the files anywhere. Shame. I have edited the post to reflect this.
– Linker3000
Feb 20 '11 at 16:06
Yep - looks like the project has died - can't find the files anywhere. Shame. I have edited the post to reflect this.
– Linker3000
Feb 20 '11 at 16:06
add a comment |
up vote
1
down vote
PuttyTray is an alternative where you get sessions in the Windows quickjump list if you pin it to the taskbar. Mine is pinned at position 9, so I type Win+Alt+9 to show list of sessions and arrow key to select, then enter to launch.
It also has a bunch of other nice to have features.
add a comment |
up vote
1
down vote
PuttyTray is an alternative where you get sessions in the Windows quickjump list if you pin it to the taskbar. Mine is pinned at position 9, so I type Win+Alt+9 to show list of sessions and arrow key to select, then enter to launch.
It also has a bunch of other nice to have features.
add a comment |
up vote
1
down vote
up vote
1
down vote
PuttyTray is an alternative where you get sessions in the Windows quickjump list if you pin it to the taskbar. Mine is pinned at position 9, so I type Win+Alt+9 to show list of sessions and arrow key to select, then enter to launch.
It also has a bunch of other nice to have features.
PuttyTray is an alternative where you get sessions in the Windows quickjump list if you pin it to the taskbar. Mine is pinned at position 9, so I type Win+Alt+9 to show list of sessions and arrow key to select, then enter to launch.
It also has a bunch of other nice to have features.
answered Mar 2 '16 at 20:30
angularsen
1135
1135
add a comment |
add a comment |
up vote
0
down vote
In windows use this target for putty shortcut for save username and password and also load a saved session:
"C:Program FilesPuTTYputty.exe" -load "your_saved_session" "username@your_server_address" -pw "your_password"
- right click on putty shortcut
- fill out "target" field of shortcut using above code (alter to your own properties).
- click save button.
After that when you click on PuTTy shortcut it loads your session automatically using given username and password.
Putting passwords in shortcut isn't a good idea. Type the password in putty window manually.
– Biswapriyo
Nov 23 at 6:54
Yes Biswapriyo, but in educational purposes it is too boring type password many times!
– hamid araghi
Nov 23 at 7:11
add a comment |
up vote
0
down vote
In windows use this target for putty shortcut for save username and password and also load a saved session:
"C:Program FilesPuTTYputty.exe" -load "your_saved_session" "username@your_server_address" -pw "your_password"
- right click on putty shortcut
- fill out "target" field of shortcut using above code (alter to your own properties).
- click save button.
After that when you click on PuTTy shortcut it loads your session automatically using given username and password.
Putting passwords in shortcut isn't a good idea. Type the password in putty window manually.
– Biswapriyo
Nov 23 at 6:54
Yes Biswapriyo, but in educational purposes it is too boring type password many times!
– hamid araghi
Nov 23 at 7:11
add a comment |
up vote
0
down vote
up vote
0
down vote
In windows use this target for putty shortcut for save username and password and also load a saved session:
"C:Program FilesPuTTYputty.exe" -load "your_saved_session" "username@your_server_address" -pw "your_password"
- right click on putty shortcut
- fill out "target" field of shortcut using above code (alter to your own properties).
- click save button.
After that when you click on PuTTy shortcut it loads your session automatically using given username and password.
In windows use this target for putty shortcut for save username and password and also load a saved session:
"C:Program FilesPuTTYputty.exe" -load "your_saved_session" "username@your_server_address" -pw "your_password"
- right click on putty shortcut
- fill out "target" field of shortcut using above code (alter to your own properties).
- click save button.
After that when you click on PuTTy shortcut it loads your session automatically using given username and password.
answered Nov 23 at 6:50
hamid araghi
1
1
Putting passwords in shortcut isn't a good idea. Type the password in putty window manually.
– Biswapriyo
Nov 23 at 6:54
Yes Biswapriyo, but in educational purposes it is too boring type password many times!
– hamid araghi
Nov 23 at 7:11
add a comment |
Putting passwords in shortcut isn't a good idea. Type the password in putty window manually.
– Biswapriyo
Nov 23 at 6:54
Yes Biswapriyo, but in educational purposes it is too boring type password many times!
– hamid araghi
Nov 23 at 7:11
Putting passwords in shortcut isn't a good idea. Type the password in putty window manually.
– Biswapriyo
Nov 23 at 6:54
Putting passwords in shortcut isn't a good idea. Type the password in putty window manually.
– Biswapriyo
Nov 23 at 6:54
Yes Biswapriyo, but in educational purposes it is too boring type password many times!
– hamid araghi
Nov 23 at 7:11
Yes Biswapriyo, but in educational purposes it is too boring type password many times!
– hamid araghi
Nov 23 at 7:11
add a comment |
Thanks for contributing an answer to Super User!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Some of your past answers have not been well-received, and you're in danger of being blocked from answering.
Please pay close attention to the following guidance:
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fsuperuser.com%2fquestions%2f248099%2fa-putty-shortcut-that-automatically-launches-a-profile%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
3
It's not even necessary to have a saved session for that.
putty.exe user@host -p 42
and similar options can be used.– grawity
Feb 20 '11 at 13:52