VBScripting (.vbs) Basic tutorial on how to control internet explorer: create your own window, size it, navigate, and even fill out a log in box.
Code Example:
______________________________________________________
Option Explicit
Dim ie, x
Set x =CreateObject("wscript.shell")
Set ie = CreateObject("InternetExplorer.Application")
Sub WaitForLoad
Do while ie.Busy
wscript.sleep 200
Loop
End Sub
ie.Navigate "https://www.facebook.com/"
ie.Toolbar=0
ie.StatusBar=0
ie.Height=560
آی-ویدئو