Browse all scripts

🧬 WQL / PowerShell

Win32_SystemDriver: Finding Associated Objects (WQL ASSOCIATORS OF)

Demonstrates Get-CimAssociatedInstance, the modern CIM equivalent of WQL's ASSOCIATORS OF syntax, against a Win32_Syste…

🐍 Python 3.10+

Get Installed MSI Products Report (Python)

Uses wmic under the hood to report Installed MSI Products (Win32_Product) β€” no third-party packages required.

πŸ–₯️ Batch (CMD)

Get Processes Report (Batch)

Uses wmic to list Processes (Win32_Process) straight from the command line.

🟣 C# / .NET 6+

Enable Light Mode (C#)

Reverts File Explorer and other system surfaces to light mode. Applies the tweak via Microsoft.Win32.Registry.

πŸ“œ VBScript (WSH)

Disable Taskbar Widgets Icon (VBScript)

Removes the Widgets icon from the Windows 11 taskbar. Applies the tweak via WScript.Shell.RegWrite.

πŸ“Š VBA (Excel)

Remove Hyperlinks from Sheet

Strips all hyperlinks from the active sheet while keeping the cell text and formatting intact.

🐍 Python 3.10+

Get The Explorer thumbnail cache Size Report (Python)

Recursively sums the size of the Explorer thumbnail cache, read-only (no deletion).

🐍 Python 3.10+

Check "Disable Balloon Tip Notifications" Status (Python)

Reads the registry value behind the "Disable Balloon Tip Notifications" tweak via winreg to confirm whether it's applie…

πŸ“œ VBScript (WSH)

Get Processes Report (VBScript)

Queries Win32_Process via WMI and prints Processes to the console β€” no PowerShell required.

🧬 WQL / PowerShell

Win32_ComputerSystem: Filtering Computer System Info (WQL WHERE)

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

🧬 WQL / PowerShell

Win32_ComputerSystem: Sorting Computer System Info (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_Service: Sorting Services (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…