JSI Tip 6725. Another way to open Internet Explorer at a specific URL with the window at a fixed location and size.

Jerold Schulman

May 19, 2003

1 Min Read
ITPro Today logo in a gray background | ITPro Today

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



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.

You May Also Like