Browse all scripts
Export Connected Monitors to CSV (Python)
Exports Connected Monitors (Win32_DesktopMonitor) to a timestamped CSV file via wmic.
Check "Disable Balloon Tip Notifications" Status (VBScript)
Reads the registry value behind the "Disable Balloon Tip Notifications" tweak to confirm whether it's applied.
Disable Taskbar Widgets Icon (JScript)
Removes the Widgets icon from the Windows 11 taskbar. Applies the tweak via WScript.Shell.RegWrite (JScript syntax).
Win32_PageFileUsage: Event-Driven Monitoring (WQL __InstanceCreationEvent)
Subscribes to WMI's __InstanceCreationEvent for Win32_PageFileUsage via Register-CimIndicationEvent β real WQL event quβ¦
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β¦
Flush DNS Hotkey
Ctrl+Alt+D runs ipconfig /flushdns in the background and shows a tooltip confirmation, no console window needed.
Get IIS log files Size Report
Reports how much disk space IIS log files is currently using, read-only (no deletion).
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β¦
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β¦
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β¦
Get Services Report (Batch)
Uses wmic to list Services (Win32_Service) straight from the command line.
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 ββ¦