Browse all scripts
Clean Up The user CrashDumps folder (VBA)
Deletes every file in the user CrashDumps folder after a confirmation prompt, using Scripting.FileSystemObject from Exc…
Get Motherboard Info Report (JScript)
Queries Win32_BaseBoard via WMI and prints Motherboard Info to the console — JScript, VBScript's WSH sibling language.
Get IIS log files Size Report (Python)
Recursively sums the size of IIS log files, read-only (no deletion).
Win32_QuickFixEngineering: Filtering Installed Hotfixes (WQL WHERE)
Shows the WQL WHERE clause syntax against Win32_QuickFixEngineering, starting from a LIKE '%' wildcard you customize wi…
Check "Align Taskbar Icons Left" Status (Batch)
Uses reg query to check the current value behind the "Align Taskbar Icons Left" tweak.
Export Processes to CSV (Python)
Exports Processes (Win32_Process) to a timestamped CSV file via wmic.
Check "Hide Taskbar Search Box" Status (Python)
Reads the registry value behind the "Hide Taskbar Search Box" tweak via winreg to confirm whether it's applied.
Export Network Adapters to CSV (Python)
Exports Network Adapters (Win32_NetworkAdapter) to a timestamped CSV file via wmic.
Win32_NetworkAdapter: Event-Driven Monitoring (WQL __InstanceCreationEvent)
Subscribes to WMI's __InstanceCreationEvent for Win32_NetworkAdapter via Register-CimIndicationEvent — real WQL event q…
Watch Logical Disks for Changes
Polls Win32_LogicalDisk on an interval and prints a line whenever the Logical Disks count changes — a lightweight way t…
Get Network Login Profiles Report (C#)
Queries Win32_NetworkLoginProfile via WMI (System.Management) and prints Network Login Profiles to the console.
Always on Top Toggle
Win+T toggles the active window to stay always on top — great for pinning a reference window while you work in another.