Showing posts with label vbScript. Show all posts
Showing posts with label vbScript. Show all posts

Sunday, December 25

SIMPLE VBSCRIPT TRICK

Hi friends, Open notepad and copy the following code Save it as filename.vbs Run and see the magic.!!! Set wshshell = wscript.CreateObject("WScript.Shell") Wshshell.run "Notepad" wscript.sleep 400 wshshell.sendkeys "H" wscript.sleep 100 wshshell.sendkeys "i" wscript.sleep 200 wshshell.sendkeys " " wscript.sleep 200 wshshell.sendkeys "I" wscript.sleep 200 wshshell.sendkeys " " wscript.sleep 100 wshshell.sendkeys "a" wscript.sleep 100 wshshell.sendkeys "m" wscript.sleep 200 wshshell.sendkeys " " wscript.sleep 100 wshshell.sendkeys "V" wscript.sleep 100 wshshell.sendkeys "i" wscript.sleep 100 wshshell.sendkeys "p" wscript.sleep 100 wshshell.sendkeys...