Browse all scripts

πŸ“Š VBA (Excel)

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, …

🧬 WQL / PowerShell

Win32_Keyboard: Event-Driven Monitoring (WQL __InstanceCreationEvent)

Subscribes to WMI's __InstanceCreationEvent for Win32_Keyboard via Register-CimIndicationEvent β€” real WQL event query s…

πŸ“Š VBA (Excel)

Load Motherboard Info into Excel via WMI

Queries Win32_BaseBoard via GetObject("winmgmts:") and dumps every Motherboard Info row straight onto the active worksh…

πŸ“Š VBA (Excel)

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…

⚑ PowerShell 5.1+

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…

πŸ–₯️ Batch (CMD)

Get Network Adapter Configuration Report (Batch)

Uses wmic to list Network Adapter Configuration (Win32_NetworkAdapterConfiguration) straight from the command line.

πŸ–₯️ Batch (CMD)

Clean Up The user CrashDumps folder (Batch)

Clears the user CrashDumps folder after a confirmation prompt, with a /silent mode for scheduled tasks.

⚑ PowerShell 5.1+

Backup Local Groups List to JSON

Snapshots Local Groups from Win32_Group to a timestamped JSON file for later comparison or auditing.

πŸ–₯️ Batch (CMD)

Disable Feedback Notifications (Batch)

Stops Windows from periodically asking for feedback. Applies the tweak via reg.exe.

πŸ“Š VBA (Excel)

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…

πŸ“Š VBA (Excel)

Apply Disable Taskbar Transparency (VBA)

Turns off the translucent taskbar/Start menu effect for a small performance gain. Applied via WScript.Shell.RegWrite fr…

🟣 C# / .NET 6+

Backup Printers to JSON (C#)

Snapshots Printers (Win32_Printer) to a timestamped JSON file via System.Management and System.Text.Json.