-
Notifications
You must be signed in to change notification settings - Fork 0
/
config.json
96 lines (96 loc) · 2.48 KB
/
config.json
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
{
"name": "powershell",
"viewName": "PowerShell Remoting",
"type": "executer",
"exposeRoute": false,
"execProgram": "node",
"main": "app.js",
"version": "1.2.0",
"imgUrl": "logo.png",
"description": "Windows task automation and configuration management",
"category": "Basic Tools",
"keywords": [
"scripting",
"microsoft",
"windows",
"dotnet",
"shell",
"commandline",
".net",
"remoting",
"winrm"
],
"auth": {
"authId": "WindowsUsernamePassword",
"params": [
{
"name": "host",
"viewName": "Hostname",
"description": "Hostname or IP address of Windows server",
"type": "string",
"placeholder": "12.13.14.15"
},
{
"name": "port",
"viewName": "Port",
"description": "Port, if other than standard 5985 is used",
"type": "string",
"placeholder": "5985"
},
{
"name": "username",
"viewName": "Username",
"description": "Windows user name",
"type": "string",
"required": true,
"placeholder": "Administrator"
},
{
"name": "password",
"viewName": "Password",
"description": "Windows password",
"placeholder": "please select one",
"type": "vault",
"required": true
}
]
},
"methods": [
{
"name": "execCommand",
"viewName": "Execute remote command",
"params": [
{
"name": "actionHost",
"viewName": "Hostname",
"description": "Hostname or IP address of Windows server",
"type": "string",
"required": false,
"placeholder": "12.13.14.15"
},
{
"name": "actionPort",
"viewName": "Port",
"description": "Port, if other than standard 5985 is used",
"type": "string",
"placeholder": "5985"
},
{
"name": "command",
"viewName": "Command",
"description": "Command to execute",
"type": "string",
"placeholder": "dir",
"required": true
},
{
"name": "isPowershell",
"viewName": "Use PowerShell Exe",
"description": "Enable to run the command using powershell.exe -NoProfile -NonInteractive -NoLogo -ExecutionPolicy Bypass -InputFormat Text -Command \"& { <the command> }\", instead of normal WinRM",
"type": "boolean",
"default": false
}
]
}
]
}