Skip to content

Commit 33eb9fb

Browse files
Initial commit
1 parent 91afa3b commit 33eb9fb

File tree

1 file changed

+27
-1
lines changed

1 file changed

+27
-1
lines changed

win-uninstall.bat

Lines changed: 27 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1,27 @@
1-
del C:\users\%users%\Desktop\calc
1+
@echo off
2+
@title=Python-Calcutator Uninstall
3+
:m
4+
cls
5+
echo Python-Calcutator Uninstall
6+
echo Which Version Do You Want To Uninstall?
7+
echo 1.Python-Calcutator-TR
8+
echo 2.Python-Calcutator-EN
9+
echo Choose:
10+
set input=nothing
11+
set/p input=Choose:
12+
if %input%==1 goto one
13+
if %input%==2 goto two
14+
goto m
15+
:one
16+
echo Python-Calcutator-TR Uninstall.
17+
pause
18+
del C:\Users\%users%\calc
19+
pause
20+
exit
21+
goto m
22+
:two
23+
echo Python-Calcutator-EN Uninstall.
24+
pause
25+
del C:\Users\%users%\calc
26+
pause
27+
exit

0 commit comments

Comments
 (0)