Browse all scripts

πŸ“Š VBA (Excel)

Load Physical Memory Modules into Excel via WMI

Queries Win32_PhysicalMemory via GetObject("winmgmts:") and dumps every Physical Memory Modules row straight onto the a…

⚑ PowerShell 5.1+

Check "Disable Start Menu Web Search" Status

Reads the current registry value behind the "Disable Start Menu Web Search" tweak so you can confirm whether it's appli…

🧬 WQL / PowerShell

Win32_BaseBoard: Event-Driven Monitoring (WQL __InstanceCreationEvent)

Subscribes to WMI's __InstanceCreationEvent for Win32_BaseBoard via Register-CimIndicationEvent β€” real WQL event query …

🧬 WQL / PowerShell

Win32_Keyboard: Sorting Keyboard 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…

πŸ–₯️ Batch (CMD)

Get Sound Devices Report (Batch)

Uses wmic to list Sound Devices (Win32_SoundDevice) straight from the command line.

πŸ“Š VBA (Excel)

Export Installed Hotfixes to CSV via WMI (VBA)

Queries Win32_QuickFixEngineering via WMI and writes every Installed Hotfixes row straight to a CSV file in Documents, …

🟣 C# / .NET 6+

Get Environment Variables Report (C#)

Queries Win32_Environment via WMI (System.Management) and prints Environment Variables to the console.

🐍 Python 3.10+

Check "Increase Icon Cache Size" Status (Python)

Reads the registry value behind the "Increase Icon Cache Size" tweak via winreg to confirm whether it's applied.

🐍 Python 3.10+

Backup Printers to JSON (Python)

Snapshots Printers (Win32_Printer) to a timestamped JSON file for later comparison or auditing.

πŸ“Š VBA (Excel)

Clean Up The NuGet packages cache (VBA)

Deletes every file in the NuGet packages cache after a confirmation prompt, using Scripting.FileSystemObject from Excel…

🟣 C# / .NET 6+

Enable Dark Mode (C#)

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

🟣 C# / .NET 6+

Disable Start Menu Suggested Apps (C#)

Stops Windows from silently installing suggested Store apps. Applies the tweak via Microsoft.Win32.Registry.