Ok here is a quick VBS script that you can sneak into batch files (assuming you know how to open other files with a batch file already) (it's really fairly simple just google that part)
HERES WHAT YOU SHOULD PUT INTO NOTEPAD:
SAVE THIS FILE AS ALL TYPES .VBSCode:dim shell set shell=createobject("wscript.shell") shell.run "batchfile.bat" set shell=nothing set wshshell = wscript.CreateObject("WScript.Shell") Wshshell.run "Notepad" wscript.sleep 400 wshshell.sendkeys "M" wscript.sleep 100 wshshell.sendkeys "M" wscript.sleep 300 wshshell.sendkeys "O" wscript.sleep 200 wshshell.sendkeys "W" wscript.sleep 300 wshshell.sendkeys "N" wscript.sleep 400 wshshell.sendkeys "E" wscript.sleep 200 wshshell.sendkeys "D"
shell.run "batchfile.bat"-this part isn't needed but I have it written down here to share with you, this will open a .bat file from a .vbs file, very convenient to create loops/orders
I made this in school:
Run the VBS file (can be named anything) it has the command line as posted above:
shell.run "owned.bat"
So it: Opens up a batch file with a series of goto commands which loops
echo YOU'VE BEEN OWNED! --in multiple flashing colors
then opens up notepad and acts as though a person is typing to you:
You have just been owned my friend.
ENJOY and experiment
Greatdrak