Browse all scripts

🐍 Python 3.10+

Export Connected Monitors to CSV (Python)

Exports Connected Monitors (Win32_DesktopMonitor) to a timestamped CSV file via wmic.

πŸ“œ VBScript (WSH)

Check "Disable Balloon Tip Notifications" Status (VBScript)

Reads the registry value behind the "Disable Balloon Tip Notifications" tweak to confirm whether it's applied.

πŸ“„ JScript (WSH)

Disable Taskbar Widgets Icon (JScript)

Removes the Widgets icon from the Windows 11 taskbar. Applies the tweak via WScript.Shell.RegWrite (JScript syntax).

🧬 WQL / PowerShell

Win32_PageFileUsage: Event-Driven Monitoring (WQL __InstanceCreationEvent)

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

🧬 WQL / PowerShell

Win32_Environment: Finding Associated Objects (WQL ASSOCIATORS OF)

Demonstrates Get-CimAssociatedInstance, the modern CIM equivalent of WQL's ASSOCIATORS OF syntax, against a Win32_Envir…

🧰 AutoHotkey v2

Flush DNS Hotkey

Ctrl+Alt+D runs ipconfig /flushdns in the background and shows a tooltip confirmation, no console window needed.

⚑ PowerShell 5.1+

Get IIS log files Size Report

Reports how much disk space IIS log files is currently using, read-only (no deletion).

🧬 WQL / PowerShell

Win32_Service: Discovering Available Properties (Get-CimClass)

Uses Get-CimClass to list every real property and method Win32_Service exposes on the current system, instead of guessi…

🧬 WQL / PowerShell

Win32_PhysicalMemory: Physical Memory Modules (WQL)

A minimal WQL reference query against Win32_PhysicalMemory β€” the raw SELECT statement plus a one-line runner, useful fo…

🧬 WQL / PowerShell

Win32_VideoController: Sorting Video Controllers (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…

πŸ–₯️ Batch (CMD)

Get Services Report (Batch)

Uses wmic to list Services (Win32_Service) straight from the command line.

πŸ“Š VBA (Excel)

Check Disable Windows Welcome Experience Registry Value (VBA)

Reads the Disable Windows Welcome Experience registry value via WScript.Shell.RegRead and reports it in a message box —…