-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathETTConfig.json
More file actions
43 lines (41 loc) · 1.42 KB
/
ETTConfig.json
File metadata and controls
43 lines (41 loc) · 1.42 KB
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
{
"ETTSettingsGUI" : true,
"AutoUpdateCheckerEnabled" : true,
"AdminMode" : false,
"BrandColor" : "#023a24",
"LogoLocation" : null,
"BackgroundImagePath" : "",
"ETTApplicationTitle" : "",
"ETTHeaderText" : "",
"ETTHeaderTextColor" : "White",
"ApplicationTimeoutEnabled" : false,
"ApplicationTimeoutLength" : 300,
"EnableCustomTools" : true,
"RAMCheckActive": false,
"RAMCheckMinimum" : 8,
"DriveSpaceCheckActive" : false,
"DriveSpaceCheckMinimum" : 20,
"WinVersionCheckActive" : false,
"WinVersionTarget": "24H2",
"DefenderEnrollCheckActive" : false,
"AzureADTenantId" : "",
"LAPSAppClientId" : "",
"BitLockerAppClientId" : "",
"AnimeMode" : false,
"CustomFunctions": [
{
"displayName": "Display Hello World",
"description": "Returns a friendly 'Hello, World!' message.",
"tab" : "",
"requireAdmin" : true,
"codeBlock": "$wshell = New-Object -ComObject Wscript.Shell; $wshell.Popup('Hello, World!', 0, 'Hello, World!', 0x1)"
},
{
"displayName": "Display Random Number",
"description": "Generates a random number between 1 and 100.",
"tab": "",
"requireAdmin" : false,
"codeBlock": "$rand = (Get-Random -Minimum 1 -Maximum 100); $wshell = New-Object -ComObject Wscript.Shell; $wshell.Popup($rand, 0, $rand, 0x1)"
}
]
}