/
vaskaz
/
hermes-agent
Обзор
Документация
Войти
/
vaskaz
/
hermes-agent
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
CI/CD
Аналитика
Безопасность
master
scripts/install.cmd
28 строк
1 KB
vaskaz
init
10 июн 2026, 01:19
10 июн 2026, 01:19
0d6bb0d
Код
Авторство
О чём код?
@echo off REM ============================================================================ REM Hermes Agent Installer for Windows (CMD wrapper) REM ============================================================================ REM This batch file launches the PowerShell installer for users running CMD. REM REM Usage: REM curl -fsSL https://raw.githubusercontent.com/NousResearch/hermes-agent/main/scripts/install.cmd -o install.cmd && install.cmd && del install.cmd REM REM Or if you're already in PowerShell, use the direct command instead: REM iex (irm https://hermes-agent.nousresearch.com/install.ps1) REM ============================================================================ echo. echo Hermes Agent Installer echo Launching PowerShell installer... echo. powershell -ExecutionPolicy ByPass -NoProfile -Command "iex (irm https://hermes-agent.nousresearch.com/install.ps1)" if %ERRORLEVEL% NEQ 0 ( echo. echo Installation failed. Please try running PowerShell directly: echo powershell -ExecutionPolicy ByPass -c "iex (irm https://hermes-agent.nousresearch.com/install.ps1)" echo. pause exit /b 1 )