Browse all scripts
Get Local User Accounts Report (Python)
Uses wmic under the hood to report Local User Accounts (Win32_UserAccount) β no third-party packages required.
Export Processes to CSV via WMI (VBA)
Queries Win32_Process via WMI and writes every Processes row straight to a CSV file in Documents, using plain VBA file β¦
Get Services Report (VBScript)
Queries Win32_Service via WMI and prints Services to the console β no PowerShell required.
Watch USB Controllers for Changes
Polls Win32_USBController on an interval and prints a line whenever the USB Controllers count changes β a lightweight wβ¦
Enable Clipboard History (VBScript)
Turns on Windows+V clipboard history. Applies the tweak via WScript.Shell.RegWrite.
Get Network Login Profiles Report (Python)
Uses wmic under the hood to report Network Login Profiles (Win32_NetworkLoginProfile) β no third-party packages requireβ¦
Check "Disable Taskbar Widgets Icon" Status (VBScript)
Reads the registry value behind the "Disable Taskbar Widgets Icon" tweak to confirm whether it's applied.
Win32_Process: Querying Processes Remotely (CIM Session)
Runs the same Win32_Process WQL query against a remote computer over a CIM session β the modern, WinRM-based replacemenβ¦
Win32_PageFileUsage: Finding Associated Objects (WQL ASSOCIATORS OF)
Demonstrates Get-CimAssociatedInstance, the modern CIM equivalent of WQL's ASSOCIATORS OF syntax, against a Win32_PageFβ¦
Export Services to CSV (Python)
Exports Services (Win32_Service) to a timestamped CSV file via wmic.
Backup CD/DVD Drives to JSON (C#)
Snapshots CD/DVD Drives (Win32_CDROMDrive) to a timestamped JSON file via System.Management and System.Text.Json.
Clean Up IIS log files (VBScript)
Reports the size of IIS log files and deletes its contents after a confirmation prompt.