1
Find And Run Robot / Re: FARR gets stuck/hung - please help
« on: October 10, 2023, 09:21 AM »
Hi @mouser, wondering if you might look at this issue, please.
This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.
Btw, can you use FARR to do: shutdown, reboot, hibernate?FARR doesn't have those commands built in. But you can create aliases for them.-wizk11 (September 30, 2023, 04:34 PM)
See help section "Special/Virtual Launch Strings/Commands".
With "shellexec" you can do stuff in cmd. For example the shutdown command that is built into Windows.
Alternatively you can make an alias that launches a script file that does some action in a programming language of your choice. AutoHotkey, Python or whatever.-Nod5 (September 30, 2023, 05:24 PM)
So you mean just list all the paths here?Please attach screenshots to your posts, as those externally hosted files will disappear in weeks/months after posting, so sometime in the (near) future we won't be able to see them anymore
https://i.imgur.com/VoH3bTa.jpg-wizk11 (September 30, 2023, 03:04 PM)-Ath (September 30, 2023, 04:07 PM)
Yes, in the big Results editbox. One path per line. Check the FARR helpfile for details on the syntax for alias lines. You can customize the visible text and add custom icons for example.
regex alias: when your typed search string matches the regex FARR shows *only* the results determined by that alias.
regular string alias: when your typed search matches the regular string FARR *includes* the results from that alias in the results but also includes any other files and folders that matches the typed string.
edit: sorry, that difference is dependent on the checkboxes under "what to do on exact alias match" in the "search behaviour" section of the options. I've had "stop search on regex alias match" there checked for so long that I had forgotten it was an option that could be changed
Both are useful, depends on what you want to do. If you want to memorize a short phrase like "cc" to open Chrome then a regex alias is best because it will instantly show that single result, or in my example with the command dolaunch above, not even show it but directly open Chrome. Instead of showing Chrome.exe but also other files or folders that contains "cc", for example "abcc.txt".
Using RegEx alias with short phrases like that is a bit similar to setting up hotkeys in Windows itself or other tools to launch programs, for example creating a hotkey Alt+Windows+5 to launch Chrome. But an advantage with FARR short regex aliases is that they can be mnemonic, like "cc" where c is the first letter in Chrome. I at least find it harder to remember complex hotkeys than such short alias strings.Btw, do you know how FARR is able to match reverse typed search term 'Apps Listed' to folder "Listed Good Apps"?I don't know how mouser implemented it in the code under the hood, but if you type apps listed FARR searches for files/folders that contain both apps and listed anywhere in the filename. The name for that is non-contiguous word search.-wizk11 (September 30, 2023, 03:04 PM)
apologies for the many edits here, FARR has a lot of options to explore, as you see-Nod5 (September 30, 2023, 03:45 PM)
Another example. Create regex alias ^(myproj|mypro|mypr|myp)$ and manually add a list of files and folders that belong to some project that you access often. then start typing "myp" to show those, and only those, results. The more frequently you access some program or set of resources the more convenient it will be to set up short regex aliases for them.-Nod5 (September 30, 2023, 01:27 PM)
I don't know the cause of the issue you're experiencing. Let's see if @mouser sees this thread.
As a temporary workaround, if you don't have a lot of such network folder shortcuts, you could try to restrict them from search results. You could also temporarily set up a FARR alias to list and launch the targets of such shortcuts.-Nod5 (September 30, 2023, 01:31 PM)
In regular search you can add +\ to the search string to only show results that are folders.
But maybe you asked about options inside the "search directory" window? I don't think there's an option to show only folders there.
But you can create a search alias that both uses +\ to only show results that are folders and uses a modifier keyword (created in a "search directory") to narrow the results further, for example only show results under the parent folder C:\abc-Nod5 (September 30, 2023, 04:25 AM)