Page 1 of 1

Two Tabs in Startup?

Posted: 16 Mar 2015 22:40
by sl23
In the Startup and Exit Options there's an option to select your startup folder, but I wondered if there's any way to always startup two folders in seperate tabs in a single pane?

Re: Two Tabs in Startup?

Posted: 17 Mar 2015 13:11
by bdeshi
Create a shortcut to XYplorer, open it's (the shortcut's) properties, and paste this AFTER the content of the target box. (Use your desired paths in place of C:\ and D:\)

Code: Select all

 /script="::$tab1='C:\';$tab2='D:\' tab('new', $tab1); tab('new', $tab2);"
This will always add two new tabs.

If you want to clear all previous tabs of active pane and start XY with ONLY those two, use this instead

Code: Select all

 /script="::$tab1='C:\';$tab2='D:\' tab('new', $tab1); tab('closeothers'); tab('new', $tab2);"