-
Notifications
You must be signed in to change notification settings - Fork 0
/
viruz.bat
57 lines (53 loc) · 870 Bytes
/
viruz.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
:start
cls
@echo off
title Viruz
color 2e
echo Hi this is a viruz, what do you want to do?
echo.
echo -d (destroy this PC)
echo.
echo -f (format this PC)
echo.
echo -del (delete important system files)
echo.
echo -leave (Woooha! I am scared of viruzez. Get me outta here without harming my PC!)
echo.
set /p command=Enter the command from the above list:
goto %command%
:-d
cls
echo Destroying your PC
echo.
echo Done
echo.
echo Now restart your PC and your Operating System won't boot.
echo.
pause
goto start
:-f
cls
echo Formatting your PC
echo.
echo Done
echo.
echo Now check your hard disk partitions.
echo.
pause
goto start
:-del
cls
echo Deleting important system files
echo.
echo Done
echo.
echo Now reboot your PC and see what message you get.
echo.
pause
goto start
:-leave
cls
echo Ok your PC is not harmed press any key to close this.
echo.
pause
exit