AAA
All checks were successful
Build and push image / Build (push) Has been cancelled

This commit is contained in:
Jack
2023-09-27 19:12:20 +01:00
parent e8bea844bd
commit 3bd5605b75
190 changed files with 6864 additions and 4 deletions

View File

@@ -0,0 +1,14 @@
@echo off
TITLE AC Server
echo Starting AC Server...
SETLOCAL EnableDelayedExpansion
for /f "skip=1 tokens=1-6 delims= " %%a in ('wmic path Win32_LocalTime Get Day^,Hour^,Minute^,Month^,Second^,Year /format:table') do (
IF NOT "%%~f"=="" (
set /a _d=10000 * %%f + 100 * %%d + %%a
set /a _t=10000 * %%b + 100 * %%c + %%e
)
)
echo Output is logs/session/output%_d%_%_t%.log
acserver.exe > logs/session/output%_d%_%_t%.log 2> logs/error/error%_d%_%_t%.log