Random dialog appearing when opening "Everything":

If you are experiencing problems with "Everything", post here for assistance.
Post Reply
void
Developer
Posts: 16678
Joined: Fri Oct 16, 2009 11:31 pm

Re: Random dialog appearing when opening "Everything":

Post by void »

This issue will occur when you launch Everything.exe with a empty parameter.

Please check the shortcut used to start Everything:
  • Right click the shortcut used to start Everything and click Properties.
  • Please make sure the Target is exactly:
    "C:\Program Files\Everything\Everything.exe"
    (including the quotes)
  • Click OK.
Does the issue persists?
therube
Posts: 4955
Joined: Thu Sep 03, 2009 6:48 pm

Re: Random dialog appearing when opening "Everything":

Post by therube »

If you're running a batch file or similar, you could do something like this:

Code: Select all

if     [%1]==[] goto invalid-filelist:
if not exist %1 goto invalid-filelist:

Everything.exe  -filelist  %*
goto end:

:invalid-filelist
Everything.exe

:end
(Set your path to Everything.exe as needed.)
Post Reply