VBScript

Miscellaneous Forums/Win32 Discussion/VBScript

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.

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!!

ah vbscript :) most of the fun work things I do at work involves it.

Once can really do alot with it.