-
Notifications
You must be signed in to change notification settings - Fork 0
/
Windows Terminal Protocol Handler.reg
45 lines (33 loc) · 1.53 KB
/
Windows Terminal Protocol Handler.reg
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
Windows Registry Editor Version 5.00
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
; Windows Terminal SSH Handler ;
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
[HKEY_CURRENT_USER\Software\Classes\ssh]
@="URL: SSH Protocol"
"URL Protocol"=""
[HKEY_CURRENT_USER\Software\Classes\wt_ssh_handler\Application]
"ApplicationName"="Windows Terminal SSH Handler"
"ApplicationDescription"="Windows Terminal SSH Handler"
"ApplicationCompany"="Windows Terminal SSH Handler"
[HKEY_CURRENT_USER\Software\Classes\wt_ssh_handler\Capabilities\UrlAssociations]
"ssh"="wt_ssh_handler"
[HKEY_CURRENT_USER\Software\Classes\wt_ssh_handler\shell\open\command]
@="powershell wtssh %1"
[HKEY_CURRENT_USER\Software\RegisteredApplications]
"Windows Terminal SSH Handler"="Software\\Classes\\wt_ssh_handler\\Capabilities"
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
; Windows Terminal Telnet Handler ;
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
[HKEY_CURRENT_USER\Software\Classes\telnet]
@="URL: Telnet Protocol"
"URL Protocol"=""
[HKEY_CURRENT_USER\Software\Classes\wt_telnet_handler\Application]
"ApplicationName"="Windows Terminal Telnet Handler"
"ApplicationDescription"="Windows Terminal Telnet Handler"
"ApplicationCompany"="Windows Terminal Telnet Handler"
[HKEY_CURRENT_USER\Software\Classes\wt_telnet_handler\Capabilities\UrlAssociations]
"telnet"="wt_telnet_handler"
[HKEY_CURRENT_USER\Software\Classes\wt_telnet_handler\shell\open\command]
@="powershell wttelnet %1"
[HKEY_CURRENT_USER\Software\RegisteredApplications]
"Windows Terminal Telnet Handler"="Software\\Classes\\wt_telnet_handler\\Capabilities"