A quick guide to building a lightweight, privacy-respecting Windows installation using four open-source tools.
Repository: ntdevlabs/tiny11builder
A PowerShell script that repackages the official Windows 11 ISO into a stripped-down version. It uses only Microsoft tools (DISM, oscdimg) — no shady third-party executables.
What it removes:
- Bloatware apps (Clipchamp, News, Weather, Xbox, OneDrive, etc.)
- Microsoft Edge
- TPM/CPU/RAM requirements
- Microsoft account requirement during setup
Usage:
- Download official Windows 11 ISO from Microsoft
- Mount the ISO
- Run
tiny11maker.ps1as Administrator - Select drive letter and edition
- Get your
tiny11.isoready for Rufus
Repository: massgravel/Microsoft-Activation-Scripts
Open-source activation tool with multiple methods. Fully transparent batch scripts — you can audit exactly what it does.
Activation methods:
- HWID — Permanent digital license tied to hardware (recommended for Windows)
- Ohook — For Office activation
- TSforge — Newer method, works on older systems too
Usage:
irm https://get.activated.win | iexOr download MAS_AIO.cmd and run manually.
Repository: henrypp/simplewall
A lightweight firewall that hooks into Windows Filtering Platform (WFP). Unlike Windows Firewall (allow-by-default), Simplewall blocks everything by default — you whitelist what you trust.
Key features:
- Blocks all outbound traffic until you allow it
- Can block Windows telemetry and system processes
- ~2MB, portable, open-source (GPLv3)
- Works independently from Windows Firewall
Why use it: Every time an app tries to connect, you get a popup asking for permission. Great for catching sneaky telemetry and background connections.
Repository: Raphire/Win11Debloat
A PowerShell script for post-install cleanup. Catches anything Tiny11 might have missed and lets you tweak Windows behavior.
What it does:
- Removes remaining bloatware
- Disables telemetry and tracking
- Cleans up Start menu pins
- Removes Copilot, Cortana, widgets
- Hides interface clutter (search box, task view, etc.)
Usage:
& ([scriptblock]::Create((irm "https://debloat.raphi.re/")))Choose Default mode for recommended settings, or Custom mode for granular control.
- Build ISO with Tiny11 Builder
- Install Windows from the trimmed ISO
- Activate with MAS
- Install Simplewall and enable filters
- Run Win11Debloat to finish cleanup
Use reg files from this repo to turn off Windows updates for a very long time.
Windows can grow in size especially ints WinSxS Folder. Here are safe ways to reduce its size using built-in tools to remove outdated components.
Open Command Prompt as Administrator and run:
dism.exe /online /Cleanup-Image /StartComponentCleanupAlso to remove all superseded versions of every component (cannot undo updates after this), use:
dism.exe /online /Cleanup-Image /StartComponentCleanup /ResetBaseAll tools are open-source. Use at your own risk — always back up before making system changes.