-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathJmservisor.ahk
122 lines (115 loc) · 2.2 KB
/
Jmservisor.ahk
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
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
if(A_Args[1] = "-"){
text := ""
VarSetCapacity(text, 4096)
DllCall(".\rail_decrypt\decrypt_w","Str", A_Args[2], "Str", text)
if (ErrorLevel != 0){
MsgBox % "ErrorLevel" ErrorLevel
}
Run,jmservisor %text%
return
}
if(A_Args[1]="chrome"){
Run,%2% --app=%3% --start-maximized
WinActivate, ahk_exe chrome.exe
BlockInput,on
Sleep, 10000
SetKeyDelay, 100
Send, {Tab}
Sleep, 300
Send, %4% ;用户名
Sleep, 300
Send, {Tab}
Sleep, 300
SendRaw, %5% ;密码
Sleep, 300
Send, {Tab}
Sleep, 300
Send, {Enter}
BlockInput,off
return
}
if(A_Args[1]="mysql_workbench"){
Run, %2%
WinActivate, ahk_exe MySQLWorkbench.exe
BlockInput,on
Sleep, 10000
SetKeyDelay, 100
Send , ^u
Send, {Tab} ;跳过保存连接选项
Send, {Tab} ;跳过连接选型选项
Send, {Tab} ;跳过Tag选项
Sleep, 300
Send, ^a
Send, {Delete}
Send, %3% ;IP
Sleep, 300
Send, {Tab}
Send, ^a
Send, {Delete}
Send, %4% ;端口
Sleep, 300
Send, {Tab}
Send, ^a
Send, {Delete}
Send, %6% ;用户名
Sleep, 300
Send, {Tab}
Send, {Enter}
Sleep, 300
SendRaw, %7% ;密码
Sleep, 300
Send, {Enter}
Sleep, 300
Send, {Tab}
Send, {Tab}
Send, ^a
Send, {Delete}
Sleep, 300
Send, %5% ;默认数据库
Sleep, 300
Send, {Enter}
BlockInput,off
return
}
if(A_Args[1]="vmware_client"){
Run,%2%
WinActivate, ahk_exe VpxClient.exe
BlockInput,on
Sleep, 10000
SetKeyDelay, 100
; 第二次登录 有IP记录情况
Send, {Tab}
Send, {Tab}
Send, {Tab}
Send, {Tab}
Send, {Tab}
Sleep, 300
Send, %3% ;IP
Send, {Tab}
Sleep, 300
Send, %4% ;用户名
Sleep, 300
Send, {Tab}
Sleep, 300
SendRaw, %5% ;密码
Sleep, 300
Send, {Enter}
BlockInput,off
return
}
if(A_Args[1]="custom"){
if(!FileExist(A_Args[2]) or InStr(FileExist(A_Args[2]),"D")){
return
}
params := ""
if(A_Args.length() > 2){
for index,param in A_Args{
if(index > 2){
params := params " " param
}
}
}
Run,%2% %params%
return
}
return