docs
[mirrors/Programs.git] / bash / bsod.sh
CommitLineData
21c4e167
H
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
6echo -ne "\033[1;37m" #white text
7echo -ne "\033[44m" #blue bg
8echo -ne "\033[0;0H" #Start of screen
9echo -ne "\033[2J" #cls
10
11echo
12echo
13echo
14
15echo -e " \033[0;34m\033[47mWindows\033[0;1m"
16echo -ne "\033[1;37m" #white text
17echo -ne "\033[44m" #blue bg
18echo -e " A fatal exception OE has occured at 0028:C0011E36 in VXD VMM(01) +\033[44m\033[K"
19echo " 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"
25echo -e " Press any key to continue _\033[0;0m"
26
27echo
28echo
29echo
30echo -ne "\033[999B"
31read
This page took 0.178985 seconds and 4 git commands to generate.