Write-Host "Starting Winject..." -ForegroundColor Cyan Write-Host "Windows Tweaking & Optimization Tool" -ForegroundColor Green Write-Host "" $installUrl = "https://winject.dev/install.ps1" try { Invoke-RestMethod $installUrl | Invoke-Expression } catch { Write-Host "Error: Failed to download installation script" -ForegroundColor Red Write-Host $_.Exception.Message -ForegroundColor Red exit 1 }