Search found 14981 matches

by void
Mon May 06, 2024 12:09 pm
Forum: Everything 1.5 Alpha
Topic: Bug in Formula
Replies: 1
Views: 29

Re: Bug in Formula

Thank you for the bug report nikov, Everything doesn't eat the | with columna:= Everything is currently treating this as: columna:=0 | | 1 addcolumn:columna (columna:=0 OR everything OR 1) addcolumn:columna I will trial eating | with columna:= in the next alpha update. For now, please try: columna:=...
by void
Mon May 06, 2024 12:01 pm
Forum: Support
Topic: How to find similar videos? Does properties help?
Replies: 3
Views: 33

Re: How to find similar videos? Does properties help?

Everything probably wont help here.. If you're only after duplicates of one video, you could search for the length + 3 seconds. For example: If the original length is: 5:50 Search for: length:5:53 To find media files that are within 3 seconds: video: addcol:a a:=$length:/30000000 dupe:a-descending T...
by void
Mon May 06, 2024 10:21 am
Forum: General
Topic: Problem with regular expressions for complex search operations in unicode names.
Replies: 13
Views: 118

Re: Problem with regular expressions for complex search operations in unicode names.

There is spaces in your regex pattern.

Please escape spaces with double quotes.

It might be easier to wrap your entire regex pattern with double quotes:

regex:" - (Time|Sweet)( - |\().*\bDjB\b"
by void
Mon May 06, 2024 9:22 am
Forum: General
Topic: Problem with regular expressions for complex search operations in unicode names.
Replies: 13
Views: 118

Re: Problem with regular expressions for complex search operations in unicode names.

