Download scripts for system diagnostics, cleanup, audits, and repairs
Cleans temp files, browser caches, Windows Update cache, and more
Gathers comprehensive system info for diagnostics
Scans local network for active hosts and ports
Exports all third-party drivers before OS reinstall
Exports all saved WiFi network credentials
Checks Windows license status and key info
Checks SMART data, temperatures, and volume status
Lists local users, groups, and recent logons
Generates detailed battery health report
Extracts Windows product key from BIOS/Registry
Resets print spooler and clears stuck jobs
Resets Windows Update components
Interactive tool to manage Windows services
View and manage the Windows hosts file
List installed certificates and find expiring ones
Lists all auto-start programs
Lists installed extensions for all browsers
Exports complete software inventory to CSV
Full audit of all scheduled tasks
Checks Microsoft Office license status
Lists Adobe products and Creative Cloud status
Extracts critical errors and BSOD events
Checks critical firewall settings and security rules
Generates HTML report of applied GPOs
Lists all printers with drivers and ports
Lists network drives and persistent connections
Click to copy โ paste into an admin PowerShell/CMD window
ipconfig /flushdns
netsh winsock reset && netsh int ip reset && ipconfig /release && ipconfig /renew && ipconfig /flushdns
sfc /scannow
DISM /Online /Cleanup-Image /RestoreHealth
chkdsk C: /f /r
net stop spooler && del /Q /F /S "%systemroot%\System32\spool\PRINTERS\*.*" && net start spooler
(Invoke-WebRequest -Uri "https://api.ipify.org").Content
Get-ItemProperty HKLM:\Software\Microsoft\Windows\CurrentVersion\Uninstall\* | Select DisplayName, DisplayVersion, Publisher | Sort DisplayName | Format-Table -AutoSize
(netsh wlan show profiles) | Select-String "\:(.+)$" | %{$name=$_.Matches.Groups[1].Value.Trim(); $_} | %{(netsh wlan show profile name="$name" key=clear)} | Select-String "Key Content\W+\:(.+)$" | %{$pass=$_.Matches.Groups[1].Value.Trim(); $_} | %{[PSCustomObject]@{PROFILE_NAME=$name;PASSWORD=$pass}} | Format-Table -AutoSize