Browse all scripts
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…
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…
Get Time Zone Settings Report (C#)
Queries Win32_TimeZone via WMI (System.Management) and prints Time Zone Settings to the console.
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…
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…
Win32_NetworkAdapter: Network Adapters (WQL)
A minimal WQL reference query against Win32_NetworkAdapter — the raw SELECT statement plus a one-line runner, useful fo…
Backup Computer System Info List to JSON
Snapshots Computer System Info from Win32_ComputerSystem to a timestamped JSON file for later comparison or auditing.
Check "Enable Light Mode" Status (VBScript)
Reads the registry value behind the "Enable Light Mode" tweak to confirm whether it's applied.
Win32_Environment: Event-Driven Monitoring (WQL __InstanceCreationEvent)
Subscribes to WMI's __InstanceCreationEvent for Win32_Environment via Register-CimIndicationEvent — real WQL event quer…
Check "Disable Feedback Notifications" Status (Batch)
Uses reg query to check the current value behind the "Disable Feedback Notifications" tweak.
Disable Tailored Experiences (JScript)
Stops Windows from using diagnostic data to personalize tips and ads. Applies the tweak via WScript.Shell.RegWrite (JSc…
Apply Disable Start Menu App Suggestions (VBA)
Turns off sponsored app suggestions in the Start menu. Applied via WScript.Shell.RegWrite from VBA.