@echo off if "%1." == "." goto error if not exist c:\sistema\%1\nul goto noexiste c: cd \ attrib io.sys -s -h -r copy io.sys c:\sistema\%1\*.* >nul attrib io.sys +s +h +r attrib msdos.sys -s -h -r copy msdos.sys c:\sistema\%1\*.* >nul attrib msdos.sys +s +h +r copy config.sys c:\sistema\%1\*.* >nul copy autoexec.bat c:\sistema\%1\*.* >nul copy command.com c:\sistema\%1\*.* >nul echo Copia ejecutada goto fin REM ------------------------ :noexiste echo Nombre de carpeta incorrecto (debe crearse previamente) echo. goto fin REM ------------------------ :error echo Falta parametro de destino echo. REM ------------------------ :fin