Search found 13 matches

by Function
Sat Jan 20, 2024 6:30 pm
Forum: Everything 1.5 Alpha
Topic: Retrieve contents of files from Everything Server
Replies: 2
Views: 202

Retrieve contents of files from Everything Server

I have a remote computer running Everything Server that also has Windows Search enabled for file contents. Is there any way to retrieve and pass along the indexed contents on the main machine e.g. with
si:
? I'm looking to avoid using Index file content because that takes up too much memory.
by Function
Sun Jan 14, 2024 4:20 pm
Forum: General
Topic: Exclude Wildcard Folder Names from Indexing
Replies: 6
Views: 14880

Re: Exclude Wildcard Folder Names from Indexing

Thank you so much for the explanation! This is where I found how to use the "Edit wildcard filter" button (it isn't really explained in the FAQ https://www.voidtools.com/support/every ... s/#exclude)
by Function
Thu Oct 20, 2022 3:10 pm
Forum: Everything 1.5 Alpha
Topic: Error connecting to Everything Server
Replies: 1
Views: 524

Re: Error connecting to Everything Server

Upon further examination, when entering the Remote Everything Index on the client machine, including the backslashes of the Server caused the error message (it worked without):

Teams_2022-10-20_11-09-32.png
Teams_2022-10-20_11-09-32.png (7.3 KiB) Viewed 521 times
by Function
Thu Oct 20, 2022 2:56 pm
Forum: Everything 1.5 Alpha
Topic: Error connecting to Everything Server
Replies: 1
Views: 524

Error connecting to Everything Server

This is my first attempt at using the Everything Server and I seem to be running into some issues. On the client machine, when I try to connect, I'm immediately greeted with the following error. Searching for the code did not yield any results. What is the cause?
Teams_2022-10-20_10-52-55.png
Teams_2022-10-20_10-52-55.png (11.68 KiB) Viewed 524 times
by Function
Thu Oct 20, 2022 1:33 pm
Forum: Support
Topic: Find function
Replies: 7
Views: 1573

Re: Find function

Adding it to the keyboard shortcuts seemed to have worked:
Teams_2022-10-20_09-33-03.png
Teams_2022-10-20_09-33-03.png (45.54 KiB) Viewed 1400 times
by Function
Thu Oct 20, 2022 1:28 pm
Forum: Support
Topic: Find function
Replies: 7
Views: 1573

Re: Find function

Is there a way to disable the feature and go back to the original functionality where CTRL+F puts the cursor back in the search box?
by Function
Tue Jun 09, 2009 5:54 pm
Forum: Suggestions
Topic: "copy full name to clipboard" hotkey
Replies: 5
Views: 10905

Re: "copy full name to clipboard" hotkey

Great. Thank you.

Is there anywhere on the website to grab the latest beta / development version?
by Function
Sun Jun 07, 2009 12:10 am
Forum: Suggestions
Topic: Ctrl-W could close window
Replies: 5
Views: 10818

Re: Ctrl-W could close window

I always have trouble with #IfWinActive but yeah, that is a very good and simple way to do that.
by Function
Fri Jun 05, 2009 9:30 pm
Forum: Suggestions
Topic: "copy full name to clipboard" hotkey
Replies: 5
Views: 10905

Re: "copy full name to clipboard" hotkey

I would really appreciate this feature as well. I usually use Alt + C in Locate32 which would be a good start, then implementing a custom hotkey after. Thanks

Is there a WM_COMMAND for the "Copy full path to clipboard" That I can use with autohotkey?
by Function
Fri Jun 05, 2009 9:25 pm
Forum: Suggestions
Topic: Hide when opening a file
Replies: 5
Views: 10434

Re: Hide when opening a file

I agree. Would be useful
by Function
Fri Jun 05, 2009 9:23 pm
Forum: Suggestions
Topic: Search within files?
Replies: 10
Views: 20083

Re: Search within files?

I know that locate32 has a feature to do old-school search within files as an option in one of the tabs (but the files aren't indexed). It would be great if Everything allowed for a something along those lines
by Function
Fri Jun 05, 2009 9:21 pm
Forum: Suggestions
Topic: Ctrl-W could close window
Replies: 5
Views: 10818

Re: Ctrl-W could close window

For now you can do a workaround with AutoHotKey (Which, by the way is an incredibly useful app) You can write a script like this: $^w:: IfWinActive, Everything { Send, !{F4} return } Send, ^w return What this does is makes a global hotkey for Ctrl + W. If the Everything window is active, it closes i...