-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathSysAndRec.xaml
More file actions
185 lines (185 loc) · 4.9 KB
/
SysAndRec.xaml
File metadata and controls
185 lines (185 loc) · 4.9 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
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
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
<Page
x:Class="MakuTweakerNew.SysAndRec" xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006" xmlns:d="http://schemas.microsoft.com/expression/blend/2008" xmlns:local="clr-namespace:MakuTweakerNew" xmlns:controls="clr-namespace:MicaWPF.Controls;assembly=MicaWPF" xmlns:ui="http://schemas.modernwpf.com/2019"
Title="System and Recovery">
<Grid>
<ScrollViewer
VerticalScrollBarVisibility="Auto"
HorizontalScrollBarVisibility="Hidden">
<StackPanel>
<TextBlock
Name="label"
HorizontalAlignment="Left"
Margin="24,11,0,0"
TextWrapping="Wrap"
Text="System and Recovery"
VerticalAlignment="Top"
FontSize="32"
FontFamily="Segoe UI Semibold" />
<TextBlock
Name="l3"
HorizontalAlignment="Left"
Margin="24,10,0,0"
TextWrapping="Wrap"
Text="Repair System Using SFC"
VerticalAlignment="Top"
FontSize="16" />
<controls:Button
Name="sfc"
Margin="24,5,589,0"
Content="Repair"
Height="28"
VerticalAlignment="Top"
Click="sfc_Click" />
<TextBlock
Name="l4"
HorizontalAlignment="Left"
Margin="24,10,0,0"
TextWrapping="Wrap"
Text="Repair System Using DISM"
VerticalAlignment="Top"
FontSize="16" />
<controls:Button
Name="dism"
Margin="24,5,589,0"
Content="Repair"
Height="28"
VerticalAlignment="Top"
Click="dism_Click" />
<TextBlock
Name="l6"
HorizontalAlignment="Left"
Margin="24,10,0,0"
TextWrapping="Wrap"
Text="Clean TEMP Folder"
VerticalAlignment="Top"
FontSize="16" />
<controls:Button
Name="temp"
Margin="24,5,589,0"
Content="Clean"
Height="28"
VerticalAlignment="Top"
Click="temp_Click" />
<TextBlock
Name="l9"
HorizontalAlignment="Left"
Margin="24,10,0,0"
TextWrapping="Wrap"
Text="Make a Report of The Battery Characteristics"
VerticalAlignment="Top"
FontSize="16" />
<controls:Button
Name="report"
Margin="24,5,589,0"
Content="Report"
Height="28"
VerticalAlignment="Top"
Click="report_Click" />
<ui:ToggleSwitch
Name="t16"
Header="Disable Sticky Keys"
Margin="24,10,0,0"
VerticalAlignment="Top"
FontSize="16"
Toggled="t16_Toggled" />
<ui:ToggleSwitch
Name="t10"
Header="Disable Core Isolation / Memory Integrity"
FontSize="16"
VerticalAlignment="Top"
Margin="24,10,0,0"
Toggled="t10_Toggled" />
<ui:ToggleSwitch
Name="t15"
Header="Disable User Account Control"
FontSize="16"
VerticalAlignment="Top"
Margin="24,10,0,0"
Toggled="t15_Toggled" />
<ui:ToggleSwitch
Name="t14"
Header="Disable SmartScreen"
FontSize="16"
VerticalAlignment="Top"
Margin="24,10,0,0"
Toggled="t14_Toggled" />
<ui:ToggleSwitch
Name="t11"
Header="Disable Hibernation"
FontSize="16"
VerticalAlignment="Top"
Margin="24,10,0,0"
Toggled="t11_Toggled" />
<ui:ToggleSwitch
Name="t13"
Header="Disable Sleep Timeout"
FontSize="16"
VerticalAlignment="Top"
Margin="24,10,0,0"
Toggled="t13_Toggled" />
<ui:ToggleSwitch
Name="st5"
Header="Disable Online Search in Start Menu via Bing"
Margin="24,10,0,0"
VerticalAlignment="Top"
FontSize="16"
Toggled="st5_Toggled" />
<ui:ToggleSwitch
Name="t18"
Header="Disable Virtualization-based Security"
FontSize="16"
VerticalAlignment="Top"
Margin="24,10,0,0"
Toggled="t18_Toggled" />
<ui:ToggleSwitch
Name="t12"
Header="Disable Swap File"
FontSize="16"
VerticalAlignment="Top"
Margin="24,10,0,0"
Toggled="t12_Toggled" />
<ui:ToggleSwitch
Name="sr1"
Header="Enable Old OS Bootloader"
Margin="24,10,0,0"
VerticalAlignment="Top"
FontSize="16"
Toggled="sr1_Toggled" />
<ui:ToggleSwitch
Name="sr4"
Header="Additional Options on Each Boot"
Margin="24,10,0,0"
VerticalAlignment="Top"
FontSize="16"
Toggled="sr4_Toggled" />
<ui:ToggleSwitch
Name="t9"
Header="Set Chkdsk Timeout to 1 Minute"
Margin="24,10,0,0"
VerticalAlignment="Top"
FontSize="16"
Toggled="t9_Toggled" />
<ui:ToggleSwitch
Name="sr5"
Header="Apply CompactOS System Compression"
Margin="24,10,0,0"
VerticalAlignment="Top"
FontSize="16"
Toggled="sr5_Toggled" />
<ui:ToggleSwitch
Name="sr6"
Header="Disable BitLocker Automatic Encryption"
Margin="24,10,0,0"
VerticalAlignment="Top"
FontSize="16"
Toggled="sr6_Toggled" />
<Rectangle
HorizontalAlignment="Left"
Height="17"
Margin="3,0,0,0"
VerticalAlignment="Top"
Width="67" />
</StackPanel>
</ScrollViewer>
</Grid>
</Page>