15 lines
203 B
Batchfile
15 lines
203 B
Batchfile
@echo off
|
|
setlocal
|
|
|
|
powershell -NoProfile -ExecutionPolicy Bypass -File "%~dp0stop-installed.ps1"
|
|
if errorlevel 1 (
|
|
echo.
|
|
echo [ERROR] SSH Manager 停止失败
|
|
pause
|
|
exit /b 1
|
|
)
|
|
|
|
pause
|
|
|
|
endlocal
|