forked from akshinmustafayev/EasyJob
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconfig.json
89 lines (89 loc) · 2.51 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
{
"default_powershell_path": "C:\\Windows\\System32\\WindowsPowerShell\\v1.0\\powershell.exe",
"console_background": "Black",
"console_foreground": "White",
"clear_events_when_reload": true,
"restrictions": {
"block_tabs_remove": false,
"block_buttons_remove": false
},
"tabs": [
{
"header": "Common actions",
"buttons": [
{
"text": "test01",
"description": "Some test script",
"script": "scripts\\common\\test01.ps1",
"scriptpathtype": "relative",
"arguments": []
},
{
"text": "test02",
"description": "Some second test script",
"script": "scripts\\test02.ps1",
"scriptpathtype": "relative",
"arguments": []
},
{
"text": "Absolute script",
"description": "",
"script": "C:\\scripts\\absolute_script.ps1",
"scriptpathtype": "absolute",
"arguments": []
},
{
"text": "test03",
"description": "Some test 03 script with arguments",
"script": "scripts\\common\\test03.ps1",
"scriptpathtype": "relative",
"arguments": [
{
"argument_question": "Enter IP address or DNS name",
"argument_answer": ""
}
]
},
{
"text": "test04",
"description": "Some test 04 script with arguments",
"script": "scripts\\common\\test04.ps1",
"scriptpathtype": "relative",
"arguments": [
{
"argument_question": "What is your name?",
"argument_answer": ""
},
{
"argument_question": "What is your surname",
"argument_answer": ""
},
{
"argument_question": "No, really what is your name?",
"argument_answer": ""
}
]
}
]
},
{
"header": "Second Tab",
"buttons": [
{
"text": "Some button",
"description": "no description",
"script": "scripts\\some_button_script.ps1",
"scriptpathtype": "relative",
"arguments": []
},
{
"text": "Button tst 12345",
"description": "",
"script": "D:\\net50\\test04.ps1",
"scriptpathtype": "absolute",
"arguments": []
}
]
}
]
}