Last active
December 15, 2025 17:37
-
-
Save dbcooper/3445012 to your computer and use it in GitHub Desktop.
Per-user telnet URL association for Windows
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Windows Registry Editor Version 5.00 | |
| ; Per-user telnet URL mapping | |
| ; | |
| ; Works w/ Firefox and Chrome under Windows 7 | |
| ; | |
| ; Be sure to replace the path to PuTTY with the correct destination | |
| ; | |
| [HKEY_CURRENT_USER\Software\Classes\telnet] | |
| @="URL:telnet protocol" | |
| "URL Protocol"="" | |
| [HKEY_CURRENT_USER\Software\Classes\telnet\DefaultIcon] | |
| @="\"C:\\Program Files\\PuTTY\\putty.exe\"" | |
| [HKEY_CURRENT_USER\Software\Classes\telnet\Shell] | |
| [HKEY_CURRENT_USER\Software\Classes\telnet\Shell\Open] | |
| [HKEY_CURRENT_USER\Software\Classes\telnet\Shell\Open\Command] | |
| @="\"C:\\Program Files\\PuTTY\\putty.exe\" \"%1\"" |
Author
but you did it ! congrats it was useful for me, since I'm trying eve emulator.
Thanks bud, worked perfectly ;)
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Updated. Guessing a bit about the quotes/path escaping as I haven't tested.