Search found 4905 matches

by NotNull
Sun Feb 18, 2024 11:20 am
Forum: General
Topic: Portable - Why not support both x86 and x64 in the same zip package?
Replies: 24
Views: 7496

Re: Portable - Why not support both x86 and x64 in the same zip package?

Hey, If it works .. it works. A bit cleaner: @echo OFF for /f "useback delims=" %%x in (`wmic.exe os get OSArchitecture /value`) do @>nul set %%x if %OSARCHITECTURE%==64-bit start "" Everything64.exe %* if %OSARCHITECTURE%==32-bit start "" Everything.exe %*
by NotNull
Sun Feb 18, 2024 11:12 am
Forum: Everything 1.5 Alpha
Topic: Exclusion of Recycle Bin system folder does not work [SOLVED]
Replies: 13
Views: 645

Re: Exclusion of Recycle Bin system folder does not work [SOLVED]

mvdeckard wrote: Sat Feb 17, 2024 11:22 pm It's as simple as Options -> Indexes -> Exclude -> Add Filter -> $RECYCLE.BIN
As @mvdeckard said: Add it as a filter, not as a folder.
Tested: works.
by NotNull
Sat Feb 17, 2024 9:29 pm
Forum: Everything 1.5 Alpha
Topic: "Right click > Temporarily Omit" is not always visible
Replies: 2
Views: 203

Re: "Right click > Temporarily Omit" is not always visible

Moved to the Everything 1.5 forum In older 1.5 versions the two were linked, but now they should operate independently. Does the following help to always show the Temporary Omit context menu? - Go to Menu => Tools => Options => Adbvanced - Type Omit in the Show settings containing: field - Select c...
by NotNull
Sat Feb 17, 2024 7:18 pm
Forum: General
Topic: Portable - Why not support both x86 and x64 in the same zip package?
Replies: 24
Views: 7496

Re: Portable - Why not support both x86 and x64 in the same zip package?

The following command will get the bit-ness of the OS: for /f "useback delims=" %%x in (`wmic.exe os get OSArchitecture /value`) do @>nul set %%x sets environment vraiable %OSARCHITECTURE% to "64-bit" or "32-bit", which can be used in the script. So the following 2 com...
by NotNull
Sat Feb 17, 2024 6:14 pm
Forum: General
Topic: Portable - Why not support both x86 and x64 in the same zip package?
Replies: 24
Views: 7496

Re: Portable - Why not support both x86 and x64 in the same zip package?

Command-line or script?

Command-line: %x
Script:%%x
by NotNull
Sat Feb 17, 2024 1:58 pm
Forum: Everything 1.5 Alpha
Topic: Formulas
Replies: 37
Views: 35456

Re: Formulas

