Skip to content

Commit

Permalink
feat: Add Tiny11 option (#111)
Browse files Browse the repository at this point in the history
  • Loading branch information
kroese authored Jan 27, 2024
1 parent 46de9e8 commit b4371bd
Show file tree
Hide file tree
Showing 2 changed files with 22 additions and 16 deletions.
21 changes: 11 additions & 10 deletions readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -76,16 +76,17 @@ docker run -it --rm -p 8006:8006 --device=/dev/kvm --cap-add NET_ADMIN --stop-ti

| **Value** | **Description** | **Server** | **Transfer** | **Size** |
|---|---|---|---|---|
| ```win11``` | Windows 11 Pro | Microsoft | Fast | 6.4 GB |
| ```win10``` | Windows 10 Pro | Microsoft | Fast | 5.8 GB |
| ```ltsc10``` | Windows 10 LTSC | Microsoft | Fast | 4.6 GB |
| ```win81``` | Windows 8.1 Pro | Microsoft | Fast | 4.2 GB |
| ```win7``` | Windows 7 SP1 | Bob Pony | Medium | 3.0 GB |
| ```win22``` | Windows Server 2022 | Microsoft | Fast | 4.7 GB |
| ```win19``` | Windows Server 2019 | Microsoft | Fast | 5.3 GB |
| ```win16``` | Windows Server 2016 | Microsoft | Fast | 6.5 GB |
| ```tiny10``` | Tiny 10 | Archive.org | Slow | 3.6 GB |
| ```tiny11``` | Tiny 11 Core | Archive.org | Slow | 2.1 GB |
| `win11` | Windows 11 Pro | Microsoft | Fast | 6.4 GB |
| `win10` | Windows 10 Pro | Microsoft | Fast | 5.8 GB |
| `ltsc10` | Windows 10 LTSC | Microsoft | Fast | 4.6 GB |
| `win81` | Windows 8.1 Pro | Microsoft | Fast | 4.2 GB |
| `win7` | Windows 7 SP1 | Bob Pony | Medium | 3.0 GB |
| `win22` | Windows Server 2022 | Microsoft | Fast | 4.7 GB |
| `win19` | Windows Server 2019 | Microsoft | Fast | 5.3 GB |
| `win16` | Windows Server 2016 | Microsoft | Fast | 6.5 GB |
| `tiny10` | Tiny 10 | Archive.org | Slow | 3.6 GB |
| `tiny11` | Tiny 11 | Archive.org | Slow | 3.8 GB |
| `core11` | Tiny 11 Core | Archive.org | Slow | 2.1 GB |

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

Expand Down
17 changes: 11 additions & 6 deletions src/install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -48,21 +48,26 @@ if [[ "${VERSION,,}" == "win10x64-enterprise-ltsc-eval" ]]; then
DETECTED="win10x64-ltsc"
fi

if [[ "${VERSION,,}" == "tiny10" ]]; then
DETECTED="win10x64-ltsc"
VERSION="https://archive.org/download/tiny-10-23-h2/tiny10%20x64%2023h2.iso"
fi

if [[ "${VERSION,,}" == "win7x64" ]]; then
DETECTED="win7x64"
VERSION="https://dl.bobpony.com/windows/7/en_windows_7_enterprise_with_sp1_x64_dvd_u_677651.iso"
fi

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

if [[ "${VERSION,,}" == "tiny11" ]]; then
DETECTED="win11x64"
VERSION="https://archive.org/download/tiny11-2311/tiny11%202311%20x64.iso"
fi

if [[ "${VERSION,,}" == "tiny10" ]]; then
DETECTED="win10x64-ltsc"
VERSION="https://archive.org/download/tiny-10-23-h2/tiny10%20x64%2023h2.iso"
fi

CUSTOM="custom.iso"

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

0 comments on commit b4371bd

Please sign in to comment.