Win11Debloat 06.10.2026, the latest release of the open-source PowerShell utility from the Raphire project, landed on June 10, 2026, packing a host of advanced features that push Windows 11 customization into new territory. SYSTEM-account support, per-user tweaking, a comprehensive undo system, and refined Start menu controls headline this update, making it equally appealing to enterprise administrators and privacy-focused home users.
A Quick Primer on Win11Debloat
Since its debut, Win11Debloat has carved out a reputation as the go-to script for stripping Windows 11 of unwanted preloaded apps, disabling pervasive telemetry, and applying registry tweaks that restore user autonomy. Unlike many one-click clean-up tools that operate as black boxes, Win11Debloat is fully auditable PowerShell code—every modification is transparent and reversible. The project’s GitHub repository has amassed thousands of stars, with contributions from a global community that continuously refines safe removal lists and adapts to Microsoft’s ever-shifting updates.
Version 06.10.2026 isn’t an incremental patch; it’s a milestone release shaped by feedback from IT pros, educators, and power users who need precision, safety, and scalability. The headline additions directly address pain points that have lingered since Windows 11’s launch.
SYSTEM-Account Support: Elevating Script Capabilities
Running debloating scripts under a standard administrator account has always been a constraint. Certain persistent components—like scheduled tasks that reinstall bloatware, system-wide telemetry services, and deeply embedded OneDrive integrations—demand higher privileges than a user-level Admin token can provide. Win11Debloat now supports execution under the SYSTEM account, the most powerful local security principal in Windows.
This feature is activated via the new -System parameter. When invoked, the script impersonates the SYSTEM identity, gaining carte blanche to modify protected registry hives, stop system-level services, and remove packages that are otherwise locked. The change isn’t just about access; it’s about automating deployments in environments where user interaction is impossible. IT administrators can now bake Win11Debloat into Windows Autopilot sequences, system preparation (Sysprep) images, or remote management tools like Microsoft Intune, ensuring every device meets a baseline configuration before it reaches the end user’s hands.
Crucially, the script’s safety whitelist has been expanded to prevent any accidental damage when running with elevated privileges. Critical processes for boot, security updates, and core OS functionality are automatically excluded, and a pre-flight check warns if a dangerous operation is about to be performed. This makes SYSTEM-mode viable even for cautious administrators.
Logged-in User Targeting: Surgical Precision
In multi-user environments—shared hospital workstations, school computer labs, or family PCs—applying system-wide tweaks globally can disrupt other users. The latestWin11Debloat introduces user-targeting capabilities, allowing modifications to be scoped to the currently logged-in user or any specified profile.
Using the -User [username] parameter, the script interacts with the user’s registry hive (HKCU) and local app data, leaving other accounts untouched. For example, you can remove the bloat-tier Start menu layout for student accounts while leaving admin accounts unchanged. Combined with SYSTEM support, it’s possible to target multiple users in a single deployment script, applying role-specific configurations without manual profile hopping.
Automatic Detection Engine: Smarter Cleanup
One of the common friction points for newcomers was figuring out which components are safe to remove. Win11Debloat’s new automatic detection engine tackles this head-on. The script now scans the local system for installed apps, third-party promotions (like Candy Crush, Spotify, or Netflix stubs), and OEM-specific cruft, then cross-references with the project’s community-curated blacklist.
Leveraging the Windows Package Manager (winget) and the Deployment Image Servicing and Management (DISM) API, the detection builds a tailored cleanup list. The output is a categorized report—apps are marked as “recommended removal,” “optional,” or “keep”—with detailed explanations for each. Users can then approve the action list interactively or feed it into an automated pipeline with the -AcceptAll flag. This intelligent layer democratizes debloating; you no longer need to be a Windows internals expert to achieve a clean system.
Moreover, the detection engine is extensible. Power users can contribute JSON-based detection rules to the community repository, covering new bloatware as it appears, ensuring the tool stays current without waiting for an official release.
Undo Tweaks: A Full-Fledged Rollback System
Perhaps the most requested feature in the project’s history is a reliable way to reverse changes. Win11Debloat 06.10.2026 ships with an entirely new undo architecture. Every tweak applied by the script is now recorded in a transactional database (%ProgramData%\\Win11Debloat\\undo.db), tagged with a timestamp and session ID.
The undo system isn’t just a registry snapshot dump. It tracks individual file deletions, service state changes, and policy modifications, allowing selective reversal. If a particular tweak causes a problem—say, disabling a service that another application depends on—you can pinpoint and restore just that setting without losing all other optimizations. The command Win11Debloat -UndoSession [session-id] reverts an entire session, while -UndoTweak [tweak-id] handles granular rollbacks.
Additionally, a safety net automatically creates a system restore point before making changes, provided System Protection is enabled. This doubles the safety for users who might be hesitant to run extensive customization scripts.
Start Menu Controls: Taming the Beast
Windows 11’s Start menu, with its aggressive “Recommended” section and web search integration, has been a thorn for many. The new release introduces powerful Start menu customization options that go beyond what’s available in Settings.
- Remove Recommended Section: The
-RemoveRecommendedswitch clears the “Recommended” area and prevents Windows Update from repopulating it. Under the hood, it modifies theAllowCloudSearchandEnableRecommendedSectionpolicy keys. - App Pinning Layout: A
-StartLayout [path-to-json]parameter lets you deploy a custom Start layout via JSON files, similar to the XML-based method in Group Policy but simpler to author. This is invaluable for enterprise deployments aiming for a consistent user experience. - Web Search Disable: With
-DisableWebSearch, the script tweaks the registry to stop Bing web results from appearing in Start menu searches, keeping the experience local and private.
These controls are especially praised by organizations that need to present a clean, distraction-free interface to students or frontline workers.
Installation and Usage
Getting started is straightforward. Download the latest release from the official GitHub repository at https://github.com/Raphire/Win11Debloat or run the script directly via PowerShell:
Invoke-WebRequest -UseBasicParsing "https://win11debloat.net/script" | Invoke-Expression
Always inspect the script before execution; the project provides checksums and SHA-256 hashes for verification. For guided use, launch Win11Debloat -Interactive to walk through categories with explanatory tooltips.
Administrators can deploy it silently in MDM packages with something like:
powershell.exe -NoProfile -ExecutionPolicy Bypass -File "Win11Debloat.ps1" -System -RemoveRecommended -AcceptAll
Documentation is extensive, covering parameters, safe lists, and troubleshooting guidance on the project’s Wiki.
Community Reception and Ecosystem
Across Windows forums and Reddit, early adopters have lauded the SYSTEM support as a “game changer” for provisioning workflows. Home users report that the automatic detection saved them hours of research, and the undo system has emboldened many to try tweaks they previously avoided. The project’s Discord server saw a spike in activity, with contributors adding new detection rules for regional bloatware seen in OEM images from Asia and Europe.
That said, the community also emphasizes caution: running scripts as SYSTEM is powerful and must be done in trusted environments. The developers have responded by releasing a code-signing certificate for the script bundle, reducing the risk of tampering.
How Win11Debloat Stacks Up
| Feature | Win11Debloat 06.10.2026 | Chris Titus Tech's Windows Utility | Windows10Debloater |
|---|---|---|---|
| SYSTEM Account Support | Yes | No | No |
| Undo / Rollback | Database-driven, per-tweak undo | Snapshot-based, manual | Limited, registry backup only |
| User Targeting | Profile-specific | Partial | None |
| Automatic Detection | Winget + DISM analysis, extensible | Basic built-in list filtering | Static blacklists |
| Start Menu Control | Full: Recommended removal, layout JSON | Minimal | None |
| Transparency | Open-source, auditable, public repo | Open-source | Open-source |
| Enterprise Deployment | Designed for Intune, Autopilot, SCCM | Not enterprise-focused | Not designed for enterprise |
Win11Debloat clearly leads in scalability and feature depth, though the other tools remain viable for simpler, one-off cleanups.
Security Best Practices
Given the elevated permissions, users should observe these guidelines:
- Review the script content before running, even if you trust the source.
- Test in a virtual machine or a non-production environment first.
- Ensure code-signing verification is enabled in PowerShell if using the signed package.
- Keep regular backups; the undo system is robust but not a substitute for a full system image.
What’s Next?
The Raphire team has teased future integration with Windows Configuration Designer for even smoother enterprise provisioning, and a standalone GUI that will expose all features without requiring command-line familiarity. For now, version 06.10.2026 sets a new standard for Windows 11 customization tools.
Download the latest release from the official GitHub repository or consult the documentation for detailed usage guides. As always, debloat responsibly.