Browse all scripts
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β¦
Accept All Tracked Changes
Accepts every tracked change in the active Word document and turns off change tracking.
Get Processor Info Report (Python)
Uses wmic under the hood to report Processor Info (Win32_Processor) β no third-party packages required.
Check "Disable Background Apps Globally" Status (Batch)
Uses reg query to check the current value behind the "Disable Background Apps Globally" tweak.
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β¦
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β¦
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β¦
Backup The Microsoft Teams cache to Zip
Zips up the current contents of the Microsoft Teams cache before you run a cleanup against it.
Load Network Login Profiles into Excel via WMI
Queries Win32_NetworkLoginProfile via GetObject("winmgmts:") and dumps every Network Login Profiles row straight onto tβ¦
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β¦
Disable News and Interests Feed (Batch)
Hides the taskbar News and Interests / Widgets feed. Applies the tweak via reg.exe.
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.