• Welcome to Overclockers Forums! Join us to reply in threads, receive reduced ads, and to customize your site experience!

Need a little help opening Browser windows, to a site, in a specific location.

Overclockers is supported by our readers. When you click a link to make a purchase, we may earn a commission. Learn More.

TransformedBG

Member
Joined
Jul 24, 2013
As the title says I am trying to figure out how to open multiple windows in a size about a 470 x 600 window either chrome or edge. (using windows 10) so it would look someithng like this:
like so.jpg

i know i can do something like this but it opesn tabs not quite what i want:
Code:
@echo off
start "google" "www.google.com"
start "facebook" "www.facebook.com"
start "google reader" "www.google.com/reader/view"
start "ebay" "www.ebay.com"
start "addictivetips" "www.addictivetips.com"

but i was thinking maybe i could do something like VBscript (im not too familar with it)

Code:
@echo

rem //invoke HTA shimera for VBScript
mshta "%~f0"

rem //end main runtime
goto :EOF

<script language="VBScript">

Set IE = CreateObject("InternetExplorer.Application")

IE.navigate2 "http://www.google.com"
IE.width = 470
IE.height = 600
IE.visable = true

IE.navigate2 "http://www.google.com"
IE.width = 470
IE.height = 600
IE.visable = true

IE.navigate2 "http://www.google.com"
IE.width = 470
IE.height = 600
IE.visable = true

IE.navigate2 "http://www.google.com"
IE.width = 470
IE.height = 600
IE.visable = true

IE.navigate2 "http://www.google.com"
IE.width = 470
IE.height = 600
IE.visable = true

close()

</script>

any help would be appreciated
 
Back