mirror of
https://github.com/andrey271192/ssh-manage.git
synced 2026-09-20 11:55:37 +00:00
Portable SSH client with auto-save sessions. - Session groups (drag-and-drop between groups) - 100+ quick commands for Linux and Keenetic routers - Built-in command suggestion agent - Dark theme (Catppuccin), PCA branding - Builds to .exe (Windows) or .app (macOS) Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
18 lines
360 B
Batchfile
18 lines
360 B
Batchfile
@echo off
|
|
echo === KU SSH Manager — Install and Run ===
|
|
|
|
where python >nul 2>&1
|
|
if errorlevel 1 (
|
|
echo Python not found!
|
|
echo Download: https://python.org/downloads/
|
|
echo Check "Add Python to PATH" during install!
|
|
pause
|
|
exit /b 1
|
|
)
|
|
|
|
echo Installing dependencies...
|
|
pip install paramiko
|
|
|
|
echo Starting SSH Manager...
|
|
python ssh_manager.py
|