Skip to content

Instantly share code, notes, and snippets.

@Peters8090
Created July 30, 2019 14:38
Show Gist options
  • Save Peters8090/3615df6c37f39c10247423a15ff8fb2b to your computer and use it in GitHub Desktop.
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.
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