You need: text editor
STEP 1: Open your text editor.
STEP 2: Type X = MsgBox("A",3+32,"B") to make a popup. A is the text, and B is the subject. 3+32 is the icon. there are more icons but let's stick to that one. X is the variable, which you can change.
STEP 3: WScript.Sleep 5000 Is just a delay, and it uses milliseconds, not seconds.
STEP 4: Type set speechobject = createobject("sapi.spvoice") to make a talking voice.
STEP 5: speechobject.speak "A" This is how to make the voice speak. A is the message.