11 lines
291 B
Batchfile
11 lines
291 B
Batchfile
@echo off & setlocal enabledelayedexpansion
|
|
title lanproxy-client
|
|
cd %~dp0
|
|
|
|
set LIB_JARS=""
|
|
cd ..\lib
|
|
for %%i in (*) do set LIB_JARS=!LIB_JARS!;..\lib\%%i
|
|
cd ..\bin
|
|
|
|
java -Dapp.home=../ -Xms64m -Xmx1024m -classpath ..\conf;%LIB_JARS% org.fengfei.lanproxy.client.ProxyClientContainer
|
|
goto end |