0% found this document useful (0 votes)
61 views1 page

Vbs Codes 2

This document provides instructions for creating a simple Visual Basic Script that displays input and output message boxes. It prompts the user to enter a message, then displays that message in a message box. The script can be saved with a .vbs file extension and run to repeatedly pop up the user-entered message.

Uploaded by

Himura Kenshin
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
61 views1 page

Vbs Codes 2

This document provides instructions for creating a simple Visual Basic Script that displays input and output message boxes. It prompts the user to enter a message, then displays that message in a message box. The script can be saved with a .vbs file extension and run to repeatedly pop up the user-entered message.

Uploaded by

Himura Kenshin
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
You are on page 1/ 1

Open notepad and type the following

msgbox("HackTool VBS - Message box maker")


msg=inputbox("Enter a message...")
msgbox(" ") + msg


msgbox("HackTool VBS - Annoying Message box maker
msg=inputbox("Enter a message...")
DO
msgbox(" ") + msg
save with *.vbs
* Use any filename

You might also like