Created
July 30, 2019 14:38
-
-
Save Peters8090/3615df6c37f39c10247423a15ff8fb2b to your computer and use it in GitHub Desktop.
Vbs script, you can use it to prank your friends that they'll have to format their hard disk.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
result = MsgBox ("Error 73873a. Do you want to format the hard disc?", vbYesNo+vbCritical,"Critical Windows Error") | |
Dim message | |
Select Case result | |
Case vbYes | |
result = MsgBox ("Are you crazy?", vbYesNo+vbCritical,"User") | |
Select Case result | |
Case vbYes | |
message = "Fortunately!" | |
Case vbNo | |
message = "So why you're using computer?" | |
End Select | |
Case vbNo | |
message = "You decided well." | |
End Select | |
MsgBox message, vbInformation,"User" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment