This commit is contained in:
Oliver
2026-03-17 15:48:02 -03:00
commit 004710aa05
8 changed files with 279 additions and 0 deletions
+13
View File
@@ -0,0 +1,13 @@
@echo off
REM Set memory allocation
set JAVA_OPTS=-Xms512m -Xmx4096m
REM Specify the JAR file
set JAR_FILE=vscu-v2.0.5.jar
REM Run the JAR file in a new window and redirect output to the original command window
start /wait java %JAVA_OPTS% -jar "%JAR_FILE%" 2>&1
REM Exit the original command window
exit