# Win11Debloater **Repository Path**: silvancoder/win11debloater ## Basic Information - **Project Name**: Win11Debloater - **Description**: Windoes 11去臃肿/安全工具,具有防窃功能(SecVersLHE)、系统强化、匿名化、软件安装/卸载程序、PowerShell/Javascript脚本支持等等 - **Primary Language**: Unknown - **License**: BSD-3-Clause - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2026-02-22 - **Last Updated**: 2026-02-22 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # Win11Debloater-i18n **Language / 語言 / Sprache / Langue:** [🇺🇸 English](../README.md) | [🇨🇳 简体中文](docs/README.zh.md) | [🇩🇪 Deutsch](docs/README.de.md) | [🇫🇷 Français](docs/README.fr.md) | [🇪🇸 Español](docs/README.es.md) | [🇷🇺 Русский](docs/README.ru.md) | [🇯🇵 日本語](docs/README.ja.md) | [🇰🇷 한국어](docs/README.ko.md) | [🇧🇷 Português](docs/README.pt.md) | [🇮🇹 Italiano](docs/README.it.md) --- ![License](https://img.shields.io/badge/License-BSD%203--Clause-blue.svg) ![Status](https://img.shields.io/badge/Status-Early%20Development-orange) ![Platform](https://img.shields.io/badge/Platform-Windows%2011-blue) ![Tech](https://img.shields.io/badge/Made%20with-C%23%20%2F%20WPF%20%2F%20.NET%2010-purple) ![i18n](https://img.shields.io/badge/Languages-10-green) > **Fork of [bunbunconmeow/Win11Debloater](https://github.com/bunbunconmeow/Win11Debloater)** > This fork adds **full internationalization (i18n)** support with 10 languages and runtime language switching, while also migrating the project from .NET Framework 4.8 to **.NET 10**. --- ## 🌍 What's New in This Fork | Feature | Original | This Fork | | ----------------------- | ------------------ | --------------------- | | Language | English only | **10 languages** | | Runtime language switch | ❌ | ✅ (no restart needed) | | Target framework | .NET Framework 4.8 | **.NET 10** | ### Supported Languages | | Language | Code | | --- | ----------------- | ---- | | 🇺🇸 | English (default) | `en` | | 🇨🇳 | 简体中文 | `zh` | | 🇩🇪 | Deutsch | `de` | | 🇫🇷 | Français | `fr` | | 🇪🇸 | Español | `es` | | 🇷🇺 | Русский | `ru` | | 🇯🇵 | 日本語 | `ja` | | 🇰🇷 | 한국어 | `ko` | | 🇧🇷 | Português | `pt` | | 🇮🇹 | Italiano | `it` | Switch languages at runtime via **About page → Language selector**. The choice is saved to the registry and restored on next launch. --- ## Screenshots | Dashboard | Debloater Engine | | :------------------------------------------------------------------------------------------------------: | :----------------------------------------------------------------------------------------------------------: | | ![Home](https://github.com/bunbunconmeow/Win11Debloater/blob/main/GitHub/Images/HomeScreen.png?raw=true) | ![Debloater](https://github.com/bunbunconmeow/Win11Debloater/blob/main/GitHub/Images/Debloater.png?raw=true) | | System Hardening | Defender & Exclusions | | :----------------------------------------------------------------------------------------------------------------: | :---------------------------------------------------------------------------------------------------------------: | | ![Hardening](https://github.com/bunbunconmeow/Win11Debloater/blob/main/GitHub/Images/SystemHardening.png?raw=true) | ![Defender](https://github.com/bunbunconmeow/Win11Debloater/blob/main/GitHub/Images/DefenderOptions.png?raw=true) | --- ## Features ### 🚀 Smart Debloater Engine - **Bulk App Removal:** Remove pre-installed UWP bloatware (Cortana, Teams, BingWeather, etc.) - **Search & Filter:** Find specific packages to remove via the search bar - **Core Component Removal:** Force-remove Edge, OneDrive, Cortana ### 📜 Scripting & Automation (Dual-Engine) - **JavaScript Interpreter:** Native support for `.js` automation scripts - **PowerShell Integration:** Execute `.ps1` scripts directly from the UI - **Import System:** Import local script files to build your own library ### 🕵️ Anonymizer & HWID Spoofing - **HWID Management:** Randomize Machine GUIDs, Product IDs, Serial Numbers - **Privacy Reset:** Clear Advertising ID and Telemetry ID - **Registration Data:** Randomize "Registered Owner" and "Organization" > ⚠️ Spoofing HWIDs may affect software licenses (e.g., Windows Activation, Games). ### 🛡️ System Hardening & Defender Control - **Exclusions Manager:** View and remove File, Folder, and Process exclusions - **Hardening Presets:** One-click security profiles - **Defender Toggles:** Real-time Protection, Cloud Protection, SmartScreen, etc. ### 🎨 Registry & UI Customization - **Classic Context Menu:** Restore Windows 10 right-click menu - **Taskbar Cleanup:** Disable Widgets, Chat, Search bars - **Impact Analysis:** Risk and Impact levels for every tweak ### 📦 Software Installer - Runtimes: .NET Desktop Runtime, Visual C++ Redist, DirectX, Java JRE - Browsers & Tools: Chrome, Firefox, VS Code, and more (winget-based) --- ## Installation 1. Download the latest release from the [Releases](https://github.com/silvancoder/Win11Debloater/releases) page 2. Run `Win11Debloater.exe` as **Administrator** ## Building from Source ### Prerequisites | Tool | Version | Download | | -------------------------- | ---------- | ------------------------------------------------------------------------- | | .NET SDK | **10.0+** | [dotnet.microsoft.com](https://dotnet.microsoft.com/download/dotnet/10.0) | | Git | any | [git-scm.com](https://git-scm.com) | | Visual Studio *(optional)* | 2022 17.8+ | with **.NET desktop** workload | ### Steps ```bash # 1. Clone the repository git clone https://github.com/silvancoder/Win11Debloater.git cd Win11Debloater # 2. Restore NuGet packages dotnet restore "Win11Debloater/Win11Debloater.csproj" # 3. Build (Debug) dotnet build "Win11Debloater/Win11Debloater.csproj" -c Debug # 4. Run directly dotnet run --project "Win11Debloater/Win11Debloater.csproj" ``` > **Note:** The application requires **Administrator** privileges to modify registry keys and system settings. Right-click and "Run as Administrator" when launching manually. #### Build with Visual Studio 1. Open `Win11Debloater.sln` (or open the `Win11Debloater/` folder) 2. Set build configuration to `Debug` or `Release` 3. Press F5 to build and run #### Publish a self-contained executable ```bash dotnet publish "Win11Debloater/Win11Debloater.csproj" ` -c Release ` -r win-x64 ` --self-contained true ` -p:PublishSingleFile=true ` -o ./publish ``` The output `Win11Debloater.exe` will be in the `./publish/` directory — no .NET runtime installation required on the target machine. --- ## Requirements - **OS:** Windows 11 - **.NET:** .NET 10 Desktop Runtime ([download](https://dotnet.microsoft.com/download/dotnet/10.0)) ## Development | | | | -------------- | ------------------------------------------------------------------- | | **Language** | C# | | **Framework** | WPF (.NET 10) | | **UI Library** | [iNKORE.UI.WPF.Modern](https://github.com/iNKORE-NET/UI.WPF.Modern) | | **i18n** | XAML `ResourceDictionary` + `{DynamicResource}` | | **IDE** | Visual Studio 2022 / JetBrains Rider | ## i18n Architecture ``` Resources/ └── Languages/ ├── en.xaml ← default (English) ├── zh.xaml ├── de.xaml … ← 10 languages total Helpers/ └── LocalizationManager.cs ← swap dictionaries + registry persistence ``` Language files are standard XAML `ResourceDictionary` files. To add a new language, simply copy `en.xaml`, translate the values, and register it in `LocalizationManager.cs`. --- ## Credits - **Original project:** [bunbunconmeow/Win11Debloater](https://github.com/bunbunconmeow/Win11Debloater) by the SecVers team - **This fork:** i18n support + .NET 10 migration ## Disclaimer This software is provided "as is", without warranty of any kind. The authors are not responsible for any damage to your computer, data loss, or license invalidation caused by the use of this tool. --- *Made with ❤️ by the SecVers team · i18n fork maintained separately*