Automated pipeline for building and optimizing Windows ISO images via GitHub Actions.
Combines UUP dump ISO assembly with Tiny11 optimization into a single workflow.
UUP dump API β Download UUP files β Build ISO β Finalize ISO β Upload raw ISO artifact
β ββ optional ISO tests
autounattend.xml + optional Tiny11 ββ optional Yandex import
- UUP dump β fetches Windows update packages and builds a clean ISO
- Tiny11 β removes bloatware, applies registry tweaks, bypasses system requirements
- Unattended setup β embeds
autounattend.xmlin every final ISO
- Fork this repository
- Go to Actions β Build Windows
- Select parameters and click Run workflow
- Download the ISO from Artifacts
| Input | Options | Default |
|---|---|---|
| Version | Windows 11 25H2, 26H2, Beta, 26H1, Experimental, Future Platforms | Windows 11 25H2 |
| Architecture | x64, arm64 | x64 |
| Edition | Pro, Home | Pro |
| Language | 38 languages (ar-sa β zh-tw) | English (United States) |
| Revision | Optional build matching the selected version, for example 26340.9233 |
β |
| Input | Description | Default |
|---|---|---|
| ESD | Use ESD compression | false |
| NetFx3 | Add .NET Framework 3.5 | false |
| Tiny11 | Apply Tiny11 optimization | true |
| Yandex Disk | Privately upload the finished ISO and SHA256 sidecar to Yandex Disk | false |
| ISO test | Quickly validate the x64 ISO and verify Windows PE boot in QEMU | false |
| Full install test | Validate the ISO, install x64 Windows in QEMU, and audit the first boot | false |
Enable Yandex Disk when starting the workflow to copy only that build's ISO and .sha256 file to private application storage. The ISO is published as an uncompressed GitHub artifact first, then Yandex Disk imports it directly from GitHub through a temporary signed URL. The Actions runner does not download or re-upload the large ISO.
The Yandex import runs as a separate job alongside any requested ISO tests. It verifies the remote file's exact size and SHA256 before uploading the small checksum sidecar. A Yandex failure is reported in that job's summary but does not discard the GitHub artifact or prevent the tests from running. The import job can be rerun without rebuilding the ISO.
One-time setup:
- Register a Yandex OAuth application for API access.
- Grant only
cloud_api:disk.app_folder(access to the application's own Disk folder). - Copy the application's Client ID, open
https://oauth.yandex.ru/authorize?response_type=token&client_id=<Client_ID>, allow access, and copy the returnedaccess_token. Keep it private. - In the GitHub repository, open Settings β Secrets and variables β Actions, create the repository secret
YANDEX_DISK_TOKEN, and paste the token as its value.
Uploaded files remain private and appear inside the application's folder under Apps / ΠΡΠΈΠ»ΠΎΠΆΠ΅Π½ΠΈΡ in Yandex Disk. Rebuilding an ISO with the same filename replaces that file; the workflow never creates a public link. GitHub also keeps a separate small verification artifact containing the .sha256 file and verification instructions.
When enabled, the built ISO is processed through Tiny11 which:
- Teams, OneDrive, Edge, Copilot, Recall
- Xbox Game Bar & Gaming Services
- Clipchamp, Paint 3D, 3D Viewer, Mixed Reality Portal
- Weather, News, Maps, Bing Search, Cortana
- Office Hub, Solitaire, Sticky Notes, To Do, and more
- TPM 2.0 / Secure Boot / CPU / RAM requirement bypass
- All telemetry endpoints disabled
- Sponsored apps and consumer features blocked
- OneDrive backup prompts disabled
- BitLocker encryption disabled
- Chat icon / Widgets / Cortana startup removed
Every ISO produced by uup-dump-get-windows-iso.ps1, including the Build Windows workflow, contains autounattend.xml at its root whether Tiny11 is enabled or not. The builder prepares the copy for the selected x64/ARM64 architecture and Pro/Home edition, while the tracked file remains the x64 Pro template.
During Windows Setup it provides:
- OOBE bypass (local account, no Microsoft account required)
- Additional app/capability/feature cleanup on first boot
- Core isolation (VBS/HVCI) disabled
- Privacy-focused defaults
Tiny11 still adds its separate offline image cleanup and registry changes when enabled.
Enable ISO test when manually starting Build Windows to run an optional test job after the ISO artifact is uploaded. The test:
- verifies the ISO boot files and x64 WIM/ESD metadata;
- runs
wimverifyagainstboot.wimandinstall.wimorinstall.esd; - validates a root
autounattend.xmlwhen present; - boots the ISO with UEFI in QEMU and waits up to 20 minutes for a Windows PE startup marker.
The boot test uses KVM when the runner exposes /dev/kvm and automatically falls back to TCG software emulation otherwise. Its answer file and startup marker are stored on a temporary raw FAT image; the guest signals startup over COM1, shuts down cleanly, and the runner reads the marker only after QEMU exits.
When Full install test is enabled, this separate Windows PE boot job is skipped. The full test performs the same structural and WIM/ESD checks first, then proceeds directly to installation, first boot, and audit. Selecting both checkboxes therefore does not download or test the ISO twice.
To test an existing image without rebuilding it, manually run Test Windows ISO from URL. Supply a direct HTTPS URL to the ISO and, optionally, its SHA256. A download page or a GitHub Actions artifact page is not a direct ISO URL. QEMU and WIM tools are installed only on the temporary Ubuntu runner.
Enable Full install test to perform a separate, opt-in integration test on an ephemeral Ubuntu runner. It first validates the ISO structure and WIM/ESD integrity without a redundant Windows PE boot, then requires KVM, creates a sparse 64 GiB virtual disk, installs image index 1 with a temporary CI answer-file overlay, boots the installed x64 system, runs the production FirstLogon.ps1, and returns a JSON audit report. The ISO and repository autounattend.xml are not modified.
When Tiny11 is enabled, the guest audit checks the setup logs, selected registry policies, disabled services, removed Appx packages, capabilities, optional features, and Edge/OneDrive paths. The complete JSON result is validated exclusively over COM1; the host then dismisses transient shell UI, captures a clean-desktop screenshot, and ends QEMU immediately without waiting for Windows to shut down. The raw FAT media supplies the CI answer file and audit script and retains diagnostic logs, but it is not accepted as a result channel. Compact logs are uploaded, and the virtual disk is always deleted. The job frees unused SDKs only on the temporary GitHub runner and requires at least 25 GiB of free workspace before starting.
The URL workflow provides matching Full installation test and Tiny11 audit checkboxes. Structural validation always runs; when the full installation test is selected, the separate Windows PE boot is skipped even if its checkbox is also selected. Disable Tiny11 audit when testing an ISO that was not produced by this repository.
pwsh uup-dump-get-windows-iso.ps1 win11-25h2 c:/output -architecture x64 -edition pro -lang en-us -esd -netfx3Supported target keys:
| Target | UUP branch | Allowed UUP ring |
|---|---|---|
win11-25h2 |
26200.* |
Retail / RP |
win11-26h2 |
26300.* |
Retail / RP |
win11-beta |
26220.* |
WIS |
win11-26h1 |
28000.* |
Retail / RP |
win11-experimental |
26340.* |
WIF |
win11-future-platforms |
Latest future platform build | Canary |
Release-version targets accept only Retail or Release Preview candidates, preventing a newer Canary publication with the same base build from being selected silently.
Use -revision with a full build number matching the selected target, such as -revision 26340.9233 for Experimental. For fixed branches, a suffix such as -revision 9233 is also accepted. Future Platforms requires the full build number because its major build changes over time.
# Option A: Pass ISO file path (auto-mounts)
.\scripts\tiny11maker-headless.ps1 -ISOPath "C:\path\to\windows.iso" -INDEX 1
# Option B: Pass mounted drive letter
.\scripts\tiny11maker-headless.ps1 -ISO E -INDEX 1
# With custom output path
.\scripts\tiny11maker-headless.ps1 -ISOPath "C:\path\to\windows.iso" -INDEX 1 -OutputPath "C:\output\optimized.iso"
Agent-facing documentation is available in AGENTS.md and .agents/:
.agents/README.mdβ overview and operating rules.agents/repository-map.mdβ file responsibilities and generated artifacts.agents/workflow.mdβ GitHub Actions pipeline notes.agents/local-runbook.mdβ local commands, validation, and safety notes
windows-iso-builder/
βββ .agents/
β βββ README.md # Agent docs entry point
β βββ local-runbook.md # Local validation and safety notes
β βββ repository-map.md # File ownership map
β βββ workflow.md # GitHub Actions pipeline notes
βββ .github/workflows/
β βββ build.yml # Build and optional ISO test workflow
β βββ test-iso-url.yml # Test an existing ISO from an HTTPS URL
βββ scripts/
β βββ test-windows-iso.ps1 # CI-only ISO and Windows PE smoke test
β βββ test-windows-install.ps1 # CI-only full installation orchestrator
β βββ test-installed-windows.ps1 # In-guest installed-state audit
β βββ tiny11maker-headless.ps1 # Tiny11 optimizer
β βββ upload-yandex-disk.ps1 # Optional GitHub-to-Yandex server-side import
βββ AGENTS.md # Root pointer for IDE/CLI agents
βββ uup-dump-get-windows-iso.ps1 # UUP dump ISO builder
βββ CustomAppsList.txt # UUP dump app selection
βββ autounattend.xml # OOBE bypass & post-install
βββ .gitignore
βββ README.md
βββ LICENSE
| Requirement | Minimum | Recommended |
|---|---|---|
| OS | Windows 10 | Windows 11 |
| PowerShell | 5.1 | 7.0+ |
| RAM | 8GB | 16GB+ |
| Free Disk | 30GB | 50GB+ |
| Permissions | Administrator | Administrator |
System requirements are bypassed:
- Any x64 processor
- 1GB+ RAM (2GB+ recommended)
- 10GB+ storage
- No TPM / Secure Boot required
- UUP dump: uupdump.net / source
- Tiny11 builder: ntdevlabs/tiny11builder
- Tiny11 headless: kelexine
This tool is provided "as is" without warranty. You must have a valid Windows license. Use at your own risk.