Files
ssh-manager/scripts/windows/stop-installed.cmd
2026-04-16 23:28:26 +08:00

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