@echo off
setlocal EnableExtensions
title SPAINLIVE - Recuperar actualizacion

for %%F in (
  "SPAINLIVE WotLK Launcher.exe"
  "SPAINLIVE Launcher.exe"
  "SPAINLIVE Cataclysm Launcher.exe"
  "SPAINLIVE Cata Launcher.exe"
) do (
  if exist "%%~F.new" (
    if exist "%%~F.previous" del /f /q "%%~F.previous"
    if exist "%%~F" move /y "%%~F" "%%~F.previous" >nul
    move /y "%%~F.new" "%%~F" >nul
    start "" "%%~F"
    exit /b 0
  )
)

echo No se encontro una actualizacion .new en esta carpeta.
echo Coloca este archivo junto al launcher SPAINLIVE y ejecutalo de nuevo.
pause
