Browse all scripts

🧬 WQL / PowerShell

Win32_OperatingSystem: Sorting Operating 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…

🧬 WQL / PowerShell

Win32_Battery: Battery Info (WQL)

A minimal WQL reference query against Win32_Battery — the raw SELECT statement plus a one-line runner, useful for learn…

🟣 C# / .NET 6+

Get Time Zone Settings Report (C#)

Queries Win32_TimeZone via WMI (System.Management) and prints Time Zone Settings to the console.

🧬 WQL / PowerShell

Win32_SoundDevice: Querying Sound Devices Remotely (CIM Session)

Runs the same Win32_SoundDevice WQL query against a remote computer over a CIM session — the modern, WinRM-based replac…

⚡ PowerShell 5.1+

Check "Show This PC Icon on Desktop" Status

Reads the current registry value behind the "Show This PC Icon on Desktop" tweak so you can confirm whether it's applie…

🧬 WQL / PowerShell

Win32_NetworkAdapter: Network Adapters (WQL)

A minimal WQL reference query against Win32_NetworkAdapter — the raw SELECT statement plus a one-line runner, useful fo…

⚡ PowerShell 5.1+

Backup Computer System Info List to JSON

Snapshots Computer System Info from Win32_ComputerSystem to a timestamped JSON file for later comparison or auditing.

📜 VBScript (WSH)

Check "Enable Light Mode" Status (VBScript)

Reads the registry value behind the "Enable Light Mode" tweak to confirm whether it's applied.

🧬 WQL / PowerShell

Win32_Environment: Event-Driven Monitoring (WQL __InstanceCreationEvent)

Subscribes to WMI's __InstanceCreationEvent for Win32_Environment via Register-CimIndicationEvent — real WQL event quer…

🖥️ Batch (CMD)

Check "Disable Feedback Notifications" Status (Batch)

Uses reg query to check the current value behind the "Disable Feedback Notifications" tweak.

📄 JScript (WSH)

Disable Tailored Experiences (JScript)

Stops Windows from using diagnostic data to personalize tips and ads. Applies the tweak via WScript.Shell.RegWrite (JSc…

📊 VBA (Excel)

Apply Disable Start Menu App Suggestions (VBA)

Turns off sponsored app suggestions in the Start menu. Applied via WScript.Shell.RegWrite from VBA.