Launch two browser windows side by side

Is there a way to launch two browser windows side by side (vertically tiled) with a script package?

If not, how can I do this using VBS?

+3


source to share


3 answers


I changed the VBS script above to Hackoo to do what the OP wants ...

The comments in the script explain exactly what it will do.
If the two windows are not in the correct position, increase the sleep time and try again.
If you want horizontal splitting use 'objShell.TileHorizontally'.



Option Explicit
'''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''
''' Launches two Explorer windows side-by-side filling the screen dimensions.
''' Minimizes all current open windows before launch; if this is not done,
''' the current open windows will also be resized along with our two windows.
'''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''

Dim Calc,AppData,objShell
Calc = "%windir%\system32\calc.exe"
AppData = "%AppData%"
Set objShell = CreateObject("shell.application")

objShell.MinimizeAll
Call Explore(Calc)
WScript.Sleep 800
Call Explore(AppData)
WScript.Sleep 800
objShell.TileVertically
Set objShell = nothing

'*****************************************************
Function Explore(Path)
    Dim ws
    set ws = CreateObject("wscript.shell")
    Explore = ws.run("Explorer /n,/select,"& Path &"")
End Function
'*****************************************************

      

+2


source


It might be in the same category as your question. :) How does a batch file run a program and set the position and size of the window?



Unfortunately, it looks like this is not possible without some external third-part software in batch. Probably easier in VBS - if so, then the answer should be in the link.

0


source


Try this code:

Option Explicit
Dim Calc,AppData
Calc = "%windir%\system32\calc.exe"
AppData = "%AppData%"
Call Explore(Calc)
Call Explore(AppData)
'*****************************************************
Function Explore(Path)
    Dim ws
    set ws = CreateObject("wscript.shell")
    Explore = ws.run("Explorer /n,/select,"& Path &"")
End Function
'*****************************************************

      

0


source







All Articles