a general substring extractor What would be needed would be a substring extractor that looks for case sensitive markers, thus for example - SubstrByMark( string , 'GEO ', ',', ',' ) would find the marker GEO then move 4 characters (the len of 'GEO ') then find the marker ',' then move 1 character (...
by NotNull
Fri Feb 16, 2024 10:35 pm
Forum: Suggestions
Topic: Advanced Searcher
Replies: 7
Views: 963

Re: Advanced Searcher

Thanks for the screenshot @meteorquake!
by NotNull
Fri Feb 16, 2024 10:33 pm
Forum: Support
Topic: [help] finding files with duplicate name across folders
Replies: 2
Views: 775

Re: [help] finding files with duplicate name across folders

For a first impression when using Everything 1.4:
(assuming the file extension is .proj)

Code: Select all

exact:??????????.proj    dupe:
? = 1 random character

(untested, btw)
by NotNull
Fri Feb 16, 2024 10:02 pm
Forum: Suggestions
Topic: Advanced Searcher
Replies: 7
Views: 963

Re: Advanced Searcher

Please provide a Thunderbird screenshot (not everyone has Thunderbird installed) Updating the Advanced Search dialog is on the to-do list. As there are too many settings in 1.5 for a simple "list", my idea would be to have categories, like Name, Size, Date, Properties, etc as a collapsable...
by NotNull
Thu Feb 15, 2024 10:14 pm
Forum: Support
Topic: Search string needed
Replies: 3
Views: 772

Re: Search string needed

You're welcome! Enjoy your evening :D
by NotNull
Thu Feb 15, 2024 10:11 pm
Forum: Development, plugins and third party software
Topic: Everything AutoHotKey example
Replies: 1
Views: 779

Everything AutoHotKey example

I was trying to see how far I could get using the SDK in AutoHotKey . Further than I expected, but could not pass a Everything_GetResultSize hurdle: what type of struct is being used here? And how to translate that to AHK? Tried several syntaxes, but obviously all non working. Could not even get an ...
by NotNull
Thu Feb 15, 2024 9:32 pm
Forum: Support
Topic: Exclude offline drive from searching while keeping in database
Replies: 2
Views: 782

Re: Exclude offline drive from searching while keeping in database

As this is static data, using an EFU file list seems the most logical solution to this: In Everything, search for the drive that is no longer online, in this example drive X: Export the results to an EFU File List: Menu => File => Export Save as type: EFU Everything File List (*.efu) Save somewhere ...
by NotNull
Thu Feb 15, 2024 9:13 pm
Forum: General
Topic: Portable - Why not support both x86 and x64 in the same zip package?
Replies: 24
Views: 7496

Re: Portable - Why not support both x86 and x64 in the same zip package?

If you start Everything with start "" Everything64.exe %* instead of Everything64.exe %* , the CMD window will close right away after launching Everything. BTW: Not sure if reading the bit-ness of the processor gets the bit-ness of the operating system (32-bit Windows can be installed on a...
by NotNull
Thu Feb 15, 2024 9:04 pm
Forum: Everything 1.5 Alpha
Topic: search for folders NOT containing specific file
Replies: 1
Views: 157

Re: search for folders NOT containing specific file

Does the following give you the expected results?

Code: Select all

child:*.jpg   !child:*.opf


child:
by NotNull
Thu Feb 15, 2024 9:00 pm
Forum: Support
Topic: Search string needed
Replies: 3
Views: 772

Re: Search string needed

Try one of the following: doppelbett !case:Doppelbett Will find all case-insensitive doppelbett variations, but excludes "Doppelbett" case. So it will also find DoPPeLBeTT, for example case:DoppelBett Will just find DoppelBett. All other variations -- like DoPPeLBeTT and Doppelbett -- will...
by NotNull
Sat Feb 10, 2024 11:21 pm
Forum: Everything 1.5 Alpha
Topic: Go to folder in folder view with command line
Replies: 6
Views: 356

Re: Go to folder in folder view with command line

That is good to know; thanks for testing!

On further inspection: probably an issue on my side; couple of pinned taskbar applications are invisible too due to a missing icon.
by NotNull
Sat Feb 10, 2024 10:56 pm
Forum: Everything 1.5 Alpha
Topic: Call the sidebars with messages?
Replies: 3
Views: 277

Re: Call the sidebars with messages?

First guess:

Everything draws its own menus without using the Windows menu API's (at least in dark mode; not sure about "light" mode).
WinMenuSelectItem will likely expect "normal" menus.

Maybe one of the Command IDs can help here ...
by NotNull
Sat Feb 10, 2024 10:47 pm
Forum: Everything 1.5 Alpha
Topic: Go to folder in folder view with command line
Replies: 6
Views: 356

Re: Go to folder in folder view with command line

vsub wrote: Sat Feb 10, 2024 10:20 pm Not sure what you mean
This is what I see before moving the mouse above the folders sidebar:

2024-02-10 23_46_12-C__Program Files (x86) - Everything (1.5a) 1.5.0.1367a (x64).png
2024-02-10 23_46_12-C__Program Files (x86) - Everything (1.5a) 1.5.0.1367a (x64).png (36.81 KiB) Viewed 343 times
by NotNull
Sat Feb 10, 2024 10:00 pm
Forum: Everything 1.5 Alpha
Topic: Go to folder in folder view with command line
Replies: 6
Views: 356

Re: Go to folder in folder view with command line

everything64.exe -explore "X:\some folder" -explore See also -explore-expand and -explore-sub-folders on that same page for further finetuning. EDIT: There is currently a bit of a glitch when running the command above while an Everything window (without folder sidebar) is already opened: ...
by NotNull
Sat Feb 10, 2024 7:56 pm
Forum: Suggestions
Topic: Suggestion for Translation Templete
Replies: 3
Views: 882

Re: Suggestion for Translation Templete

oogle Translate column is only translate suggestions and will help the translator with this task. Off-topic: That reminds me of Windows XP: when preparing for burning a data CD, the English Windows version indicated nnn MB free. Which got translated in my language (Dutch) to: nnn MB gratis. And tha...
by NotNull
Sat Feb 10, 2024 2:56 pm
Forum: Support
Topic: How find folders whose name is NOT delimited by symbol
Replies: 4
Views: 939

Re: How find folders whose name is NOT delimited by symbol

Code: Select all

folder:   !regex:\p{P}
Basically this will find all folders that do not have any punctuation character in their name.


For mode details, see Menu => Help => Regular Expression Syntax


EDIT: Missed the "folders" part in your question. Adapted the search query accordingly.
by NotNull
Sat Feb 10, 2024 12:53 pm
Forum: Support
Topic: How find folders whose name is NOT delimited by symbol
Replies: 4
Views: 939

Re: How find folders whose name is NOT delimited by symbol

You need to be more specific than the example you provided.
To me european.railway is not NOT delimited by a punctuation symbol as it does not end with a punctuation character.
Furthermore: how should filenames like european.railway.txt be handled?
by NotNull
Fri Feb 09, 2024 9:42 pm
Forum: Support
Topic: Only showing file/folder name matches
Replies: 1
Views: 768

Re: Only showing file/folder name matches

First guess is that you had Match Path enabled before.
(Menu => Search => Match Path )
by NotNull
Fri Feb 09, 2024 9:40 pm
Forum: Suggestions
Topic: Tickable filter dropdown menu
Replies: 2
Views: 826

Re: Tickable filter dropdown menu

Something similar is already possible in Everything 1.5 : From the menu, select View => Filters In the Filters sidebar (on the left), select the first filter by single-clicking it CTRL+click on any of the other filters you want to add Done. In the result list files and folders matching any of the se...
by NotNull
Fri Feb 09, 2024 5:48 pm
Forum: Everything 1.5 Alpha
Topic: How to add empty spaces in the details view for various reasons
Replies: 16
Views: 1225

Re: How to add empty spaces in the details view for various reasons

nikov wrote: Fri Feb 09, 2024 4:08 pm but does not deselect all items when clicking.
This is what I see in an out-of-the box clean Everything instance:
margin_test.gif
margin_test.gif (346.39 KiB) Viewed 1194 times
nikov wrote: Fri Feb 09, 2024 4:08 pm it adds left margin only for the "Name" column. Not for a user specified column
Good point. (Name column is always #1 here; never tested otherwise)
by NotNull
Fri Feb 09, 2024 2:37 pm
Forum: Everything 1.5 Alpha
Topic: How to add empty spaces in the details view for various reasons
Replies: 16
Views: 1225

Re: How to add empty spaces in the details view for various reasons

  • Go to Menu => Tools => Options => Advanced
  • In the Show settings containing: field, type margin
  • Select listview_margin_left
  • Set its value to 15
  • Press the OK button
  • Done (?)
by NotNull
Thu Feb 08, 2024 11:06 pm
Forum: Everything 1.5 Alpha
Topic: dotall: vs multiline: ?
Replies: 2
Views: 246

Re: dotall: vs multiline: ?

All clear now. Didn't connect the dot to "." in dotall: ...
(language barrier)
by NotNull
Thu Feb 08, 2024 10:59 pm
Forum: Bug report
Topic: ESE ignores contents of some folders.
Replies: 4
Views: 880

Re: ESE ignores contents of some folders.

Does it show the foldername itself in the resultlist? Are none of the files in this folder shown or just some of them? First guess: these files are hardlinks. Everything 1.4 sometimes has a hard time keeping track of them. A Force Rebuild should fix that (temporarily). Everything 1.5 does a much bet...
by NotNull
Thu Feb 08, 2024 10:51 pm
Forum: Everything 1.5 Alpha
Topic: Recycle Bin Context Menu Item Positioning
Replies: 24
Views: 2157

Re: Recycle Bin Context Menu Item Positioning

Thank you! This is a nice overview of the options, including another new one (for me): Custom Verbs for Folders. Cascading menus look interesting. too. Yes, i've done this a couple of times. From what I remember, it was hard to get the syntax right at first. Again: Thanks for finding this! And now I...
by NotNull
Thu Feb 08, 2024 9:11 pm
Forum: Support
Topic: context menu not in windows 10
Replies: 6
Views: 898

Re: context menu not in windows 10

At least that explains why there is no context menu entry :) Could you please try the following? In Everything, go to Menu => Tools => Options => General Uncheck Show Search Everything folder context menu item Press the Apply button Accept the User Account Control prompt (apply credentials if asked ...
by NotNull
Thu Feb 08, 2024 9:00 pm
Forum: Everything 1.5 Alpha
Topic: New windows hotkey, 2 short cuts?
Replies: 3
Views: 258

Re: New windows hotkey, 2 short cuts?

No, only one.
(the underlying setting is called new_window_key (not _keys) and adding an extra hotkey manually in the ini file gets removed on restart)
by NotNull
Thu Feb 08, 2024 8:32 pm
Forum: Everything 1.5 Alpha
Topic: Adding more than one shortcut?
Replies: 10
Views: 419

Re: Adding more than one shortcut?

I want to achieve this: with EVERY filter here I can switch between EVERY filter and Everything (filter) by pressing F9, back and forth. How could I change that shortcut and / or add a second shortcut so I can switch to Everything and each other filterand back? I still do not understand. You want p...
by NotNull
Thu Feb 08, 2024 8:24 pm
Forum: Everything 1.5 Alpha
Topic: Recycle Bin Context Menu Item Positioning
Replies: 24
Views: 2157

Re: Recycle Bin Context Menu Item Positioning

AppliesTo Where the <bleep> did you find this :shock: This is awesome! Documentation seems scarce though. BTW, am I the only one sensing a competition b/w void and NotNull here in the forum for the best solution? :D :) ;) :lol: :?: Hahaha, if this was a competition, I would have stopped trying to a...
by NotNull
Thu Feb 08, 2024 8:04 pm
Forum: Everything 1.5 Alpha
Topic: Bug about "getproperty"?
Replies: 8
Views: 575

Re: Bug about "getproperty"?

Yes, I guessed that much. Just wanted to give some background information.
by NotNull
Thu Feb 08, 2024 8:03 pm
Forum: Everything 1.5 Alpha
Topic: Adding more than one shortcut?
Replies: 10
Views: 419

Re: Adding more than one shortcut?

For each single filter, I assume. How could I assign / change a shortcut for ALL of the filters? I don't know what you mean. When in the Organize Filters window (Menu > Search > Organize Filters), select a filter and press the Edit button. Add a keyboard shortcut for this specific filter. When done...
by NotNull
Thu Feb 08, 2024 7:41 pm
Forum: Everything 1.5 Alpha
Topic: Adding more than one shortcut?
Replies: 10
Views: 419

Re: Adding more than one shortcut?

Type
about:keys
in the search bar and press ENTER


Keyboard Shortcuts for a filter are part of the filter configuration.
Pressing the shortcut once will activate that filter; press it again and the default filter ("Everything") will be activated.
by NotNull
Thu Feb 08, 2024 6:53 pm
Forum: Everything 1.5 Alpha
Topic: Advanced Rename
Replies: 50
Views: 18737

Re: Advanced Rename

void wrote: Thu Feb 08, 2024 5:42 am The same keyboard shortcuts will work from the inline rename. (F2)
Wow! One of those features that you didn't know you need. Thanks!!
by NotNull
Thu Feb 08, 2024 6:51 pm
Forum: Everything 1.5 Alpha
Topic: [Feature Request] Auto check export selected
Replies: 5
Views: 610

Re: [Feature Request] Auto check export selected

void wrote: Thu Feb 08, 2024 5:53 am check Export selection only when there is a selection.
That means that if one activated the resultlist (TAB or ENTER from the search bar), one item is selected, making Everything switch to Export selection only mode.

Don't know if that is the expected behaviour.
by NotNull
Thu Feb 08, 2024 6:36 pm
Forum: Everything 1.5 Alpha
Topic: dotall: vs multiline: ?
Replies: 2
Views: 246

dotall: vs multiline: ?

What are the differences between dotall:regex:content:... and multiline:regex:content:

Or formulated different : in what situation should I use the one or the other?
by NotNull
Thu Feb 08, 2024 6:23 pm
Forum: Everything 1.5 Alpha
Topic: Adding more than one shortcut?
Replies: 10
Views: 419

Re: Adding more than one shortcut?

Global" means global for Everything or the entire system? These shortcuts can be active in the Search bar (Use shortcut in = Search Edit) , the result list including sidebars (Use shortcut in = Result List) or both (Use shortcut in = Global). Outside the main Everything window they "loose...
by NotNull
Thu Feb 08, 2024 5:53 pm
Forum: Everything 1.5 Alpha
Topic: Bug about "getproperty"?
Replies: 8
Views: 575

Re: Bug about "getproperty"?

These are not in the Everything database; they are in external CSV files: "Search History.csv" and "Run History.csv"

Search- and Run History are even optional (Menu:Tools > Options > History )
by NotNull
Thu Feb 08, 2024 5:44 pm
Forum: Everything 1.5 Alpha
Topic: [Suggestion] Do not show Close button on tabs
Replies: 11
Views: 1389

Re: [Suggestion] Do not show Close button on tabs

Thank you for implementing!
Looks good ...
by NotNull
Thu Feb 08, 2024 5:31 pm
Forum: Everything 1.5 Alpha
Topic: [help] search for files with digits only no letters in the name
Replies: 1
Views: 220

Re: [help] search for files with digits only no letters in the name

Simple (all characters allowed minus a-z ): ext:mp3 regex:stem:^[^a-z]*$ More accurate (only digits, dashes and underscore allowed): ext:mp3 regex:stem:^[0-9\-_]*$ Even more accurate (only digits, dashes and underscore allowed and contains at least one digit): ext:mp3 regex:[0-9] regex:stem:^[0-9\-_...
by NotNull
Wed Feb 07, 2024 9:19 pm
Forum: Support
Topic: context menu not in windows 10
Replies: 6
Views: 898

Re: context menu not in windows 10

wayup wrote: Wed Feb 07, 2024 5:55 pm all my settings are the same
Including Show Search Everything folder context menu item? ( Menu > tools > Options > General )
by NotNull
Wed Feb 07, 2024 9:15 pm
Forum: Everything 1.5 Alpha
Topic: Compare 2 file lists with each other?
Replies: 58
Views: 3535

Re: Compare 2 file lists with each other?

Will take a look, but not before friday. Probably the unique: function. Will try to figure out how that actually works. Luckily there's a workaround anyway.

If I do not reply this weekend, I forgot about this thread. Please bump it in that case, because this is interesting (and not only for myself)
by NotNull
Wed Feb 07, 2024 10:27 am
Forum: Everything 1.5 Alpha
Topic: Compare 2 file lists with each other?
Replies: 58
Views: 3535

Re: Compare 2 file lists with each other?

NotNull wrote: Tue Feb 06, 2024 9:41 pm Back in the main window:
- Set the filter to Everything
(btw: If both folders are the same, no files will be shown)
by NotNull
Wed Feb 07, 2024 8:32 am
Forum: Everything 1.5 Alpha
Topic: Compare 2 file lists with each other?
Replies: 58
Views: 3535

Re: Compare 2 file lists with each other?

This is a comparison of 2 folders that are in Everything's index.
So if you type "X:\first folder\" in Everything's search bar, a list of files/folders will be shown. Same for "Y:\second folder\"

If both show a list of files/folders, you can use diff: to compare them.
by NotNull
Wed Feb 07, 2024 8:23 am
Forum: Everything 1.5 Alpha
Topic: Unable to search file properties
Replies: 2
Views: 215

Re: Unable to search file properties

If you already see this metadata -- in this example Comment -- in Everything: Right-click the result-list header in the Comment column Select Search for Comment from the contextmenu. The search bar will show the search function to use. (something like comment:text) If you don't see this this metadat...
by NotNull
Tue Feb 06, 2024 11:30 pm
Forum: Everything 1.5 Alpha
Topic: Compare 2 file lists with each other?
Replies: 58
Views: 3535

Re: Compare 2 file lists with each other?

Biff wrote: Tue Feb 06, 2024 11:08 pm hese two folders are not folders from online drives, are they?
They are just placeholder foldernames; replace them with your actual folders, like c:\photos and d:\backup\photos.
by NotNull
Tue Feb 06, 2024 9:41 pm
Forum: Everything 1.5 Alpha
Topic: Compare 2 file lists with each other?
Replies: 58
Views: 3535

Re: Compare 2 file lists with each other?

Sounds like what I wanted. Why didn't you say so right away :D Create the following filter: Name = Difference between 2 folders (or whatever you like to name it) Search = #if:<#stricmp:<#element:<$param:,;,1>,#element:<$param:,;,2>>==0,"!"> file: regex:[regex-escape:[element:$param:,;,1]]...