-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCorrupted Machine.bat
31 lines (31 loc) · 1.18 KB
/
Corrupted Machine.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
@echo off
cls
color c7
SET /A num=50 + %random% %%51
echo ===================================================
echo WARNING - SYSTEM CORRUPTION
echo ===================================================
echo This system (%ver%) &echo has been corrupted at %num% percent. If you want to, you shall give this prompt a code.
echo ====================================================================================
echo Do you want to give the prompt a code? [Y/N] &set /p consent=
if /i "%consent%" == "y" goto Codetyping
if /i "%consent%" == "n" goto bsod
: bsod
.\bsod.exe
exit
: Codetyping
.\Codetyper.bat
goto Again
: Again
@echo off
cls
color 4
SET /A num=50 + %random% %%51
echo ===================================================
echo WARNING - SYSTEM CORRUPTION
echo ===================================================
echo This system (%ver%) &echo has been corrupted at %num% percent. If you want to, you shall give this prompt a code.
echo ====================================================================================
echo Do you want to give the prompt a code? [Y/N] &set /p consent=
if /i "%consent%" == "y" goto Codetyping
if /i "%consent%" == "n" goto bsod