-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathNo Temp.bat
76 lines (75 loc) · 2.62 KB
/
No Temp.bat
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
@echo off
mode con:cols=1000 lines=600
chcp 65001
title NoTemp
:idiomai
cls
echo Hola, seleccione tu Idioma de las siguientes opciones (ponga números).
echo Hello, select your language of the next options (put numbers).
echo 1. Español
echo 2. English
Set/p idioma= Idioma/Language:
if %idioma%==1 (goto inicios) else If %idioma%==español (goto inicios) else If %idioma%==Español (goto inicios) else if %idioma%==2 (goto inicion) else If %idioma%==english (goto inicion) else If %idioma%==English (goto inicion) else (goto errori)
:errori
cls
echo Respuesta incorrecta, presiona cualquier tecla para continuar
echo Incorrect Answer, press any key to continue
pause >nul
goto idiomai
:inicios
cls
echo -------------------------------------------------------------------------------------------------------
echo Hola, bienvenido/a, ¿desea eliminar los archivos temporales de su sistema y hacer que sea más rápido?
echo Escriba S para sí y N para no.
echo Aplicación creada y programada por Slaim36 www.slaim36.com (Página en español).
echo -------------------------------------------------------------------------------------------------------
Set/p respuestauno= Respuesta:
If %respuestauno%==S (goto ss) else If %respuestauno%==s (goto ss) else If %respuestauno%==N (goto ns) else If %respuestauno%==n (goto ns) else goto nns
:ss
echo Un momento.
echo Un momento..
echo Un momento...
pause
del /s/q %temp%
cls
echo Archivos Temporales eliminados. Presione cualquier tecla para salir.
pause >nul
exit
:ns
cls
echo Si no quiere, no le obligamos. Presione cualquier tecla para salir.
pause >nul
exit
:nns
echo Error, respuesta incorrecta, tiene que responder S o N.
pause
goto inicios
:Inicion
cls
echo -------------------------------------------------------------------------------------------------------
echo Hello, welcome, ¿do you want to delete temporal files and do your system more fast?
echo Write Y for yes or N for no.
echo Application created and programed by Slaim36 www.slaim36.com (Page in Spanish).
echo -------------------------------------------------------------------------------------------------------
Set/p respuestauno= Answer:
If %respuestauno%==Y (goto sn) else If %respuestauno%==y (goto sn) else If %respuestauno%==N (goto nn) else If %respuestauno%==n (goto nn) else goto nnn
:sn
echo A moment.
echo A moment..
echo A moment...
pause
del /s/q %temp%
cls
echo Temporal files deleted. Press any key to leave.
pause >nul
exit
:nn
cls
echo If you don't want, we don't obligate you. Press any key to leave.
pause >nul
exit
:nnn
echo Error, incorrect answer, you need to answer Y or N.
echo Press any key to continue
pause >nul
goto Inicion