Browse all scripts

🧰 Registry (.reg)

Disable Fast Startup (Registry Tweak)

Disables Fast Startup, useful when dual-booting or troubleshooting shutdowns (requires admin). Requires an elevated (Ad…

🧬 WQL / PowerShell

Win32_Product: Sorting Installed MSI Products (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…

📊 VBA (Excel)

Check Disable Balloon Tip Notifications Registry Value (VBA)

Reads the Disable Balloon Tip Notifications registry value via WScript.Shell.RegRead and reports it in a message box — …

🟣 C# / .NET 6+

Disable Aero Shake (C#)

Stops shaking a window from minimizing every other open window. Applies the tweak via Microsoft.Win32.Registry.

📜 VBScript (WSH)

Clean Up The npm cache (VBScript)

Reports the size of the npm cache and deletes its contents after a confirmation prompt.

📜 VBScript (WSH)

Get Printers Report to File (VBScript)

Queries Win32_Printer via WMI and writes Printers to a timestamped text file, handy for scheduled logon/logoff scripts.

🧬 WQL / PowerShell

Win32_OperatingSystem: Filtering Operating System Info (WQL WHERE)

Shows the WQL WHERE clause syntax against Win32_OperatingSystem, starting from a LIKE '%' wildcard you customize with a…

🐍 Python 3.10+

Clean Up The system-wide Windows Temp folder (Python)

Reports the size of the system-wide Windows Temp folder and optionally clears it out. Dry-run by default.

⚡ PowerShell 5.1+

Check "Show Recycle Bin Icon on Desktop" Status

Reads the current registry value behind the "Show Recycle Bin Icon on Desktop" tweak so you can confirm whether it's ap…

🖥️ Batch (CMD)

Clean Up The NuGet packages cache (Batch)

Clears the NuGet packages cache after a confirmation prompt, with a /silent mode for scheduled tasks.

⚡ PowerShell 5.1+

Check "Disable Explorer Startup Delay" Status

Reads the current registry value behind the "Disable Explorer Startup Delay" tweak so you can confirm whether it's appl…

⚡ PowerShell 5.1+

Watch Services for Changes

Polls Win32_Service on an interval and prints a line whenever the Services count changes — a lightweight way to notice …