VBSCRIPT             --Sandeep

VBSCRIPT STANDS FOR MICROSOFT VISUAL BASIC SCRIPTING LANGUAGE



Today we start with our very first script


option explicit
Dim notepad,s
set s=createobject ("wscript.shell")
s.sendkeys "^" + "{ESC}"
wscript.sleep 200
s.sendkeys "notepad"
wscript.sleep 1000
s.sendkeys "{ENTER}"
wscript.sleep 1300
s.sendkeys "abc" + "{ENTER}"
s.sendkeys "^" + "S"
wscript.sleep 1400
s.sendkeys "samples"
wscript.sleep 1600
s.sendkeys "{ENTER}"
wscritp.sleep 2000




In the above script there are many new keywords are there, But later i will explain them to you
for now enjoy the BLOG