π Python
Cross-platform automation scripts that also run great on Windows.
Export Installed Hotfixes to CSV (Python)
Exports Installed Hotfixes (Win32_QuickFixEngineering) to a timestamped CSV file via wmic.
Get Processor Info Report (Python)
Uses wmic under the hood to report Processor Info (Win32_Processor) β no third-party packages required.
Disable Game Bar Startup Tips (Python)
Stops the Game Bar from showing its startup tip panel. Applies the tweak via the stdlib winreg module.
Export Video Controllers to CSV (Python)
Exports Video Controllers (Win32_VideoController) to a timestamped CSV file via wmic.
Clean Up The system-wide Windows Temp folder (Python)
Reports the size of the system-wide Windows Temp folder and optionally clears it out. Dry-run by default.
Backup Installed MSI Products to JSON (Python)
Snapshots Installed MSI Products (Win32_Product) to a timestamped JSON file for later comparison or auditing.
Get Google Chrome's browser cache Size Report (Python)
Recursively sums the size of Google Chrome's browser cache, read-only (no deletion).
Export Sound Devices to CSV (Python)
Exports Sound Devices (Win32_SoundDevice) to a timestamped CSV file via wmic.
Export Battery Info to CSV (Python)
Exports Battery Info (Win32_Battery) to a timestamped CSV file via wmic.
Backup The user CrashDumps folder to Zip (Python)
Zips up the current contents of the user CrashDumps folder before you run a cleanup against it.
Get Motherboard Info Report (Python)
Uses wmic under the hood to report Motherboard Info (Win32_BaseBoard) β no third-party packages required.
Backup Network Adapter Configuration to JSON (Python)
Snapshots Network Adapter Configuration (Win32_NetworkAdapterConfiguration) to a timestamped JSON file for later comparβ¦