Files
2fa-account-tool/install.bat

39 lines
870 B
Batchfile
Raw Normal View History

@echo off
echo ==========================================
2026-01-28 15:08:46 +08:00
echo 2FA ACCOUNT TOOL - Setup Utility
echo ==========================================
echo.
2026-01-28 15:08:46 +08:00
:: Check for Node.js
node -v >nul 2>&1
if %errorlevel% neq 0 (
2026-01-28 15:08:46 +08:00
echo [ERROR] Node.js is not installed!
echo Please download and install Node.js from https://nodejs.org/
pause
exit /b
)
2026-01-28 15:08:46 +08:00
echo [1/2] Cleaning up old installation files...
if exist node_modules (
rd /s /q node_modules
)
2026-01-28 15:08:46 +08:00
echo [2/2] Installing dependencies (npm install)...
call npm install
if %errorlevel% neq 0 (
echo.
2026-01-28 15:08:46 +08:00
echo [ERROR] Dependency installation failed.
echo Please check your internet connection.
pause
exit /b
)
echo.
echo ==========================================
2026-01-28 15:08:46 +08:00
echo SETUP SUCCESSFUL!
echo You can now run 'start.vbs' to launch.
echo ==========================================
echo.
pause