Browse all scripts

🧰 Registry (.reg)

Disable Cortana (Registry Tweak)

Disables Cortana integration in Windows Search (requires admin). Requires an elevated (Administrator) prompt.

⚑ PowerShell 5.1+

Watch Battery Info for Changes

Polls Win32_Battery on an interval and prints a line whenever the Battery Info count changes β€” a lightweight way to not…

πŸ“Š VBA (Excel)

Report Size of Microsoft Edge's browser cache (VBA)

Reports the total size and top-level file count of Microsoft Edge's browser cache using Scripting.FileSystemObject, str…

🟣 C# / .NET 6+

Disable Feedback Notifications (C#)

Stops Windows from periodically asking for feedback. Applies the tweak via Microsoft.Win32.Registry.

🟣 C# / .NET 6+

Disable Background Apps Globally (C#)

Prevents Store apps from running in the background to save resources and battery. Applies the tweak via Microsoft.Win32…

🧬 WQL / PowerShell

Win32_TimeZone: Sorting Time Zone Settings (WQL has no ORDER BY)

WQL has no ORDER BY clause β€” this shows the standard workaround of piping Get-CimInstance results through Sort-Object o…

🧬 WQL / PowerShell

Win32_Processor: Processor Info (WQL)

A minimal WQL reference query against Win32_Processor β€” the raw SELECT statement plus a one-line runner, useful for lea…

πŸ–₯️ Batch (CMD)

Get Operating System Info Report (Batch)

Uses wmic to list Operating System Info (Win32_OperatingSystem) straight from the command line.

🐍 Python 3.10+

Clean Up Microsoft Edge's browser cache (Python)

Reports the size of Microsoft Edge's browser cache and optionally clears it out. Dry-run by default.

🐍 Python 3.10+

Check "Disable Cortana" Status (Python)

Reads the registry value behind the "Disable Cortana" tweak via winreg to confirm whether it's applied.

🐍 Python 3.10+

Disable Autoplay for All Drives (Python)

Disables Autoplay prompts for every drive type, including USB. Applies the tweak via the stdlib winreg module.

⚑ PowerShell 5.1+

Get Operating System Info Report

Queries Win32_OperatingSystem via WMI and reports Operating System Info in a formatted table, with an optional CSV expo…