Skip to content

Commit b4371bd

Browse files
authored
feat: Add Tiny11 option (#111)
1 parent 46de9e8 commit b4371bd

File tree

2 files changed

+22
-16
lines changed

2 files changed

+22
-16
lines changed

readme.md

Lines changed: 11 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -76,16 +76,17 @@ docker run -it --rm -p 8006:8006 --device=/dev/kvm --cap-add NET_ADMIN --stop-ti
7676

7777
| **Value** | **Description** | **Server** | **Transfer** | **Size** |
7878
|---|---|---|---|---|
79-
| ```win11``` | Windows 11 Pro | Microsoft | Fast | 6.4 GB |
80-
| ```win10``` | Windows 10 Pro | Microsoft | Fast | 5.8 GB |
81-
| ```ltsc10``` | Windows 10 LTSC | Microsoft | Fast | 4.6 GB |
82-
| ```win81``` | Windows 8.1 Pro | Microsoft | Fast | 4.2 GB |
83-
| ```win7``` | Windows 7 SP1 | Bob Pony | Medium | 3.0 GB |
84-
| ```win22``` | Windows Server 2022 | Microsoft | Fast | 4.7 GB |
85-
| ```win19``` | Windows Server 2019 | Microsoft | Fast | 5.3 GB |
86-
| ```win16``` | Windows Server 2016 | Microsoft | Fast | 6.5 GB |
87-
| ```tiny10``` | Tiny 10 | Archive.org | Slow | 3.6 GB |
88-
| ```tiny11``` | Tiny 11 Core | Archive.org | Slow | 2.1 GB |
79+
| `win11` | Windows 11 Pro | Microsoft | Fast | 6.4 GB |
80+
| `win10` | Windows 10 Pro | Microsoft | Fast | 5.8 GB |
81+
| `ltsc10` | Windows 10 LTSC | Microsoft | Fast | 4.6 GB |
82+
| `win81` | Windows 8.1 Pro | Microsoft | Fast | 4.2 GB |
83+
| `win7` | Windows 7 SP1 | Bob Pony | Medium | 3.0 GB |
84+
| `win22` | Windows Server 2022 | Microsoft | Fast | 4.7 GB |
85+
| `win19` | Windows Server 2019 | Microsoft | Fast | 5.3 GB |
86+
| `win16` | Windows Server 2016 | Microsoft | Fast | 6.5 GB |
87+
| `tiny10` | Tiny 10 | Archive.org | Slow | 3.6 GB |
88+
| `tiny11` | Tiny 11 | Archive.org | Slow | 3.8 GB |
89+
| `core11` | Tiny 11 Core | Archive.org | Slow | 2.1 GB |
8990

9091
* ### How do I increase the amount of CPU or RAM?
9192

src/install.sh

Lines changed: 11 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -48,21 +48,26 @@ if [[ "${VERSION,,}" == "win10x64-enterprise-ltsc-eval" ]]; then
4848
DETECTED="win10x64-ltsc"
4949
fi
5050

51-
if [[ "${VERSION,,}" == "tiny10" ]]; then
52-
DETECTED="win10x64-ltsc"
53-
VERSION="https://archive.org/download/tiny-10-23-h2/tiny10%20x64%2023h2.iso"
54-
fi
55-
5651
if [[ "${VERSION,,}" == "win7x64" ]]; then
5752
DETECTED="win7x64"
5853
VERSION="https://dl.bobpony.com/windows/7/en_windows_7_enterprise_with_sp1_x64_dvd_u_677651.iso"
5954
fi
6055

61-
if [[ "${VERSION,,}" == "tiny11" ]]; then
56+
if [[ "${VERSION,,}" == "core11" ]]; then
6257
DETECTED="win11x64"
6358
VERSION="https://archive.org/download/tiny-11-core-x-64-beta-1/tiny11%20core%20x64%20beta%201.iso"
6459
fi
6560

61+
if [[ "${VERSION,,}" == "tiny11" ]]; then
62+
DETECTED="win11x64"
63+
VERSION="https://archive.org/download/tiny11-2311/tiny11%202311%20x64.iso"
64+
fi
65+
66+
if [[ "${VERSION,,}" == "tiny10" ]]; then
67+
DETECTED="win10x64-ltsc"
68+
VERSION="https://archive.org/download/tiny-10-23-h2/tiny10%20x64%2023h2.iso"
69+
fi
70+
6671
CUSTOM="custom.iso"
6772

6873
[ ! -f "$STORAGE/$CUSTOM" ] && CUSTOM="Custom.iso"

0 commit comments

Comments
 (0)