18 lines
561 B
Batchfile
18 lines
561 B
Batchfile
@echo off
|
|
|
|
REM ================================================================
|
|
REM PLANTPLAN - Server und Client gemeinsam stoppen
|
|
REM ================================================================
|
|
|
|
echo ================================================================
|
|
echo PlantPlan - Stoppe Server und Client ...
|
|
echo ================================================================
|
|
echo.
|
|
|
|
call "%~dp0server.bat" stop
|
|
call "%~dp0client.bat" stop
|
|
|
|
echo.
|
|
echo Alle Prozesse gestoppt.
|
|
echo ================================================================
|