Make A Blank .TXT File.
Edit It As We Are Gonna Code It In It
We Can Use VBS Script To Make Small Programs
Using Msgbox "*Put Something Here*"
If You Write 'Do' On One Line And Then 'loop' On A Line After That It Will Go Back To 'Do' When It Hits 'loop'
Will Put Whatever You Put Between The Speech Marks Into A Windows Error Box
Input Boxes Are Wrote Like This
If Statements Are Wrote Like This
This Would Make It So That If You Inputed Quandalious As Your Name A Message Box Would Appear Saying "I HATE YOU!"
I Would Write More But Thats About All You Need To Make Something Funny / Cool So There You Go.
Whatever You Put At The Start (In Our Example Its Name) Will Be The Name Of The String That The Person Enters.
So You Could Use The Previous Msgboxes
To Make Something Like This
WShShell Can Be Used To Open Programs By Typing Wshshell.run "*PROGRAM*"
An Example Of This Is
Wshshell.run "Notepad"
Which Opens Notepad..
To Use This You Will Have To Put
At The Top Of Your Code
Set wshshell = wscript.CreateObject("wscript.shell")
Name =Inputbox("Enter Your Name", "Input Required")
Msgbox "Hello " + Name
If Name = "Quandalious" Then
Msgbox "I HATE YOU!"
End If
And Also Just To Mess Around In