Start Folder sidebar at certain position

Discussion related to "Everything" 1.5 Alpha.
Post Reply
meteorquake
Posts: 495
Joined: Thu Dec 15, 2016 9:44 pm

Start Folder sidebar at certain position

Post by meteorquake »

I couldn't see a command-line option to start the folder sidebar positioned at a certain folder. It would be very useful to have!
Cheers! David
void
Developer
Posts: 16672
Joined: Fri Oct 16, 2009 11:31 pm

Re: Start Folder sidebar at certain position

Post by void »

Please try the -explore command line option.

For example:

Everything.exe -explore c:\windows
meteorquake
Posts: 495
Joined: Thu Dec 15, 2016 9:44 pm

Re: Start Folder sidebar at certain position

Post by meteorquake »

Great, that works! I even vaguely recall seeing that - I'll add it to my explorer right-clicks.
It may be the Tools - Options - Context Menu could also provide a few pre-made Explorer context options such as this, as there's plenty of space there and the title "Context Menu" is suitably ambiguous as to which application.
Cheers! David
void
Developer
Posts: 16672
Joined: Fri Oct 16, 2009 11:31 pm

Re: Start Folder sidebar at certain position

Post by void »

Full context menu customization is on my TODO list.
void
Developer
Posts: 16672
Joined: Fri Oct 16, 2009 11:31 pm

Re: Start Folder sidebar at certain position

Post by void »

To create an "Explore in Everything" context menu item:
  • From the Start menu, search for: regedit
  • Right click Registry Editor and click Run as administrator.
  • Navigate to:

    Code: Select all

    HKEY_CLASSES_ROOT\Folder\shell
  • Create a new key called:

    Code: Select all

    Explore in Everything...
  • Navigate to:

    Code: Select all

    HKEY_CLASSES_ROOT\Folder\shell\Explore in Everything...
  • Create a new key called:

    Code: Select all

    command
  • Navigate to:

    Code: Select all

    HKEY_CLASSES_ROOT\Folder\shell\Explore in Everything...\command
  • Set the (Default) value to:

    Code: Select all

    "C:\Program Files\Everything\Everything64.exe" -explore "%1"
    where C:\Program Files\Everything\Everything64.exe is the location of your Everything.exe.
Post Reply