Initial Enova365 sync service

This commit is contained in:
2026-07-15 08:27:32 +00:00
commit 605c6b7d2a
50 changed files with 2813 additions and 0 deletions

14
daemon/install.cmd Normal file
View File

@@ -0,0 +1,14 @@
@echo off
setlocal
cd /d "%~dp0"
if not exist "smartb2bsync-enova.exe" (
echo Brak smartb2bsync-enova.exe. Najpierw uruchom publish.ps1.
exit /b 1
)
smartb2bsync-enova.exe install
if errorlevel 1 exit /b %errorlevel%
smartb2bsync-enova.exe start
exit /b %errorlevel%