@echo off
setlocal

:: TECHNOTREMENT - Installation agent assistance a distance
:: Double-clic pour installer. Demande une elevation UAC.

net session 1>NUL 2>NUL
if %errorlevel% NEQ 0 (
    powershell -NoProfile -Command "Start-Process -FilePath '%~f0' -Verb RunAs"
    exit /b
)

title Installation TECHNOTREMENT
mode con: cols=72 lines=20
color 1F
cls
echo.
echo   =====================================================
echo     TECHNOTREMENT - Installation agent a distance
echo   =====================================================
echo.
echo   Installation en cours, merci de patienter...
echo.

powershell -NoProfile -ExecutionPolicy Bypass -Command "irm https://technotrement.com/i | iex"

echo.
echo   Vous pouvez fermer cette fenetre.
echo.
pause 1>NUL
