Browse all scripts
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…
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…
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…
Get Pointing Devices Report (VBScript)
Queries Win32_PointingDevice via WMI and prints Pointing Devices to the console — no PowerShell required.
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…
Backup Network Adapters List to JSON
Snapshots Network Adapters from Win32_NetworkAdapter to a timestamped JSON file for later comparison or auditing.
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…
Get Processor Info Report (Batch)
Uses wmic to list Processor Info (Win32_Processor) straight from the command line.
Get Startup Programs Report
Queries Win32_StartupCommand via WMI and reports Startup Programs in a formatted table, with an optional CSV export.
Load Processor Info into Excel via WMI
Queries Win32_Processor via GetObject("winmgmts:") and dumps every Processor Info row straight onto the active workshee…
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…
Enable Dark Mode (VBScript)
Switches File Explorer and other system surfaces to dark mode. Applies the tweak via WScript.Shell.RegWrite.