Browse all scripts

🧬 WQL / PowerShell

Win32_Environment: Discovering Available Properties (Get-CimClass)

Uses Get-CimClass to list every real property and method Win32_Environment exposes on the current system, instead of gu…

🧬 WQL / PowerShell

Win32_StartupCommand: Finding Associated Objects (WQL ASSOCIATORS OF)

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

🧬 WQL / PowerShell

Win32_VideoController: Finding Associated Objects (WQL ASSOCIATORS OF)

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

🟣 C# / .NET 6+

Get Network Shares Report (C#)

Queries Win32_Share via WMI (System.Management) and prints Network Shares to the console.

πŸ“Š VBA (Excel)

Load Local Groups into Excel via WMI

Queries Win32_Group via GetObject("winmgmts:") and dumps every Local Groups row straight onto the active worksheet, no …

🟣 C# / .NET 6+

Disable Fast Startup (C#)

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

πŸ“œ VBScript (WSH)

Check "Disable Fast Startup" Status (VBScript)

Reads the registry value behind the "Disable Fast Startup" tweak to confirm whether it's applied.

🧬 WQL / PowerShell

Win32_VideoController: Event-Driven Monitoring (WQL __InstanceCreationEvent)

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

🐍 Python 3.10+

Disable Game Bar Startup Tips (Python)

Stops the Game Bar from showing its startup tip panel. Applies the tweak via the stdlib winreg module.

πŸ“Š VBA (Excel)

Load Pointing Devices into Excel via WMI

Queries Win32_PointingDevice via GetObject("winmgmts:") and dumps every Pointing Devices row straight onto the active w…

🧬 WQL / PowerShell

Win32_SoundDevice: Sound Devices (WQL)

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

🧬 WQL / PowerShell

Win32_NetworkAdapter: Sorting Network Adapters (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…