Initial commit - EENE Dashboard

Co-authored-by: Cursor <cursoragent@cursor.com>
This commit is contained in:
EENE Dashboard
2026-05-29 18:07:10 +09:00
commit 22366dde72
64 changed files with 10483 additions and 0 deletions

19
윈도우시작등록.bat Normal file
View File

@@ -0,0 +1,19 @@
@echo off
chcp 65001 > nul
title Auto Start Registration
set STARTUP=%APPDATA%\Microsoft\Windows\Start Menu\Programs\Startup
set TARGET=%~dp0서버시작.bat
echo Registering EENE Dashboard for Windows startup...
echo.
powershell -Command "$ws = New-Object -ComObject WScript.Shell; $lnk = $ws.CreateShortcut('%STARTUP%\EENE-Dashboard.lnk'); $lnk.TargetPath = '%TARGET%'; $lnk.WorkingDirectory = '%~dp0'; $lnk.Description = 'EENE Dashboard Auto Start'; $lnk.Save()"
if %errorlevel% equ 0 (
echo [Done] Server will auto-start when Windows boots.
) else (
echo [Error] Please run as Administrator.
)
echo.
pause