-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathWIN2000.bat
More file actions
52 lines (52 loc) · 1.49 KB
/
WIN2000.bat
File metadata and controls
52 lines (52 loc) · 1.49 KB
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
cls
color a
set /p answer=Do you want to remove clock.avi(Teach media file)? (y/n):
if /i "%answer%"=="y" (
cls
del C:\WINNT\clock.avi
echo successfully V
) else (
cls
echo deleting clock.avi has been canceled. X
)
set /p answer0=Do you want to remove help file? (y/n):
if /i "%answer0%"=="y" (
cls
del C:\WINNT\Help\*.*
del C:\WINNT\system32\*.hlp
del C:\*.hlp
del C:\WINNT\Speech\speech.hlp
echo successfully V
) else (
echo deleting help system and help files has been canceled. X
)
set /p answer1=Do you want to remove log files? (y/n):
if /i "%answer1%"=="y" (
cls
del C:\WINNT\*.log
del C:\*.log
del C:\WINNT\setuplog.txt
echo successfully
del C:\WINNT\security\logs\*.log V
) else (
echo deleting help system and help files has been canceled. X
)
set /p answer2=Do you want to delite HyperTerminal(terminal for telnet)? (y/n):
if /i "%answer2%"=="y" (
cls
del "C:\Program Files\Windows NT\hypertrm.exe"
echo successfully V
) else (
echo deleting HyperTerminal has been canceled. X
)
set /p answer3=Do you want to delete console telnet terminal?(telner.exe)? (y/n):
if /i "%answer3%"=="y" (
cls
del C:\WINNT\system32\telnet.exe
echo successfully V
) else (
echo deleting telnet.exe has been canceled. X
)
pause
cls
shutdown /r