Skip to content

Commit b7c43f3

Browse files
authored
Added LIST_ALL_FILES.bat
1 parent 235b6c5 commit b7c43f3

File tree

2 files changed

+80
-0
lines changed

2 files changed

+80
-0
lines changed

LIST_ALL_FILES.bat

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
@echo off
2+
echo ============================================================
3+
echo All Batch Files in Project Root
4+
echo ============================================================
5+
echo.
6+
dir /b *.bat
7+
echo.
8+
echo ============================================================
9+
echo All Documentation Files
10+
echo ============================================================
11+
echo.
12+
dir /b *.md *.txt
13+
echo.
14+
echo ============================================================
15+
echo Project Location
16+
echo ============================================================
17+
echo %cd%
18+
echo.
19+
pause

🚀 START HERE.bat

Lines changed: 61 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,61 @@
1+
@echo off
2+
cls
3+
echo.
4+
echo ═══════════════════════════════════════════════════════════════
5+
echo LOCAL NEXUS CONTROLLER - MAIN MENU
6+
echo ═══════════════════════════════════════════════════════════════
7+
echo.
8+
echo What would you like to do?
9+
echo.
10+
echo [1] Start Controller Now (Manual)
11+
echo - Starts the controller right now
12+
echo - Use this to test everything works
13+
echo.
14+
echo [2] Setup Auto-Start (Requires Admin)
15+
echo - Configure Windows to start controller on boot
16+
echo - One-time setup
17+
echo.
18+
echo [3] View All Files in This Folder
19+
echo - Shows all .bat and documentation files
20+
echo.
21+
echo [4] Exit
22+
echo.
23+
echo ═══════════════════════════════════════════════════════════════
24+
echo.
25+
set /p choice=Enter your choice (1-4):
26+
27+
if "%choice%"=="1" (
28+
echo.
29+
echo Starting controller...
30+
call QUICK_START.bat
31+
goto end
32+
)
33+
34+
if "%choice%"=="2" (
35+
echo.
36+
echo Opening auto-start setup...
37+
echo.
38+
echo IMPORTANT: You need to run this as Administrator!
39+
echo Right-click on "SIMPLE_AUTO_START_SETUP.bat" and select "Run as administrator"
40+
echo.
41+
pause
42+
explorer .
43+
goto end
44+
)
45+
46+
if "%choice%"=="3" (
47+
call LIST_ALL_FILES.bat
48+
goto end
49+
)
50+
51+
if "%choice%"=="4" (
52+
exit
53+
)
54+
55+
echo.
56+
echo Invalid choice. Please try again.
57+
echo.
58+
pause
59+
goto :start
60+
61+
:end

0 commit comments

Comments
 (0)