Notepad Trick to Create a Message Box Loop
Open Notepad. Right Click > New > Text Document Copy and Paste below code in Notepad. ...
https://www.computersprofessor.com/2016/06/notepad-trick-to-create-message-box-loop.html
Open Notepad.
Right Click > New > Text Document
Copy and Paste below code in Notepad.
msgbox("Hello!")
DO
msgbox("Hello, Again!")
LOOP
NOTE: You can change the Keywords Hello & Hello Again with your messages.
'Hello!' will be shown only once & 'Hello, Again!' will loop until you stop this script.
Save the file as Loop.vbs
Double click on Loop.vbs file to open it. Click Here to know How to Stop this Trick.