-
Notifications
You must be signed in to change notification settings - Fork 0
/
data.json
98 lines (98 loc) · 3.16 KB
/
data.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
97
98
{
"actions": [
{
"title": "Clean Up Disk Space",
"description": "Frees up disk space by deleting temporary files and emptying the recycle bin.",
"name": "cleanup",
"type": [],
"requireAdmin": false,
"requireDisks": false
},
{
"title": "Clean Up Temporary Files",
"description": "Removes temporary files to free up disk space.",
"name": "temp_cleaning",
"type": [],
"requireAdmin": false,
"requireDisks": false
},
{
"title": "Defragment Disks",
"description": "Optimizes disk performance by defragmenting the hard drives. (only applicable to HDDs)",
"name": "defragmentation",
"type": [],
"requireAdmin": true,
"requireDisks": true
},
{
"title": "Retrim Disks",
"description": "Improves SSD performance by running a retrim operation. (only applicable to SSDs)",
"name": "retrim",
"type": [],
"requireAdmin": true,
"requireDisks": true
},
{
"title": "Update Packages",
"description": "Updates system packages using the Windows Package Manager.",
"name": "package_updates",
"type": [
{
"all": "All Packages"
},
{
"unknown": "All packages with unknown status"
}
],
"requireAdmin": true,
"requireDisks": false
},
{
"title": "Update Windows",
"description": "Installs the latest Windows updates using the Windows Update Manager.",
"name": "windows_updates",
"type": [],
"requireAdmin": true,
"requireDisks": false
},
{
"title": "Check Disk Health",
"description": "Verifies the health status of the disks.",
"name": "disk_checking",
"type": [],
"requireAdmin": true,
"requireDisks": true
},
{
"title": "Windows Defender Scan",
"description": "Performs a scan of your system using Windows Defender.",
"name": "defender_scan",
"type": [
{
"quick": "Quick Scan"
},
{
"full": "Full Scan"
}
],
"requireAdmin": true,
"requireDisks": false
},
{
"title": "Check Windows Files",
"description": "Checks the integrity of Windows system files for any corruption.",
"name": "file_checking",
"type": [],
"requireAdmin": false,
"requireDisks": false
},
{
"title": "Remove Windows Bloatware",
"description": "Removes bloatware from Windows OS.",
"name": "bloatware_removal",
"type": [],
"requireAdmin": true,
"requireDisks": false
}
]
}