Browse all scripts

📊 VBA (Excel)

Check Align Taskbar Icons Left Registry Value (VBA)

Reads the Align Taskbar Icons Left registry value via WScript.Shell.RegRead and reports it in a message box — no PowerS…

🧬 WQL / PowerShell

Win32_BaseBoard: Finding Associated Objects (WQL ASSOCIATORS OF)

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

📊 VBA (Excel)

List Files in The Explorer thumbnail cache (VBA)

Lists every file in the Explorer thumbnail cache with size and last-modified date directly on the active worksheet, usi…

📜 VBScript (WSH)

Get Pointing Devices Report (VBScript)

Queries Win32_PointingDevice via WMI and prints Pointing Devices to the console — no PowerShell required.

🧬 WQL / PowerShell

Win32_DiskDrive: Sorting Physical Disk Drives (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…

⚡ PowerShell 5.1+

Backup Network Adapters List to JSON

Snapshots Network Adapters from Win32_NetworkAdapter to a timestamped JSON file for later comparison or auditing.

🧬 WQL / PowerShell

Win32_Service: Filtering Services (WQL WHERE)

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

🖥️ Batch (CMD)

Get Processor Info Report (Batch)

Uses wmic to list Processor Info (Win32_Processor) straight from the command line.

⚡ PowerShell 5.1+

Get Startup Programs Report

Queries Win32_StartupCommand via WMI and reports Startup Programs in a formatted table, with an optional CSV export.

📊 VBA (Excel)

Load Processor Info into Excel via WMI

Queries Win32_Processor via GetObject("winmgmts:") and dumps every Processor Info row straight onto the active workshee…

🧬 WQL / PowerShell

Win32_Battery: Discovering Available Properties (Get-CimClass)

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

📜 VBScript (WSH)

Enable Dark Mode (VBScript)

Switches File Explorer and other system surfaces to dark mode. Applies the tweak via WScript.Shell.RegWrite.