@echo off
setlocal EnableExtensions
title SENTRY Overlay update repair
echo.
echo SENTRY Overlay — clear leftover updater files
echo This only deletes AppData update extract folders. It does not touch Star Citizen.
echo.
taskkill /IM "SENTRY Overlay.exe" /F >nul 2>&1
ping -n 3 127.0.0.1 >nul
set "UPD=%APPDATA%\sentry-overlay\updates"
if exist "%UPD%\extract" rmdir /s /q "%UPD%\extract"
for /d %%D in ("%UPD%\extract*") do rmdir /s /q "%%D"
echo.
echo Leftover extract folders cleared.
echo Reopen SENTRY Overlay and click Install and restart, or unzip the latest download over the app folder.
echo.
pause
