Browse all scripts
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β¦
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β¦
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β¦
Get Network Shares Report (C#)
Queries Win32_Share via WMI (System.Management) and prints Network Shares to the console.
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 β¦
Disable Fast Startup (C#)
Disables Fast Startup, useful when dual-booting or troubleshooting shutdowns (requires admin). Requires an elevated (Adβ¦
Check "Disable Fast Startup" Status (VBScript)
Reads the registry value behind the "Disable Fast Startup" tweak to confirm whether it's applied.
Win32_VideoController: Event-Driven Monitoring (WQL __InstanceCreationEvent)
Subscribes to WMI's __InstanceCreationEvent for Win32_VideoController via Register-CimIndicationEvent β real WQL event β¦
Disable Game Bar Startup Tips (Python)
Stops the Game Bar from showing its startup tip panel. Applies the tweak via the stdlib winreg module.
Load Pointing Devices into Excel via WMI
Queries Win32_PointingDevice via GetObject("winmgmts:") and dumps every Pointing Devices row straight onto the active wβ¦
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β¦
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β¦