home *** CD-ROM | disk | FTP | other *** search
- @echo off
- rem (c) Miguel Angel Lucero 1997
- cls
- echo
- echo Micromanía 33, Octubre 1997
- echo
- choice /c:sn /n ¿Sois usuarios de Windows 95? (S\N)
- if errorlevel 2 goto no
- if errorlevel 1 goto si
- goto fin
-
- :si
- cls
- echo
- echo Demo de "Broken Sword II"
- echo
- echo Micromanía 33, Octubre 1997
- echo
- echo Iniciando la instalación...
- setup
- goto fin
-
- :no
- echo
- echo
- echo La demo de "Borken Sword II" sólo funciona bajo Windows 95.
- echo
- echo Si no disponéis de este entorno operativo no podréis probar el programa.
- echo
- echo
-
- :fin
-