backup: WIP Windows avant repart propre (GUI core installer splash spec)

This commit is contained in:
2026-06-05 12:11:21 +02:00
parent 39db675052
commit 1abee3e089
27 changed files with 4628 additions and 775 deletions

View File

@@ -0,0 +1,28 @@
@echo off
setlocal
set "SCRIPT_DIR=%~dp0"
set "PS_SCRIPT=%SCRIPT_DIR%scripts\build_windows_oneclick.ps1"
if not exist "%PS_SCRIPT%" (
echo Script PowerShell introuvable : %PS_SCRIPT%
pause
exit /b 1
)
echo Lancement du build Windows avec installateur...
powershell -NoLogo -NoProfile -ExecutionPolicy Bypass -File "%PS_SCRIPT%"
set "EXITCODE=%ERRORLEVEL%"
if not "%EXITCODE%"=="0" (
echo.
echo Le build installateur a echoue. Code retour : %EXITCODE%
pause
exit /b %EXITCODE%
)
echo.
echo Build installateur termine avec succes.
echo Sortie attendue : release\Anonymisation-Setup.exe
pause
exit /b 0