finds.dev← search

// the find

ChrisTitusTech/winutil

★ 56,781 · PowerShell · MIT · updated Jun 2026

Chris Titus Tech's Windows Utility - Install Programs, Tweaks, Fixes, and Updates

WinUtil is a PowerShell script that gives you a WPF GUI for debloating Windows, installing common apps via winget/choco, applying registry tweaks, and toggling Windows features. It's aimed at people who reinstall Windows regularly and want to go from fresh install to configured system without clicking through a hundred menus. 56k stars tells you how many people do exactly that.

The JSON-driven config architecture (applications.json, tweaks.json, feature.json) is genuinely well thought out — adding a new app or tweak is a one-line JSON edit, not a code change. The preset system lets you script an entire machine configuration unattended, which is actually useful for IT or homelab use. Active maintenance is real: last push was yesterday, CI runs Pester tests and PSScriptAnalyzer on PRs. The separation of public/private functions with proper PowerShell module conventions is better discipline than most utility scripts of this size.

The security model is the obvious problem: `irm https://christitus.com/win | iex` means you're executing whatever that URL returns, and the domain is a single point of failure and trust. The registry tweaks are a grab-bag from various debloating guides, some of which break things in non-obvious ways (disabling IPv6 is a good example of a tweak that sounds safe but quietly breaks certain VPNs and WSL networking). There's no rollback beyond Windows System Restore — the undo functions exist but they're incomplete, and the 'Advanced Tweaks — CAUTION' folder is a tell. The winget/choco dual-backend approach means package resolution behaves differently depending on what's installed and which backend fires first, and that's not surfaced to the user.

View on GitHub →

// want more like this?

We dig through GitHub every week and send a few repos picked for what you actually care about — each with an honest take like this one.

Get finds in your inbox → Search again →