Browse all scripts
Win32_SystemDriver: Finding Associated Objects (WQL ASSOCIATORS OF)
Demonstrates Get-CimAssociatedInstance, the modern CIM equivalent of WQL's ASSOCIATORS OF syntax, against a Win32_Systeβ¦
Get Installed MSI Products Report (Python)
Uses wmic under the hood to report Installed MSI Products (Win32_Product) β no third-party packages required.
Get Processes Report (Batch)
Uses wmic to list Processes (Win32_Process) straight from the command line.
Enable Light Mode (C#)
Reverts File Explorer and other system surfaces to light mode. Applies the tweak via Microsoft.Win32.Registry.
Disable Taskbar Widgets Icon (VBScript)
Removes the Widgets icon from the Windows 11 taskbar. Applies the tweak via WScript.Shell.RegWrite.
Remove Hyperlinks from Sheet
Strips all hyperlinks from the active sheet while keeping the cell text and formatting intact.
Get The Explorer thumbnail cache Size Report (Python)
Recursively sums the size of the Explorer thumbnail cache, read-only (no deletion).
Check "Disable Balloon Tip Notifications" Status (Python)
Reads the registry value behind the "Disable Balloon Tip Notifications" tweak via winreg to confirm whether it's applieβ¦
Get Processes Report (VBScript)
Queries Win32_Process via WMI and prints Processes to the console β no PowerShell required.
Win32_ComputerSystem: Filtering Computer System Info (WQL WHERE)
Shows the WQL WHERE clause syntax against Win32_ComputerSystem, starting from a LIKE '%' wildcard you customize with a β¦
Win32_ComputerSystem: Sorting Computer System Info (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β¦
Win32_Service: Sorting Services (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β¦