Language / 語言 / Sprache / Langue:
🇺🇸 English | 🇨🇳 简体中文 | 🇩🇪 Deutsch | 🇫🇷 Français | 🇪🇸 Español | 🇷🇺 Русский | 🇯🇵 日本語 | 🇰🇷 한국어 | 🇧🇷 Português | 🇮🇹 Italiano
Fork of 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.
| Feature | Original | This Fork |
|---|---|---|
| Language | English only | 10 languages |
| Runtime language switch | ❌ | ✅ (no restart needed) |
| Target framework | .NET Framework 4.8 | .NET 10 |
| 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.
| Dashboard | Debloater Engine |
|---|---|
![]() |
![]() |
| System Hardening | Defender & Exclusions |
|---|---|
![]() |
![]() |
- 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
- JavaScript Interpreter: Native support for
.jsautomation scripts - PowerShell Integration: Execute
.ps1scripts directly from the UI - Import System: Import local script files to build your own library
- 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).
- 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.
- 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
- Runtimes: .NET Desktop Runtime, Visual C++ Redist, DirectX, Java JRE
- Browsers & Tools: Chrome, Firefox, VS Code, and more (winget-based)
- Download the latest release from the Releases page
- Run
Win11Debloater.exeas Administrator
| Tool | Version | Download |
|---|---|---|
| .NET SDK | 10.0+ | dotnet.microsoft.com |
| Git | any | git-scm.com |
| Visual Studio (optional) | 2022 17.8+ | with .NET desktop workload |
# 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.
- Open
Win11Debloater.sln(or open theWin11Debloater/folder) - Set build configuration to
DebugorRelease - Press F5 to build and run
dotnet publish "Win11Debloater/Win11Debloater.csproj" `
-c Release `
-r win-x64 `
--self-contained true `
-p:PublishSingleFile=true `
-o ./publishThe output Win11Debloater.exe will be in the ./publish/ directory — no .NET runtime installation required on the target machine.
- OS: Windows 11
- .NET: .NET 10 Desktop Runtime (download)
| Language | C# |
| Framework | WPF (.NET 10) |
| UI Library | iNKORE.UI.WPF.Modern |
| i18n | XAML ResourceDictionary + {DynamicResource} |
| IDE | Visual Studio 2022 / JetBrains Rider |
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.
- Original project: bunbunconmeow/Win11Debloater by the SecVers team
- This fork: i18n support + .NET 10 migration
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



