Browse all scripts
Check Disable Game Bar Startup Tips Registry Value (VBA)
Reads the Disable Game Bar Startup Tips registry value via WScript.Shell.RegRead and reports it in a message box β no Pβ¦
Check "Disable Windows Consumer Features" Status (Python)
Reads the registry value behind the "Disable Windows Consumer Features" tweak via winreg to confirm whether it's applieβ¦
Disable Windows Tips & Suggestions (C#)
Stops Windows from showing tips and suggestions notifications. Applies the tweak via Microsoft.Win32.Registry.
Load Logical Disks into Excel via WMI
Queries Win32_LogicalDisk via GetObject("winmgmts:") and dumps every Logical Disks row straight onto the active worksheβ¦
Get Keyboard Info Report (JScript)
Queries Win32_Keyboard via WMI and prints Keyboard Info to the console β JScript, VBScript's WSH sibling language.
Win32_LogicalDisk: Sorting Logical Disks (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β¦
Get Sound Devices Report (VBScript)
Queries Win32_SoundDevice via WMI and prints Sound Devices to the console β no PowerShell required.
Disable Explorer Startup Delay (Python)
Removes the artificial delay before startup apps launch. Applies the tweak via the stdlib winreg module.
Check "Disable First Logon Animation" Status
Reads the current registry value behind the "Disable First Logon Animation" tweak so you can confirm whether it's appliβ¦
Get Network Adapters Report (VBScript)
Queries Win32_NetworkAdapter via WMI and prints Network Adapters to the console β no PowerShell required.
Get Motherboard Info Report (VBScript)
Queries Win32_BaseBoard via WMI and prints Motherboard Info to the console β no PowerShell required.
Win32_SystemDriver: Event-Driven Monitoring (WQL __InstanceCreationEvent)
Subscribes to WMI's __InstanceCreationEvent for Win32_SystemDriver via Register-CimIndicationEvent β real WQL event queβ¦