-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdssh_windows.go
91 lines (76 loc) · 2.03 KB
/
dssh_windows.go
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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
//go:build windows
// +build windows
package main
import (
"os"
"os/exec"
"path/filepath"
"strconv"
"syscall"
"github.com/xlab/closer"
"golang.org/x/sys/windows"
"golang.org/x/sys/windows/registry"
)
var (
PuTTY = `SOFTWARE\SimonTatham\PuTTY` //root
Sessions = filepath.Join(PuTTY, "Sessions") //dir
SshHostCAs = filepath.Join(PuTTY, "SshHostCAs") //dir
SshHostKeys = filepath.Join(PuTTY, "SshHostKeys") //file
)
// Конфиг для putty на Windows
func Conf(name, _ string, kv map[string]string) {
rk, _, err := registry.CreateKey(registry.CURRENT_USER,
name,
registry.CREATE_SUB_KEY|registry.SET_VALUE)
if err != nil {
Println(err)
return
}
defer rk.Close()
for k, v := range kv {
if i, err := strconv.Atoi(v); err == nil {
rk.SetDWordValue(k, uint32(i))
} else {
rk.SetStringValue(k, v)
}
}
}
func GlobalSshPath() string {
return filepath.Join(os.Getenv("ProgramData"), SSH)
}
// cmd = exec.Command("cmd.exe", "/C", fmt.Sprintf(`start %s %s`, bin, opt))
func createNewConsole(cmd *exec.Cmd) {
const CREATE_NEW_CONSOLE = 0x10
cmd.SysProcAttr = &syscall.SysProcAttr{
CreationFlags: CREATE_NEW_CONSOLE,
NoInheritHandles: true,
}
}
func isWin7() bool {
maj, min, _ := windows.RtlGetNtVersionNumbers()
return maj < 6 || (maj == 6 && min <= 1)
}
func ConsoleCP() {
const CP_UTF8 uint32 = 65001
var kernel32 = windows.NewLazyDLL("kernel32.dll")
getConsoleCP := func() uint32 {
result, _, _ := kernel32.NewProc("GetConsoleCP").Call()
return uint32(result)
}
getConsoleOutputCP := func() uint32 {
result, _, _ := kernel32.NewProc("GetConsoleOutputCP").Call()
return uint32(result)
}
setConsoleCP := func(cp uint32) {
kernel32.NewProc("SetConsoleCP").Call(uintptr(cp))
}
setConsoleOutputCP := func(cp uint32) {
kernel32.NewProc("SetConsoleOutputCP").Call(uintptr(cp))
}
inCP := getConsoleCP()
outCP := getConsoleOutputCP()
setConsoleCP(CP_UTF8)
setConsoleOutputCP(CP_UTF8)
closer.Bind(func() { setConsoleCP(inCP) })
closer.Bind(func() { setConsoleOutputCP(outCP) })
}