docs
[mirrors/Programs.git] / bash / bsod.sh
1 #!/bin/sh
2 # YABK - Yet Another BSOD Kit
3 # Simple BSOD implementation by Harvie
4 # For more BSoDs check http://ro.wikipedia.org/wiki/Blue_Screen_of_Death/Simulare
5
6 echo -ne "\033[1;37m" #white text
7 echo -ne "\033[44m" #blue bg
8 echo -ne "\033[0;0H" #Start of screen
9 echo -ne "\033[2J" #cls
10
11 echo
12 echo
13 echo
14
15 echo -e " \033[0;34m\033[47mWindows\033[0;1m"
16 echo -ne "\033[1;37m" #white text
17 echo -ne "\033[44m" #blue bg
18 echo -e " A fatal exception OE has occured at 0028:C0011E36 in VXD VMM(01) +\033[44m\033[K"
19 echo " 00010E36. The current application will be terminated.
20
21 * Press any key to terminate the current application
22 * Press CTRL+ALT+DEL again to restart your computer. You will
23 lose any unsaved information in all applications.
24 "
25 echo -e " Press any key to continue _\033[0;0m"
26
27 echo
28 echo
29 echo
30 echo -ne "\033[999B"
31 read
This page took 0.24982 seconds and 4 git commands to generate.