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

14 lines
249 B
Batchfile

@echo off
setlocal
powershell -NoProfile -ExecutionPolicy Bypass -File "%~dp0start-installed.ps1"
if errorlevel 1 (
echo.
echo [ERROR] SSH Manager 启动失败
echo 日志目录: %LOCALAPPDATA%\SSHManager\logs
pause
exit /b 1
)
endlocal