@echo off if "%1." == "." goto error if not exist c:\sistema\%1\nul goto noexiste c: cd \ attrib io.sys -s -h -r attrib msdos.sys -s -h -r attrib command.com -s -h -r copy c:\sistema\%1\*.* c:\*.* >nul attrib io.sys +s +h +r attrib msdos.sys +s +h +r echo Recuperacion ejecutada. echo Debe reiniciar la maquina para que surta efecto. goto fin REM ------------------------ :noexiste echo Recuperacion incorrecta de Windows echo. goto fin REM ------------------------ :error echo Falta parametro de destino echo. REM ------------------------ :fin