10 lines
252 B
Batchfile
10 lines
252 B
Batchfile
@echo off
|
|
echo === Stop PicoBot Gateway ===
|
|
powershell -ExecutionPolicy Bypass -File "%~dp0start-gateway.ps1" -Action stop
|
|
|
|
echo.
|
|
echo === Start PicoBot Gateway ===
|
|
powershell -ExecutionPolicy Bypass -File "%~dp0start-gateway.ps1" -Action start
|
|
|
|
pause
|