gitextract_96h0babq/ ├── .devcontainer/ │ ├── 010 - Windows 11 Enterprise/ │ │ └── devcontainer.json │ ├── 020 - Windows 11 LTSC/ │ │ └── devcontainer.json │ ├── 030 - Windows 10 Pro/ │ │ └── devcontainer.json │ ├── 040 - Windows 10 Enterprise/ │ │ └── devcontainer.json │ ├── 050 - Windows 10 LTSC/ │ │ └── devcontainer.json │ ├── 060 - Windows 8.1 Enterprise/ │ │ └── devcontainer.json │ ├── 070 - Windows 7 Ultimate/ │ │ └── devcontainer.json │ ├── 080 - Windows Vista Ultimate/ │ │ └── devcontainer.json │ ├── 090 - Windows XP Professional/ │ │ └── devcontainer.json │ ├── 100 - Windows 2000 Professional/ │ │ └── devcontainer.json │ ├── 110 - Windows Server 2025/ │ │ └── devcontainer.json │ ├── 120 - Windows Server 2022/ │ │ └── devcontainer.json │ ├── 130 - Windows Server 2019/ │ │ └── devcontainer.json │ ├── 140 - Windows Server 2016/ │ │ └── devcontainer.json │ ├── 150 - Windows Server 2012 R2/ │ │ └── devcontainer.json │ ├── 160 - Windows Server 2008 R2/ │ │ └── devcontainer.json │ ├── 170 - Windows Server 2003/ │ │ └── devcontainer.json │ ├── 180 - Tiny11/ │ │ └── devcontainer.json │ ├── 190 - Tiny11 Core/ │ │ └── devcontainer.json │ ├── 200 - Tiny11 Nano/ │ │ └── devcontainer.json │ ├── 210 - Tiny10/ │ │ └── devcontainer.json │ ├── codespaces.yml │ └── devcontainer.json ├── .dockerignore ├── .github/ │ ├── ISSUE_TEMPLATE/ │ │ ├── 1-issue.yml │ │ ├── 2-feature.yml │ │ ├── 3-bug.yml │ │ ├── 4-question.yml │ │ └── config.yml │ ├── dependabot.yml │ ├── renovate.json │ └── workflows/ │ ├── build.yml │ ├── check.yml │ ├── hub.yml │ ├── review.yml │ └── test.yml ├── .gitignore ├── Dockerfile ├── assets/ │ ├── win10x64-enterprise-eval.xml │ ├── win10x64-enterprise.xml │ ├── win10x64-iot.xml │ ├── win10x64-ltsc.xml │ ├── win10x64.xml │ ├── win11x64-enterprise-eval.xml │ ├── win11x64-enterprise.xml │ ├── win11x64-iot.xml │ ├── win11x64-ltsc.xml │ ├── win11x64.xml │ ├── win2008r2-eval.xml │ ├── win2008r2.xml │ ├── win2012r2-eval.xml │ ├── win2012r2.xml │ ├── win2016-eval.xml │ ├── win2016.xml │ ├── win2019-eval.xml │ ├── win2019-hv.xml │ ├── win2019.xml │ ├── win2022-eval.xml │ ├── win2022.xml │ ├── win2025-eval.xml │ ├── win2025.xml │ ├── win7x64-enterprise-eval.xml │ ├── win7x64-enterprise.xml │ ├── win7x64-ultimate.xml │ ├── win7x64.xml │ ├── win7x86-enterprise.xml │ ├── win7x86-ultimate.xml │ ├── win7x86.xml │ ├── win81x64-enterprise-eval.xml │ ├── win81x64-enterprise.xml │ ├── win81x64.xml │ ├── winvistax64-enterprise.xml │ ├── winvistax64-ultimate.xml │ ├── winvistax64.xml │ ├── winvistax86-enterprise.xml │ ├── winvistax86-ultimate.xml │ └── winvistax86.xml ├── compose.yml ├── kubernetes.yml ├── license.md ├── readme.md └── src/ ├── define.sh ├── entry.sh ├── install.sh ├── mido.sh ├── power.sh └── samba.sh