A putty shortcut that automatically launches a profile?
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 |
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 |
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,454105377
2,454105377
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
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 '18 at 12:52
add a comment |
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 |
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 |
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 '18 at 6:54
Yes Biswapriyo, but in educational purposes it is too boring type password many times!
– hamid araghi
Nov 23 '18 at 7:11
Perhaps key authentication would be an alternative to passwords
– Ed Heal
Dec 13 '18 at 16:26
add a comment |
Your Answer
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "3"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});
function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});
}
});
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
4 Answers
4
active
oldest
votes
4 Answers
4
active
oldest
votes
active
oldest
votes
active
oldest
votes
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 '18 at 12:52
add a comment |
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 '18 at 12:52
add a comment |
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,83963964
5,83963964
Thanks, the same grammar to PuTTYtray.
– Weekend
Sep 3 '18 at 12:52
add a comment |
Thanks, the same grammar to PuTTYtray.
– Weekend
Sep 3 '18 at 12:52
Thanks, the same grammar to PuTTYtray.
– Weekend
Sep 3 '18 at 12:52
Thanks, the same grammar to PuTTYtray.
– Weekend
Sep 3 '18 at 12:52
add a comment |
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 |
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 |
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.5k34265
24.5k34265
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 |
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 |
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 |
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 |
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 '18 at 6:54
Yes Biswapriyo, but in educational purposes it is too boring type password many times!
– hamid araghi
Nov 23 '18 at 7:11
Perhaps key authentication would be an alternative to passwords
– Ed Heal
Dec 13 '18 at 16:26
add a comment |
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 '18 at 6:54
Yes Biswapriyo, but in educational purposes it is too boring type password many times!
– hamid araghi
Nov 23 '18 at 7:11
Perhaps key authentication would be an alternative to passwords
– Ed Heal
Dec 13 '18 at 16:26
add a comment |
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 '18 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 '18 at 6:54
Yes Biswapriyo, but in educational purposes it is too boring type password many times!
– hamid araghi
Nov 23 '18 at 7:11
Perhaps key authentication would be an alternative to passwords
– Ed Heal
Dec 13 '18 at 16:26
add a comment |
Putting passwords in shortcut isn't a good idea. Type the password in putty window manually.
– Biswapriyo
Nov 23 '18 at 6:54
Yes Biswapriyo, but in educational purposes it is too boring type password many times!
– hamid araghi
Nov 23 '18 at 7:11
Perhaps key authentication would be an alternative to passwords
– Ed Heal
Dec 13 '18 at 16:26
Putting passwords in shortcut isn't a good idea. Type the password in putty window manually.
– Biswapriyo
Nov 23 '18 at 6:54
Putting passwords in shortcut isn't a good idea. Type the password in putty window manually.
– Biswapriyo
Nov 23 '18 at 6:54
Yes Biswapriyo, but in educational purposes it is too boring type password many times!
– hamid araghi
Nov 23 '18 at 7:11
Yes Biswapriyo, but in educational purposes it is too boring type password many times!
– hamid araghi
Nov 23 '18 at 7:11
Perhaps key authentication would be an alternative to passwords
– Ed Heal
Dec 13 '18 at 16:26
Perhaps key authentication would be an alternative to passwords
– Ed Heal
Dec 13 '18 at 16:26
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