openHAB install after windows service feature install

This commit is contained in:
2019-11-08 16:28:55 -06:00
commit 6a5b2422b6
973 changed files with 22607 additions and 0 deletions

44
runtime/bin/restore.bat Normal file
View File

@@ -0,0 +1,44 @@
@ECHO off
SETLOCAL
IF "%1"=="?" GOTO printArgs
IF "%1"=="\?" GOTO printArgs
IF "%1"=="/?" GOTO printArgs
IF NOT [%~4]==[] IF NOT "%~4"=="true" IF NOT "%~4"=="false" GOTO printArgs
SET autoConfirm=False
IF "%~4"=="true" SET autoConfirm=True
SET rargs=
IF NOT [%1]==[] ( SET rargs=%rargs% -OHDirectory %~1% )
IF NOT [%2]==[] ( SET rargs=%rargs% -OHBackups %~2% )
IF NOT [%3]==[] ( SET rargs=%rargs% -FileName %~3% )
CD %~dp0
powershell -ExecutionPolicy Bypass -command "& { . .\restore.ps1; Restore-openHAB %rargs% -AutoConfirm $%autoConfirm% }"
SET LEVEL=%ERRORLEVEL%
if %LEVEL% LSS 0 (
PAUSE
EXIT /B %LEVEL%
)
EXIT /B 0
:printArgs
ECHO Usage: restore.bat {OHDirectory} {OHBackups} {FileName} {AutoConfirm}
ECHO OHDirectory (optional) - The openHAB distribution directory
ECHO OHBackups (optional) - The directory where backups are stored
ECHO FileName (optional) - The backup file name (found in OHBackups)
ECHO AutoConfrim (optional) - "true" to automatically confirm restoration, "false" otherwise
ECHO.
ECHO Example to restore openHAB from the latest backup in the default locations
ECHO restore.bat
ECHO.
ECHO Example to restore openHAB from the "backup.zip" found in "c:\openhab2\backups" with auto confirming:
ECHO restore.bat "c:\openhab2" "c:\openhab2\backups" "backup.zip" true
ECHO.
EXIT /B -1