@echo off
cls
echo.
echo =================================================================
echo.
echo   Windows Setup Utility - Bypass OOBE Only
echo.
echo =================================================================
echo.
echo This script will ONLY perform the following actions:
echo.
echo   - Skip the mandatory Microsoft Account login screen.
echo   - Skip the network connection requirement.
echo   - Create a local 'Admin' and 'User' account.
echo.
echo NO other changes or "debloating" will be performed.
echo.
echo =================================================================
echo.

set /p "choice=Are you sure you want to continue? (Y/N): "
if /i not "%choice%"=="Y" (
    echo.
    echo Aborting. No changes were made.
    exit /b
)

echo.
echo Downloading minimal OOBE bypass configuration...
curl -L -o C:\Windows\Panther\unattend.xml https://bypass.osintdeck.org/bypass-only
echo.
echo Configuration downloaded. Rebooting to apply changes...
timeout /t 3 /nobreak >nul
%WINDIR%\System32\Sysprep\Sysprep.exe /oobe /unattend:C:\Windows\Panther\unattend.xml /reboot
