hallidda/axonhub
0
1@echo off
2setlocal
3
4REM AxonHub Windows installer wrapper (.bat)
5
6where powershell >NUL 2>NUL
7if %ERRORLEVEL% NEQ 0 (
8 echo [ERROR] PowerShell is required to run this installer.
9 echo Please run on Windows 7+ with PowerShell available in PATH.
10 exit /b 1
11)
12
13set "SCRIPT_DIR=%~dp0"
14powershell -NoProfile -ExecutionPolicy Bypass -File "%SCRIPT_DIR%install.ps1" %*
15exit /b %ERRORLEVEL%
16 