13 lines
134 B
Batchfile
13 lines
134 B
Batchfile
|
@echo off
|
||
|
cd /d %~dp0
|
||
|
set curpath=%cd%
|
||
|
cd /d %curpath%/net6.0
|
||
|
|
||
|
start /max Panda.WebUI.LogCenter.exe
|
||
|
|
||
|
ping 127.0.0.1 -n 3 >nul
|
||
|
|
||
|
exit
|
||
|
|
||
|
|