Sign up for the ITPro Today newsletter
Stay on top of the IT universe with commentary, news analysis, how-to's, and tips delivered to your inbox daily.
May 19, 2003
I used JavaScript to get IE to open at a specific URL with a window at a fixed location and size.
You can use a Visual Basic Script. Copy/ Paste the following to a ie.vbs file:
set ie = createobject("internetexplorer.application")ie.top = 5ie.left = 80ie.width = 1194ie.height = 955ie.navigate "www.jsiinc.com"ie.visible = true
To run it, set a Minimized shortcut to:
cscript ie.vbs
You May Also Like