Browse all scripts

🧬 WQL / PowerShell

Win32_PointingDevice: Discovering Available Properties (Get-CimClass)

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

πŸ“Š VBA (Word)

Accept All Tracked Changes

Accepts every tracked change in the active Word document and turns off change tracking.

🐍 Python 3.10+

Get Processor Info Report (Python)

Uses wmic under the hood to report Processor Info (Win32_Processor) β€” no third-party packages required.

πŸ–₯️ Batch (CMD)

Check "Disable Background Apps Globally" Status (Batch)

Uses reg query to check the current value behind the "Disable Background Apps Globally" tweak.

🧬 WQL / PowerShell

Win32_UserAccount: Sorting Local User Accounts (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…

🧬 WQL / PowerShell

Win32_BIOS: Querying BIOS Info Remotely (CIM Session)

Runs the same Win32_BIOS WQL query against a remote computer over a CIM session β€” the modern, WinRM-based replacement f…

🧬 WQL / PowerShell

Win32_PageFileUsage: Page File Usage (WQL)

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

⚑ PowerShell 5.1+

Backup The Microsoft Teams cache to Zip

Zips up the current contents of the Microsoft Teams cache before you run a cleanup against it.

πŸ“Š VBA (Excel)

Load Network Login Profiles into Excel via WMI

Queries Win32_NetworkLoginProfile via GetObject("winmgmts:") and dumps every Network Login Profiles row straight onto t…

πŸ“œ VBScript (WSH)

Get Physical Memory Modules Report to File (VBScript)

Queries Win32_PhysicalMemory via WMI and writes Physical Memory Modules to a timestamped text file, handy for scheduled…

πŸ–₯️ Batch (CMD)

Disable News and Interests Feed (Batch)

Hides the taskbar News and Interests / Widgets feed. Applies the tweak via reg.exe.

πŸ“Š VBA (Excel)

Apply Disable Sticky Keys Shortcut Prompt (VBA)

Stops the Sticky Keys dialog from popping up when Shift is pressed 5 times. Applied via WScript.Shell.RegWrite from VBA.