-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathSTART_HERE.bat
More file actions
47 lines (44 loc) · 909 Bytes
/
Copy pathSTART_HERE.bat
File metadata and controls
47 lines (44 loc) · 909 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
@echo off
chcp 65001 >nul
:menu
cls
echo.
echo ===============================================================
echo.
echo Character Card Duplicate Finder
echo.
echo Version 1.4
echo.
echo ===============================================================
echo.
echo Select an option:
echo.
echo [1] Run Application (with auto-install if needed)
echo [2] Quick Run (skip dependency check)
echo [3] Install Dependencies Only
echo [4] Uninstall Dependencies
echo [5] View README
echo [0] Exit
echo.
choice /C 123450 /N /M "Select option: "
if errorlevel 6 exit /b 0
if errorlevel 5 (
start "" README.md || notepad README.md
goto menu
)
if errorlevel 4 (
call uninstall.bat
goto menu
)
if errorlevel 3 (
call install_only.bat
goto menu
)
if errorlevel 2 (
call run_no_install.bat
goto menu
)
if errorlevel 1 (
call run.bat
goto menu
)