explaingit

memstechtips/unattendedwinstall

5,817Audience · generalComplexity · 1/5Setup · easy

TLDR

A pre-configured Windows Answer File that fully automates Windows installation with all bloatware removed, telemetry disabled, and privacy and performance defaults applied, just copy one XML file to your bootable USB and install Windows normally.

Mindmap

mindmap
  root((repo))
    What it does
      Automates Windows install
      Removes all bloatware
      Privacy and performance defaults
    What Gets Removed
      Copilot and OneDrive
      Edge browser
      All preinstalled apps
    Settings Applied
      Telemetry disabled
      Dark mode by default
      Performance power plan
    How To Use
      Download XML file
      Copy to bootable USB
      Boot and install normally
Click or tap to explore — scroll the page freely

Code map

Detail Auto

An interactive map of this repo's files and how they connect — its source is parsed live in your browser. Click Visualize to build it.

filefunction / class

Things people build with this

USE CASE 1

Install Windows on a new or rebuilt PC with no bloatware, no Microsoft account requirement, and no manual setup steps

USE CASE 2

Get a privacy-focused Windows install with telemetry and advertising features disabled from the moment setup finishes

USE CASE 3

Bypass Windows 11 hardware requirements during installation using the Answer File mechanism

USE CASE 4

Set up Dark Mode, a minimal taskbar, and performance-tuned power settings automatically during Windows install

Tech stack

XMLWindows

Getting it running

Difficulty · easy Time to first run · 30min

Requires a bootable Windows installation USB, copy autounattend.xml to its root before booting. Skips Microsoft account sign-in and creates a local account by default.

No license information provided, check the repository directly before redistributing the configuration file.

In plain English

UnattendedWinstall is a configuration file you place on a Windows installation USB drive so that Windows sets itself up automatically with a cleaner, more private configuration than the default. It uses a feature built into Windows called an Answer File, which Microsoft designed for businesses that need to deploy Windows across many computers without manual setup at each one. This project adapts that same feature for personal use. During installation, the file removes all the preinstalled apps that come bundled with Windows, keeping only Notepad, Calculator, Paint, and the Snipping Tool. This includes removing Copilot, OneDrive, Edge, and everything else Microsoft includes by default. It also bypasses the Windows 11 system requirements check, skips the forced Microsoft account sign-in step during setup, and disables automatic Windows updates in favor of notifying you only when security updates are available. On the privacy and performance side, the file turns off telemetry and advertising features, adjusts power settings for better performance, and disables background services and scheduled tasks that most personal computers do not need. It also applies visual and interface changes: Dark Mode is set by default, the taskbar is trimmed down, the Start Menu is unpinned, and File Explorer opens to This PC rather than the default home view. To use it, you download the autounattend.xml file and copy it to the root of a bootable Windows installation USB. When you boot from that USB and install Windows, the file runs automatically. No manual configuration steps are required during setup. The project also recommends a companion app called Winhance for applying similar changes to an existing Windows installation without reinstalling. All the changes the file makes are documented in comments inside the file itself and are visible on GitHub, so you can inspect exactly what will happen before running it.

Copy-paste prompts

Prompt 1
Walk me through using UnattendedWinstall to install clean Windows 11, where do I get the autounattend.xml file, how do I create the bootable USB, and what exactly happens during the install?
Prompt 2
What apps and background services does UnattendedWinstall remove during Windows setup? Give me the full list and explain how I can customize the XML to keep specific items.
Prompt 3
I want to modify the UnattendedWinstall autounattend.xml to keep Microsoft Edge but still remove Copilot and OneDrive. Which part of the XML file controls Edge removal and how do I disable just that section?
Prompt 4
I already have Windows installed and do not want to reinstall. Which settings from UnattendedWinstall can I apply manually or through Winhance without going through a fresh install?
Open on GitHub → Explain another repo

← memstechtips on gitmyhub — every repo by this author, as a profile.

Verify against the repo before relying on details.