That is an expected match. You will need to improve your regex pattern. For example: regex:" - "(Time|Sweet)(" - "|\().*\bDjB\b regex: = enable regular expressions " - " = match space dash space (use double quotes to escape spaces) (Time|Sweet) = match Time or Sweet (&q...
by void
Mon May 06, 2024 9:07 am
Forum: General
Topic: Problem with regular expressions for complex search operations in unicode names.
Replies: 13
Views: 118

Re: Problem with regular expressions for complex search operations in unicode names.

Regular expressions is already enabled under the Search menu.

regex: will not work with Regular expressions enabled under the Search menu.



Please disable Regular expressions from the Search menu and search for:

regex:.*(?:Time|Sweet).*DjB.*
by void
Mon May 06, 2024 9:00 am
Forum: General
Topic: Problem with regular expressions for complex search operations in unicode names.
Replies: 13
Views: 118

Re: Problem with regular expressions for complex search operations in unicode names.

Thank you for the filenames. The search: regex:.*(?:Time|Sweet).*DjB.* finds the following for me: C:\TEST\REGEX\【D独家】Millenium - Time ( DjB Electro Rmx 2023).mp3 The following filename: 谢锋 - 前前左右(DjB Electro Rmx 2024 粤语).mp3 does not contain Time or Sweet, it should not be matched. -Are you expecti...
by void
Mon May 06, 2024 8:20 am
Forum: General
Topic: Problem with regular expressions for complex search operations in unicode names.
Replies: 13
Views: 118

Re: Problem with regular expressions for complex search operations in unicode names.

But my regex doesn't even work in Everything. What do you mean by doesn't work? What is the filename that you expect this to match? I only tested in the text editor What text did this match? What is shown in the status bar on the right? (eg: are you matching case, do you have a filter enabled, is r...
by void
Mon May 06, 2024 12:11 am
Forum: Everything 1.5 Alpha
Topic: Is it possible to retain the same search-session when re-opening the window/program?
Replies: 2
Views: 61

Re: Is it possible to retain the same search-session when re-opening the window/program?

I will have a setting to do this in the next alpha update.

Thank you for the suggestion.
by void
Mon May 06, 2024 12:10 am
Forum: Everything 1.5 Alpha
Topic: Bookmarks in side-panel have inconsistently appliance of colors
Replies: 7
Views: 737

Re: Bookmarks in side-panel have inconsistently appliance of colors

Recently you have received from me my whole settings.
voidtools does not keep any user data.
Could you please resend.

I see the expected colors.
Selection and inactive selection override the mouseover state.
by void
Mon May 06, 2024 12:05 am
Forum: Development, plugins and third party software
Topic: General question about Everything's code
Replies: 4
Views: 10908

Re: General question about Everything's code

@void is your GUI available as a library?
No.

Please try a Virtual Listview if you are working with a lot of values.
by void
Mon May 06, 2024 12:02 am
Forum: Support
Topic: File Preview for unknown extension
Replies: 2
Views: 22

Re: File Preview for unknown extension

Using .foo as an example: From the Start menu, search for: regedit Right click Registry Editor and click Run as administrator In the Registry Editor, navigate to: HKEY_CLASSES_ROOT\.foo (please make this key if it does not exist -Right click -> New -> Key) Create a new String Value (right click on t...
by void
Sun May 05, 2024 11:53 pm
Forum: General
Topic: Problem with regular expressions for complex search operations in unicode names.
Replies: 13
Views: 118

Re: Problem with regular expressions for complex search operations in unicode names.

Could you please provide the filenames that mismatch and the exact regex search.
by void
Sun May 05, 2024 11:43 pm
Forum: Everything 1.5 Alpha
Topic: Possible Bug: Results Missing from Indexed Volume
Replies: 4
Views: 70

Re: Possible Bug: Results Missing from Indexed Volume

Is anything shown at the bottom right of the status bar? Please try the following search to bypass any macros: "i:\" Does this find any results? Debug logs will show the search op codes: Clear your search. In Everything , from the Tools menu, under the Debug submenu, check Start Debug Logg...
by void
Sun May 05, 2024 11:37 pm
Forum: General
Topic: How to copy/save ONLY all the highlighted titles into notepad/text editor?
Replies: 1
Views: 39

Re: How to copy/save ONLY all the highlighted titles into notepad/text editor?

Uncheck Regular Expressions from the Search menu.
Search for:
regex:"(?<= - )[^\(\)]+(?=\()" addcol:regmatch0
Select all your files.
From the File menu, under the Copy Properties submenu, click Copy Regular Expression Match 0
by void
Sun May 05, 2024 7:33 am
Forum: Everything 1.5 Alpha
Topic: Possible Bug: Results Missing from Indexed Volume
Replies: 4
Views: 70

Re: Possible Bug: Results Missing from Indexed Volume

Please make sure no search options are checked under the Search menu (eg: uncheck match case, uncheck match whole words, uncheck regex)

Please make sure the Everything filter is active under the Search menu.
by void
Sat May 04, 2024 11:04 am
Forum: Everything 1.5 Alpha
Topic: Any quick way to copy or export only the listed columns?
Replies: 4
Views: 129

Re: Any quick way to copy or export only the listed columns?

Is it safe to make an efu file without the CRLF at the end? Yes. I will also add the CRLF at the end in the next alpha update. This will be consistent with copying as TSV in Excel. (I tried something similar to "/copy $name:&crlf:" but "/copy" command doesn't support that.) ...
by void
Sat May 04, 2024 7:21 am
Forum: Everything 1.5 Alpha
Topic: Any quick way to copy or export only the listed columns?
Replies: 4
Views: 129

Re: Any quick way to copy or export only the listed columns?

Create a bookmark and set the search to: /copy $name:&tab:$size: Select your results and run this bookmark. Please consider the following bookmark search if you want to copy all results: /select-all /copy $name:&tab:$size: /copy /copy-header /select-all /copy and /copy-header example To copy...
by void
Fri May 03, 2024 9:19 am
Forum: Support
Topic: Selecting rows with Middle Mouse Button
Replies: 5
Views: 92

Re: Selecting rows with Middle Mouse Button

There's no option in Everything to toggle the selection on middle mouse click.

I will consider an option to do this.

Thank you for the suggestion.

The middle mouse button in Everything scrolls the view.
by void
Fri May 03, 2024 8:20 am
Forum: Everything 1.5 Alpha
Topic: Bookmarks in side-panel have inconsistently appliance of colors
Replies: 7
Views: 737

Re: Bookmarks in side-panel have inconsistently appliance of colors

I am seeing the expected colors for selection and inactive selection.

Please send screenshots to help clarify the issue.

What are you settings under Tools -> Options -> Fonts and colors -> Item = Bookmarks Sidebar?
by void
Fri May 03, 2024 3:11 am
Forum: Everything 1.5 Alpha
Topic: Not indexing all folders
Replies: 6
Views: 227

Re: Not indexing all folders

Thank you for the log. The basic log shows Everything has started scanning your folder. No errors are reported. Unfortunately, Everything is not in verbose debug mode. Rescan activity is only reported in verbose debug mode. Could you please resend the verbose debug log: Please wait for any existing ...
by void
Fri May 03, 2024 3:07 am
Forum: Everything 1.5 Alpha
Topic: Problem with visibility of highlighted file names!
Replies: 6
Views: 181

Re: Problem with visibility of highlighted file names!

Set the inactive selected background color under Tools -> Options -> Fonts and Colors -> Item = Result List > Inactive Selected
by void
Fri May 03, 2024 2:16 am
Forum: Everything 1.5 Alpha
Topic: 1373 breaks transfer of .db & reading on another compter
Replies: 9
Views: 189

Re: 1373 breaks transfer of .db & reading on another compter

Thank you for the issue report therube, The database format hasn't changed. I haven't been able to reproduce the issue. 1373 is loading my Everything.db files from 1371. Could you please make sure there's free disk space available and the db file is copying correctly. Could you please check your sea...
by void
Thu May 02, 2024 10:59 pm
Forum: Everything 1.5 Alpha
Topic: Problem with visibility of highlighted file names!
Replies: 6
Views: 181

Re: Problem with visibility of highlighted file names!

If it is not the selection color, it might be the offline color. Everything will render offline files with 50% transparency. To render offline files normally: In Everything 1.5 , from the Tools menu, click Options . Click the Advanced tab on the left. To the right of Show settings containing , searc...
by void
Thu May 02, 2024 9:30 am
Forum: Everything 1.5 Alpha
Topic: Graphic artefacts in Everything.
Replies: 12
Views: 436

Re: Graphic artefacts in Everything.

The total limit is 65536. Per process is 10000. When you exceed these limits you will see graphic artifacts as no more GDI objects can be created. GDI Objects What's the upper limit on GDI objects for one process GDI = Graphics Device Interface Check the GDI object values when you see graphic artifa...
by void
Thu May 02, 2024 9:06 am
Forum: Everything 1.5 Alpha
Topic: Graphic artefacts in Everything.
Replies: 12
Views: 436

Re: Graphic artefacts in Everything.

You are limited to about 10000 GDI objects.

Try sorting by GDI objects to see if a program is using a lot.. (1000+)
by void
Thu May 02, 2024 8:39 am
Forum: Everything 1.5 Alpha
Topic: Graphic artefacts in Everything.
Replies: 12
Views: 436

Re: Graphic artefacts in Everything.

Use the Task Manager to check if any programs are leaking GDI Objects.

Ctrl + Shift + ESC -> Task Manager -> Details -> View -> Select Columns -> GDI Objects
by void
Thu May 02, 2024 8:32 am
Forum: Everything 1.5 Alpha
Topic: Filtermacro parameters
Replies: 2
Views: 99

Re: Filtermacro parameters

I like the idea of $param1: and $param2*:
I will consider these in a future release.



The next alpha update will add support for #param:

#param: will be replaced with the parameter text as is.

For example:

startwith:#param:

=>

startwith:n otepad
by void
Thu May 02, 2024 2:35 am
Forum: Support
Topic: Help please
Replies: 7
Views: 151

Re: Help please

Please make sure Tools -> Options -> Folders -> E: -> Attempt to monitor changes is checked.

Please make sure Tools -> Options -> Folders -> E: -> Fast rescan is unchecked.
by void
Thu May 02, 2024 2:03 am
Forum: Support
Topic: Help please
Replies: 7
Views: 151

Re: Help please

What is your recommendation for the scan time. Daily at 3am. If your PC is not on at 3am, Everything will perform the missed scan as soon as you start Everything or when your PC wakes from sleep. If I click Never scan, I am guessing that anything new won't show up. Everything will detect all change...
by void
Thu May 02, 2024 1:45 am
Forum: Support
Topic: Help please
Replies: 7
Views: 151

Re: Help please

Please make sure Everything is installed correctly and running as a standard user: In Everything , from the Tools menu, click Options . Click the General tab on the left. Check Store settings and data in %APPDATA%\Everything . Uncheck Run as administrator . Check Everything Service . (Please make su...
by void
Wed May 01, 2024 11:21 pm
Forum: Everything 1.5 Alpha
Topic: Not indexing all folders
Replies: 6
Views: 227

Re: Not indexing all folders

Could you please send some debug output: In Everything , from the Tools menu, under the Debug submenu, check Verbose . From the Tools menu, under the Debug submenu, check Start Debug Logging . From the Tools menu, click Options . Click the Folders tab on the left. Select the first \\server\Project_A...
by void
Wed May 01, 2024 11:14 pm
Forum: Everything 1.5 Alpha
Topic: How to set Window Hotkey to WIN+SPACE ?
Replies: 2
Views: 98

Re: How to set Window Hotkey to WIN+SPACE ?

Windows creates a WIN+SPACE hotkey on startup to change the keyboard layout. You will need a third party program to override this behavior. Please try Microsoft PowerToys Under Keyboard Manager, remap WIN+SPACE to Ctrl+F12 and set Ctrl+F12 as your Hotkey in Everything under Tools -> Options -> Keybo...
by void
Wed May 01, 2024 2:57 am
Forum: Everything 1.5 Alpha
Topic: Change of result when using brackets in a bookmark
Replies: 4
Views: 158

Re: Change of result when using brackets in a bookmark

What is your exact bookmark search?

Please try the following bookmark search:

< csf | cerebrospinal >



Please make sure regular expressions is unchecked under the Search menu.
by void
Tue Apr 30, 2024 11:43 pm
Forum: Everything 1.5 Alpha
Topic: Saving sessions on a schedule?
Replies: 3
Views: 121

Re: Saving sessions on a schedule?

When you stop the process (File -> Exit)
by void
Tue Apr 30, 2024 6:12 am
Forum: Suggestions
Topic: Duration/Length
Replies: 7
Views: 243

Re: Duration/Length

My screen shot is pretty old.

This is what it looks like now:





I have updated the Properties page.
by void
Tue Apr 30, 2024 5:11 am
Forum: Everything 1.5 Alpha
Topic: ❓ Content search brings 0 results
Replies: 7
Views: 842

Re: ❓ Content search brings 0 results

Please use the following to ignore case and diacritics:

Code: Select all

Name = Content with Count
Search = content:search:   addcol:A   A-label:="Content Count"   A:=STRINGCOUNT(REMOVEDIACRITICS(LOWER($content:)),REMOVEDIACRITICS(LOWER(search:)))
Macro = cc<search>
by void
Tue Apr 30, 2024 5:02 am
Forum: Everything 1.5 Alpha
Topic: Saving sessions on a schedule?
Replies: 3
Views: 121

Re: Saving sessions on a schedule?

Ideally, you will be able to recover a previous search where the Everything process ended unexpectedly. (eg: power loss) If the session was created on close, these searches would be lost. Everything schedules the session to be saved after each change to your search. This can only occur once every 15...
by void
Mon Apr 29, 2024 11:16 pm
Forum: Support
Topic: Show duplicate files once
Replies: 3
Views: 113

Re: Show duplicate files once

by void
Mon Apr 29, 2024 10:48 am
Forum: Support
Topic: command line options
Replies: 2
Views: 57

Re: command line options

ES "32387 ext:pdf" -export-txt "out.txt"

ES - Command Line Interface
by void
Mon Apr 29, 2024 7:03 am
Forum: Everything 1.5 Alpha
Topic: Open a new tab with explore command line
Replies: 4
Views: 137

Re: Open a new tab with explore command line

-restore-hidden-window
There's no such option yet.



Are you expecting your hidden window to be restored and a new tab created?
by void
Mon Apr 29, 2024 6:43 am
Forum: Everything 1.5 Alpha
Topic: Volume C stopped being indexed
Replies: 74
Views: 94336

Re: Volume C stopped being indexed

You are running Everything in portable mode. The Everything Service will be pulling this setting too. Please exit Everything (File -> Exit) Stop the Everything Service (Ctrl + Shift + ESC -> Task Manager -> Services -> Right click Everything -> Stop Service) Restart Everything. See if Everything is ...
by void
Mon Apr 29, 2024 6:11 am
Forum: Everything 1.5 Alpha
Topic: Volume C stopped being indexed
Replies: 74
Views: 94336

Re: Volume C stopped being indexed

monitor_thread_mode_background comes with a warning. Enabling can severely reduce the update performance of Everything. I will likely remove monitor_thread_mode_background as it causes more issues than it helps. There's only one monitoring thread. I will consider a system and non-system thread. The...
by void
Mon Apr 29, 2024 5:19 am
Forum: Everything 1.5 Alpha
Topic: Sessions
Replies: 16
Views: 901

Re: Sessions

Your Session.json is renamed to Session.backup.json when you start Everything.

The Session.json is only created when your current session is dirty (when you manually change the search)

To create a session.json:
Launch Everything.
Change the search.
Exit Everything.
by void
Mon Apr 29, 2024 2:30 am
Forum: Everything 1.5 Alpha
Topic: Volume C stopped being indexed
Replies: 74
Views: 94336

Re: Volume C stopped being indexed

Ah, I am 99% sure it's from enabling Tools -> Options -> Advanced -> monitor_thread_mode_background

Please set this option to false.

When this option is enabled, Everything will only monitor your drives when they are idle.

Your C: will likely never be idle.
by void
Mon Apr 29, 2024 2:16 am
Forum: Everything 1.5 Alpha
Topic: Volume C stopped being indexed
Replies: 74
Views: 94336

Re: Volume C stopped being indexed

Thank you for the logs.

I see Everything is regathering the free disk size for your root folders every second.

This might prevent Everything from updating.

Could you please try removing Free Disk Size from Tools -> Options -> Properties and see if the issue persists.
by void
Mon Apr 29, 2024 1:44 am
Forum: Support
Topic: How to exclude the subfolders of search relsult (matched by path?
Replies: 8
Views: 209

Re: How to exclude the subfolders of search relsult (matched by path?

The above should work.

Please make sure Regular expressions is unchecked under the Search menu.



Does the following find any results:

parentname:abc
by void
Mon Apr 29, 2024 1:19 am
Forum: Everything 1.5 Alpha
Topic: Open a new tab with explore command line
Replies: 4
Views: 137

Re: Open a new tab with explore command line

After closing your search window and when no windows are visible and you run: Everything.exe -explorer c:\windows -new-tab Are you expecting your hidden window to be restored and a new tab created? Does Everything need a command line option to restore your hidden windows? so you can call: Everything...
by void
Mon Apr 29, 2024 1:03 am
Forum: Everything 1.5 Alpha
Topic: XYplorer Integration
Replies: 10
Views: 264

Re: XYplorer Integration

Please try the following command:

$exec("C:\Program Files $(x86$)\XYplorer\XYplorer.exe" "$parent(%1)")


The quotes need to be on the outside of $parent()
by void
Mon Apr 29, 2024 12:58 am
Forum: Suggestions
Topic: Duration/Length
Replies: 7
Views: 243

Re: Duration/Length

Only basic file information and indexed properties are listed in this context menu.

You will need to click Add columns... and select Length.

-or-

Index Length under Tools -> Options -> Properties.
by void
Mon Apr 29, 2024 12:57 am
Forum: Everything 1.5 Alpha
Topic: Can I avoid killing the Everything Service every time I...?
Replies: 5
Views: 166

Re: Can I avoid killing the Everything Service every time I...?

To stop the Everything Service on exit: Exit Everything (File -> Exit) Open your Everything-1.5a.ini in the same location as your Everything64.exe Change the following line: stop_service_on_exit=0 to: stop_service_on_exit=1 Save changes and restart Everything. Everything will now stop the Everything...