Browse all scripts
Export Physical Memory Modules to CSV via WMI (VBA)
Queries Win32_PhysicalMemory via WMI and writes every Physical Memory Modules row straight to a CSV file in Documents, β¦
Win32_Keyboard: Event-Driven Monitoring (WQL __InstanceCreationEvent)
Subscribes to WMI's __InstanceCreationEvent for Win32_Keyboard via Register-CimIndicationEvent β real WQL event query sβ¦
Load Motherboard Info into Excel via WMI
Queries Win32_BaseBoard via GetObject("winmgmts:") and dumps every Motherboard Info row straight onto the active workshβ¦
Export Sound Devices to CSV via WMI (VBA)
Queries Win32_SoundDevice via WMI and writes every Sound Devices row straight to a CSV file in Documents, using plain Vβ¦
Check "Disable Windows Consumer Features" Status
Reads the current registry value behind the "Disable Windows Consumer Features" tweak so you can confirm whether it's aβ¦
Get Network Adapter Configuration Report (Batch)
Uses wmic to list Network Adapter Configuration (Win32_NetworkAdapterConfiguration) straight from the command line.
Clean Up The user CrashDumps folder (Batch)
Clears the user CrashDumps folder after a confirmation prompt, with a /silent mode for scheduled tasks.
Backup Local Groups List to JSON
Snapshots Local Groups from Win32_Group to a timestamped JSON file for later comparison or auditing.
Disable Feedback Notifications (Batch)
Stops Windows from periodically asking for feedback. Applies the tweak via reg.exe.
Check Disable Bing Search Suggestions Registry Value (VBA)
Reads the Disable Bing Search Suggestions registry value via WScript.Shell.RegRead and reports it in a message box β noβ¦
Apply Disable Taskbar Transparency (VBA)
Turns off the translucent taskbar/Start menu effect for a small performance gain. Applied via WScript.Shell.RegWrite frβ¦
Backup Printers to JSON (C#)
Snapshots Printers (Win32_Printer) to a timestamped JSON file via System.Management and System.Text.Json.