This commit is contained in:
2026-04-16 13:32:32 +02:00
parent 7cc162a645
commit 3bdc930d6e
21608 changed files with 3990969 additions and 1168 deletions

View File

@@ -0,0 +1,18 @@
@echo off
setlocal EnableExtensions
cd /d "%~dp0"
set "TARGET=%~1"
if "%TARGET%"=="" set "TARGET=basis14.py"
echo.
echo ==========================================
echo RESTORE PICK (letzte 10 Backups)
echo ==========================================
echo Ziel: %TARGET%
echo.
powershell -NoProfile -ExecutionPolicy Bypass -File "%~dp0_restore_pick.ps1" "%TARGET%" 10
echo.
pause
endlocal