-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathWHERE_AM_I.bat
More file actions
32 lines (31 loc) · 797 Bytes
/
WHERE_AM_I.bat
File metadata and controls
32 lines (31 loc) · 797 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
@echo off
REM This script shows you the project location
cls
echo ============================================================
echo Local Nexus Controller - Project Location
echo ============================================================
echo.
echo Your project is located at:
echo.
echo %~dp0
echo.
echo ============================================================
echo.
echo To start the controller, you can:
echo.
echo 1. Double-click: start.bat
echo (in this same folder)
echo.
echo 2. Open PowerShell/Command Prompt here and run:
echo start.bat
echo.
echo 3. Enable auto-start by double-clicking:
echo tools\ENABLE_AUTO_START.bat
echo.
echo ============================================================
echo.
echo Copy this path for use in commands:
echo.
echo %~dp0
echo.
pause