home *** CD-ROM | disk | FTP | other *** search
- @echo off
- rem (c) Miguel Angel Lucero 1997
- cls
- echo
- echo Micromanía 35, Diciembre 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 "NetStorm" (Windows 95)
- echo
- echo Micromanía 35, Diciembre 1997
- echo
- echo Inciando la demo...
- netstorm
- goto fin
-
- :no
- echo
- echo
- echo La demo de "NetStorm" sólo funciona bajo Windows 95.
- echo
- echo Si no disponéis de este entorno operativo, no podréis probar el programa.
- goto fin
-
- :fin
-
-