Loading repository data…
Loading repository data…
svtica / repository
Take back control of Windows 11. Removes Copilot, Recall, telemetry, ads, and bloat. Offline GUI, Intune, and GPO support.
A transparent discovery signal based on current public GitHub metadata.
This score does not audit code, security, maintainers, documentation quality, or suitability. Verify the repository and its current documentation before adoption.
Disable Copilot, Recall, telemetry, ads, and bloat on Windows 11 and Microsoft 365. Fully offline. GUI + Intune + GPO with snapshot rollback.
Tidy11 is a fully offline, single-folder toolkit for taking back control of a Windows 11 machine or fleet. It ships as an interactive WPF GUI for single machines, an Intune Proactive Remediation pair for managed fleets, and static .reg baselines for GPO — all driven by the same tested logic.
No runtime network dependency. No telemetry of its own. No code you can't read.
Topics: windows-11 · privacy · cleanup · copilot · recall · telemetry · intune · gpo · powershell · wpf · microsoft-365 · ai-removal · windows-hardening
Tidy11 is intended for power users who know what they are doing. It makes deep changes to Windows policy, services, scheduled tasks, firewall rules, and Appx packages. If you don't understand what a setting does, read Tidy11-Reference.md first, or don't tick that box.
If any of the above is a dealbreaker for you, don't use Tidy11.
hosts backup, and a net-new-value log for clean deletion.Tidy11.ps1 → Run with PowerShell. It auto-elevates via UAC.Note on the button label:
DISABLE Selectedis also what runs the Classic App Replacements section — i.e. it is both the "remove Copilot/telemetry/ads" trigger and the "install classic apps (Notepad, Paint, Open-Shell, …)" trigger, all in one pass.REVERT Selectedundoes the disables but does not uninstall apps you installed via the Classic Apps section — those have to be removed manually (Settings → Apps orwinget uninstall).
If anything goes wrong, you have three independent rollback paths:
| If … | Use … |
|---|---|
| The machine still boots, GUI still opens | GUI → Restore from Snapshot… |
| The GUI is broken but PowerShell works | .\Tidy11-Restore.ps1 (standalone, no module needed) |
| The machine won't boot properly | Recovery environment → System Restore → pick the Tidy11 pre-change checkpoint |
| File | Purpose | Run as |
|---|---|---|
Tidy11.ps1 | Interactive WPF GUI for single-machine use | Admin (auto-elevates) |
Tidy11.Modules.psm1 | PowerShell module with all apply/revert/verify/snapshot/config functions | Loaded by the GUI |
Tidy11-Restore.ps1 | Standalone snapshot restorer — no module dependency | Admin (auto-elevates) |
Tidy11-Detect.ps1 | Intune Proactive Remediation detection script | SYSTEM |
Tidy11-Remediate.ps1 | Intune Proactive Remediation remediation script (self-contained) | SYSTEM |
Tidy11-User.ps1 | Intune user-context companion — HKCU keys for existing profiles | Logged-on user |
Tidy11.reg | Static registry baseline for GPO Preferences / offline import | Admin |
Tidy11-Revert.reg | Reverse of Tidy11.reg — deletes the policy values to restore defaults | Admin |
Tidy11-Reference.md | Per-setting reference (paths, default values, proposed values, risk class) | Documentation |
LICENSE | The Unlicense | — |
powershell.exe). The WPF GUI requires the PresentationFramework assembly stack that is only available in classic PowerShell — pwsh 7+ will refuse to launch with a clear error.No internet required at runtime. All AI/Copilot/telemetry logic is native in the module file.
Covered by the Quickstart above. A few extras worth knowing:
tidy11-recipe.json for later reuse or cross-machine replication.Tidy11-Revert.reg if present, restores services/tasks/firewall differentially, and restores the hosts file.Use Tidy11.reg as the static baseline.
reg.exe import \\fileserver\share\Tidy11.reg
Wrap that in a startup script GPO (Computer Configuration → Windows Settings → Scripts → Startup).
Tidy11.reg → import → set action to Replace.GPO Preferences let you unscope/remove keys cleanly by flipping the GPO to "Delete" mode, unlike a raw .reg import.
.reg does NOT coverThe .reg is only static key data. For full coverage you also need service stops, task disables, Appx removal, and firewall rules. Deploy Tidy11-Remediate.ps1 as a startup script alongside it:
powershell.exe -NoProfile -ExecutionPolicy Bypass -File "\\fileserver\share\Tidy11-Remediate.ps1"
Use Scripts and remediations (formerly Proactive Remediations). This is the durable answer because Windows feature updates silently re-enable things — the scheduled remediation puts them back.
Tidy11 — AI & Privacy BaselineTidy11-Detect.ps1Tidy11-Remediate.ps1SYSTEM-context scripts cannot write HKCU for existing user profiles. Deploy Tidy11-User.ps1 as a separate Platform script (Devices → Scripts → Add → Windows 10 and later):
This covers: taskbar alignment, Start Recommended, Notepad AI, per-app Office Copilot toggles, Bing/Cortana, ContentDeliveryManager, InputPersonalization, Office telemetry, location consent, perf tweaks.
Most of what Tidy11 touches (Paint AI, File Explorer Ask Copilot, Notepad AI, Edge Copilot flags, Game DVR policy, Widgets, Office Copilot master toggle, Cortana/Bing) is not exposed as a Settings Catalog definition. The catalog only covers keys Microsoft has wrapped in an MDM CSP. A hybrid works — Settings Catalog for Telemetry/Copilot/Widgets/AppPrivacy, Tidy11 for the rest — but the Tidy11 pair alone is simpler and covers everything.
Bake it in at first-run:
# In your Autopilot/MDT deployment script, after OOBE completes:
Invoke-WebRequest -Uri 'https://yourshare/Tidy11-Remediate.ps1' -OutFile "$env:TEMP\wn.ps1"
& "$env:TEMP\wn.ps1"
Or drop Tidy11.reg into your reference image's FirstLogonCommands via unattend.xml.
Items are grouped by category. Full per-setting reference with registry paths and default values is in Tidy11-Reference.md.
| Category | Targets |
|---|---|
| Windows Copilot | TurnOffWindowsCopilot policy, Copilot Appx package (optional), taskbar button, hardware Copilot key, AppPrivacy generative-AI access |
| Recall / WindowsAI | DisableAIDataAnalysis, AllowRecallEnablement=0, Click To Do, Settings Agent, Agent Connectors/Workspaces |
| Paint AI | Cocreator, Generative Fill/Erase, Image Creator, Remove Background |
| Edge | Copilot sidebar, Compose inline, AI themes, History AI search, startup boost, background mode. Optional opt-in: lock the default search engine to DuckDuckGo instead of Bing. |
| Office Copilot | HKLM master policy + per-user Word/Excel/PPT/OneNote/Outlook toggles + Outlook BusinessChat add-in |
| Notepad AI | CopilotEnabled, AIFeaturesEnabled, ShowAIFeatures |