Skip to content

Commit 7164029

Browse files
Add files via upload
1 parent 90ac5ba commit 7164029

30 files changed

Lines changed: 273 additions & 0 deletions

docs/index.html

Lines changed: 273 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,273 @@
1+
<!DOCTYPE html>
2+
<html lang="en">
3+
<head>
4+
<meta charset="UTF-8">
5+
<title>AMBCT - Automatic Manual Backup Creation Tool</title>
6+
7+
<style>
8+
body {
9+
background-color: #000;
10+
color: #00FF00;
11+
font-family: monospace;
12+
max-width: 1100px;
13+
margin: auto;
14+
padding: 2rem;
15+
line-height: 1.6;
16+
}
17+
18+
h1 {
19+
border-bottom: 2px solid #00FF00;
20+
padding-bottom: 0.5rem;
21+
}
22+
23+
h2 {
24+
border-bottom: 1px solid #00FF00;
25+
margin-top: 2rem;
26+
}
27+
28+
.row {
29+
display: flex;
30+
justify-content: space-between;
31+
gap: 10px;
32+
flex-wrap: wrap;
33+
}
34+
35+
.box {
36+
width: 18%;
37+
text-align: center;
38+
}
39+
40+
.box img {
41+
width: 100%;
42+
border: 2px solid #00FF00;
43+
}
44+
45+
.section-img {
46+
width: 80%;
47+
display: block;
48+
margin: 1rem auto;
49+
border: 2px solid #00FF00;
50+
}
51+
52+
.desc {
53+
text-align: center;
54+
margin-bottom: 2rem;
55+
}
56+
</style>
57+
</head>
58+
59+
<body>
60+
61+
<h1>AMBCT – Automatic Manual Backup Creation Tool</h1>
62+
63+
<p><strong>Version:</strong> v1.61 (64-bit)</p>
64+
<p>A performance-aware backup system using wimlib-imagex.</p>
65+
66+
<h2>Compatibility</h2>
67+
68+
<div class="row">
69+
<div class="box">
70+
<img src="sources/VistaRunning.png">
71+
<p>Windows Vista</p>
72+
</div>
73+
<div class="box">
74+
<img src="sources/7Running.png">
75+
<p>Windows 7</p>
76+
</div>
77+
<div class="box">
78+
<img src="sources/8Running.png">
79+
<p>Windows 8</p>
80+
</div>
81+
<div class="box">
82+
<img src="sources/10Running.png">
83+
<p>Windows 10</p>
84+
</div>
85+
<div class="box">
86+
<img src="sources/11Running.png">
87+
<p>Windows 11</p>
88+
</div>
89+
</div>
90+
91+
<p class="desc">
92+
AMBCT runs on a wide range of Windows versions, from legacy systems like Vista to modern environments like Windows 11.
93+
It does not rely on modern APIs or internet connectivity, making it usable even in restricted or offline setups.
94+
</p>
95+
96+
<h2>Main Screen</h2>
97+
98+
<img class="section-img" src="sources/Main.png">
99+
100+
<p class="desc">
101+
The main menu is the central entry point of AMBCT.
102+
From here, users can choose between creating a backup, appending to an existing one, or configuring backup images.
103+
</p>
104+
105+
<h2>Create Backup</h2>
106+
107+
<img class="section-img" src="sources/Create.png">
108+
109+
<p class="desc">
110+
This mode allows you to create a completely new backup from a drive or folder.
111+
The process guides you step-by-step, ensuring all necessary information is selected correctly.
112+
</p>
113+
114+
<img class="section-img" src="sources/BackupDrive.png">
115+
116+
<p class="desc">
117+
Here you select the source drive or folder that should be backed up.
118+
AMBCT automatically detects drives and displays useful information such as free space and size.
119+
</p>
120+
121+
<img class="section-img" src="sources/TargetDrive.png">
122+
123+
<p class="desc">
124+
In this step, you choose where the backup will be stored.
125+
Selecting a suitable target location is important to ensure enough space is available.
126+
</p>
127+
128+
<img class="section-img" src="sources/Compression.png">
129+
130+
<p class="desc">
131+
AMBCT offers multiple compression methods depending on your needs.
132+
You can prioritize speed or compression ratio depending on available storage and performance.
133+
</p>
134+
135+
<img class="section-img" src="sources/COptions.png">
136+
137+
<p class="desc">
138+
Additional options such as integrity checks or automatic shutdown can be enabled here.
139+
These options allow further customization of the backup process.
140+
</p>
141+
142+
<img class="section-img" src="sources/Benchmark.png">
143+
144+
<p class="desc">
145+
AMBCT performs a real benchmark before starting the backup.
146+
It measures CPU performance as well as disk read and write speeds to calculate a realistic ETA.
147+
</p>
148+
149+
<img class="section-img" src="sources/PreCreate.png">
150+
151+
<p class="desc">
152+
All selected settings are displayed for final confirmation.
153+
This ensures that no mistakes are made before starting the backup process.
154+
</p>
155+
156+
<img class="section-img" src="sources/CreateEnd.png">
157+
158+
<p class="desc">
159+
After completion, the backup is finalized and optionally verified.
160+
The process ensures that all data has been written correctly.
161+
</p>
162+
163+
<h2>Append Backup</h2>
164+
165+
<img class="section-img" src="sources/SelectExistingBackup.png">
166+
167+
<p class="desc">
168+
In append mode, an existing backup file is selected.
169+
This allows adding new data without creating a completely new backup.
170+
</p>
171+
172+
<img class="section-img" src="sources/AOptions.png">
173+
174+
<p class="desc">
175+
Options can be configured similarly to the create mode.
176+
Compression is automatically matched to the existing backup for consistency.
177+
</p>
178+
179+
<img class="section-img" src="sources/Append.png">
180+
181+
<p class="desc">
182+
The append process integrates the new data into the existing backup.
183+
This avoids duplication and keeps backups organized in a single file.
184+
</p>
185+
186+
<img class="section-img" src="sources/AppendEnd.png">
187+
188+
<p class="desc">
189+
After completion, the updated backup is verified again.
190+
This ensures the integrity of both old and newly added data.
191+
</p>
192+
193+
<h2>Image Configurator</h2>
194+
195+
<img class="section-img" src="sources/ConfiguratorSelect.png">
196+
197+
<p class="desc">
198+
The configurator allows you to manage existing backup images.
199+
You can inspect and modify their properties without extracting them.
200+
</p>
201+
202+
<img class="section-img" src="sources/ConfiguratorOverview.png">
203+
204+
<p class="desc">
205+
This overview displays all information about the selected backup.
206+
It includes metadata such as size, compression type, and contained images.
207+
</p>
208+
209+
<img class="section-img" src="sources/ConfigSelectIndex.png">
210+
211+
<p class="desc">
212+
Select a specific index inside the backup to modify it.
213+
Each index represents a separate backup entry within the WIM file.
214+
</p>
215+
216+
<img class="section-img" src="sources/ConfigChangeValue.png">
217+
218+
<p class="desc">
219+
Here you can change properties like name or description.
220+
Changes are applied directly without needing to rebuild the backup.
221+
</p>
222+
223+
<img class="section-img" src="sources/DeleteSelectIndex.png">
224+
225+
<p class="desc">
226+
You can remove individual backup entries if they are no longer needed.
227+
This helps to keep backup files clean and organized.
228+
</p>
229+
230+
<img class="section-img" src="sources/DeleteDone.png">
231+
232+
<p class="desc">
233+
After deletion, the backup is updated immediately.
234+
The operation is performed safely using wimlib.
235+
</p>
236+
237+
<img class="section-img" src="sources/CheckDone.png">
238+
239+
<p class="desc">
240+
Backups can be verified at any time.
241+
This ensures long-term data integrity and reliability.
242+
</p>
243+
244+
<h2>Help</h2>
245+
246+
<img class="section-img" src="sources/Help.png">
247+
248+
<p class="desc">
249+
The built-in help section explains all available options.
250+
It provides quick guidance directly inside the program.
251+
</p>
252+
253+
<h2>Execution</h2>
254+
255+
<img class="section-img" src="sources/Uac.png">
256+
257+
<p class="desc">
258+
AMBCT requires administrator privileges to function correctly.
259+
This is necessary for accessing drives and creating system snapshots.
260+
</p>
261+
262+
<h2>Summary</h2>
263+
264+
<p>
265+
AMBCT is a lightweight but powerful backup system designed for both modern and legacy Windows systems.
266+
</p>
267+
268+
<p>
269+
It combines manual control with real performance analysis to ensure reliable and predictable backups.
270+
</p>
271+
272+
</body>
273+
</html>

docs/sources/10Running.png

421 KB
Loading

docs/sources/11Running.png

400 KB
Loading

docs/sources/7Running.png

918 KB
Loading

docs/sources/8Running.png

439 KB
Loading

docs/sources/AOptions.png

86.1 KB
Loading

docs/sources/Append.png

32.8 KB
Loading

docs/sources/AppendEnd.png

119 KB
Loading

docs/sources/BackupDrive.png

78.1 KB
Loading

docs/sources/Benchmark.png

30.9 KB
Loading

0 commit comments

Comments
 (0)