Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- :: llenar informacion del programa
- @echo off
- :Menu
- cls
- echo 1) Ir a la web
- echo 2) Abrir algo
- echo 3) Salir
- set /p var=Introduce tu eleccion
- if %var%==1 goto :web
- if %var%==2 goto :aplicacion
- if %var%==3 goto exit
- if %var% GTR 3 msg * Error
- goto :Menu
- :web
- start www.google.com
- goto menu
- :aplicacion
- start ........
- goto menu
- :exit
- exit
Advertisement
Add Comment
Please, Sign In to add comment