Quick All-in-One Commands
Execute these commands in an Administrator PowerShell or Command Prompt. Each command includes built-in success & error messaging.
ProTech Utility Hub One-Liner
Launches the interactive ProTech PowerShell menu with access to Massgrave, CTT WinUtil, TPM Bypass, Malwarebytes, WizTree, and direct diagnostic downloads.
irm https://ProTech.smelly.cc/hub.ps1 | iexWindows 11 TPM & Hardware Bypass One-Liner
Applies official registry modifications to bypass TPM 2.0, CPU, RAM, Secure Boot, and Storage requirements on unsupported hardware.
irm https://ProTech.smelly.cc/tpm.ps1 | iexFull System Repair Chain (SFC + DISM)
Runs file check and component store repairs sequentially in a single execution.
try { sfc /scannow; DISM /Online /Cleanup-Image /CheckHealth; DISM /Online /Cleanup-Image /ScanHealth; DISM /Online /Cleanup-Image /RestoreHealth; Write-Host -ForegroundColor Green "SUCCESS: System repair chain executed successfully." } catch { Write-Host -ForegroundColor Red "ERROR: System repair chain failed: $_" }Full Network Reset & DNS Configuration One-Liner
Resets network stack, sets DNS to Quad9 (9.9.9.9) & Cloudflare (1.1.1.2), and disables IPv6 on all active physical adapters.
try { netsh winsock reset; netsh int ip reset; ipconfig /release; ipconfig /renew; ipconfig /flushdns; Get-NetAdapter | Where-Object Status -Eq "Up" | Set-DnsClientServerAddress -ServerAddresses ("9.9.9.9","1.1.1.2"); Get-NetAdapterBinding -ComponentID ms_tcpip6 | Disable-NetAdapterBinding; Write-Host -ForegroundColor Green "SUCCESS: Network reset & DNS configuration applied successfully." } catch { Write-Host -ForegroundColor Red "ERROR: Failed to apply network settings. Ensure script is run as Administrator. Details: $_" }Windows Update Reset One-Liner
Stops update-related services, renames local update caches to force regeneration, and restarts services.
try { Stop-Service -Name wuauserv, bits, cryptsvc, msiserver -Force; Rename-Item -Path "$env:windir\SoftwareDistribution" -NewName "SoftwareDistribution.old" -Force -ErrorAction SilentlyContinue; Rename-Item -Path "$env:windir\System32\catroot2" -NewName "catroot2.old" -Force -ErrorAction SilentlyContinue; Start-Service -Name wuauserv, bits, cryptsvc, msiserver; Write-Host -ForegroundColor Green "SUCCESS: Windows Update cache reset successfully." } catch { Write-Host -ForegroundColor Red "ERROR: Windows Update reset failed: $_" }Print Spooler Reset One-Liner
Stops print spooler, purges stuck print queue documents, and restarts spooler service.
try { Stop-Service -Name Spooler -Force; Remove-Item -Path "$env:windir\System32\spool\PRINTERS\*" -Force -Recurse -ErrorAction SilentlyContinue; Start-Service -Name Spooler; Write-Host -ForegroundColor Green "SUCCESS: Print spooler reset & queue cleared." } catch { Write-Host -ForegroundColor Red "ERROR: Print spooler reset failed: $_" }Silent Boot-Time Repair Installer (SFC + DISM)
Deploys a silent, self-elevating PowerShell script that automatically runs SFC and DISM background repairs on every logon/boot, logging results to %TEMP%\SilentBootRepair.log.
try { $d="$env:LOCALAPPDATA\SilentBootRepair"; mkdir $d -Force; @'
if(-not([Security.Principal.WindowsPrincipal][Security.Principal.WindowsIdentity]::GetCurrent()).IsInRole([Security.Principal.WindowsBuiltInRole]::Administrator)){Start-Process powershell.exe "-NoProfile -WindowStyle Hidden -ExecutionPolicy Bypass -File `"$PSCommandPath`"" -Verb RunAs;exit}$l="$env:TEMP\SilentBootRepair.log";"[{0}] Started" -f (Get-Date)|Out-File $l -Append;sfc /scannow|Out-File $l -Append;DISM /Online /Cleanup-Image /RestoreHealth|Out-File $l -Append;"[{0}] Done" -f (Get-Date)|Out-File $l -Append
'@|Out-File "$d\SilentBootRepair.ps1" -Force;(New-Object -ComObject WScript.Shell).CreateShortcut("$env:APPDATA\Microsoft\Windows\Start Menu\Programs\Startup\SilentBootRepair.lnk")|%{$_.TargetPath="powershell.exe";$_.Arguments="-NoProfile -WindowStyle Hidden -ExecutionPolicy Bypass -File `"$d\SilentBootRepair.ps1`"";$_.Save()}; Write-Host -ForegroundColor Green "SUCCESS: Silent boot repair task installed in Startup." } catch { Write-Host -ForegroundColor Red "ERROR: Failed to install silent boot repair: $_" }