@echo off
title Secure Launcher
color 0A

:START
cls
echo ==========================================
echo        Welcome to Secure Launcher
echo ==========================================
echo.
set /p "PASSWORD=Please enter access password: "

if "%PASSWORD%"=="  " (
    goto SUCCESS
) else (
    goto FAIL
)

:SUCCESS
cls
echo.
echo [+] Password correct! Verifying system environment...
echo [+] Locating target file...
echo [+] Preparing to launch...
echo.

start "" "%~dp02.lnk"

timeout /t 1 /nobreak >nul
exit

:FAIL
cls
color 0C
echo.
echo [X] Incorrect password!
echo [X] Access denied.
echo.
echo Press any key to try again...
pause >nul
goto START