This is a visual basic script file that will pop up an msg which requires
1)Open Notepad
2) Copy the below text and paste on notepad...
Quote:
Dim userInput
userInput = InputBox("Write a message for me to say")
Set Sapi = Wscript.CreateObject("SAPI.SpVoice")
Sapi.speak userInput
3) Be...