I just recently started tinkering with vbscript. I like it a lot actually.
Playing with vbscript is as easy as creating a text file on your desktop and changing the extension to .vbs.
You can then run it directly from the desktop!
type this in a text file and rename the extension to .vbs.
Then if you're feeling brave...try something like this:
Fun Stuff!!
Playing with vbscript is as easy as creating a text file on your desktop and changing the extension to .vbs.
You can then run it directly from the desktop!
type this in a text file and rename the extension to .vbs.
msgbox "Hello World!"
Then if you're feeling brave...try something like this:
Set objIE = CreateObject("InternetExplorer.Application") objIE.visible=true objIE.navigate("http:\\www.google.com")
Fun Stuff!!