If you want to search multiple HDDs at the same time? I could post the batch file I use.IgorT75 wrote:jonib: thanks for links - it helps
Search found 70 matches
- Wed Feb 20, 2008 7:18 pm
- Forum: Support and Troubleshooting
- Topic: Background search
- Replies: 4
- Views: 8611
- Wed Feb 20, 2008 1:41 pm
- Forum: Support and Troubleshooting
- Topic: Background search
- Replies: 4
- Views: 8611
Re: Background search
I need (and I'm not alone) in a background search in Far - it can take a lot of time to find one file using AltF7 on whole disk - and Far is unusable during this search. Is there some plugin for it or some workaround? Hi IgorT75. Sometime ago I asked for a faster way to search in FAR and after that...
- Tue Jan 08, 2008 8:15 pm
- Forum: Support and Troubleshooting
- Topic: Copy with verify
- Replies: 8
- Views: 12654
Well, I'll just copy the data using Copy + AdvComp and hope I won't need to do that again anytime soon. But it would be a nice feature for the future versions of FAR Manager. Have you tried Deep Compare instead of AdvComp I think it is better and it caches the compares so you don't need to compare ...
- Tue Jan 08, 2008 4:24 pm
- Forum: Support and Troubleshooting
- Topic: Copy with verify
- Replies: 8
- Views: 12654
Maybe you could use the Windows Copy command with "/v" option or any other command line copy command that supports verify? It wont be as integrated in FAR but if you use the "F2 menu" it could be almost as good. I'll see what works best for me as I have always done a copy and then used Deep compare ...
- Tue Jan 08, 2008 4:01 am
- Forum: Support and Troubleshooting
- Topic: Copy with verify
- Replies: 8
- Views: 12654
Hi pepak
Plugin CopyVFD seems to do that but it is for diskettes, maybe it works for USB drives too.
jonib
Plugin CopyVFD seems to do that but it is for diskettes, maybe it works for USB drives too.
jonib
- Fri Dec 14, 2007 2:29 am
- Forum: Macro Commands Discussions
- Topic: Macros I use: Extract archive to "directory"
- Replies: 2
- Views: 19439
Update to macro
I have updated the macro to stop if anything other than the archive extract dialog is displayed after the macro presses ShiftF2.
I had a bad .RAR archive and the macro did not check for that.
jonib
ps
Am I the only one using/interested in macros?
I had a bad .RAR archive and the macro did not check for that.
jonib
ps
Am I the only one using/interested in macros?

- Fri Oct 12, 2007 5:54 pm
- Forum: Macro Commands Discussions
- Topic: Macros I use: Auto test selected archives
- Replies: 0
- Views: 11507
Macros I use: Auto test selected archives
Hi all macro lovers :twisted: As there is no activity here which I think is sad, so I though I would post some macros i use. This is a macro I use from the "File associations" menu it uses "Macro:post" For any archive format I use, I have this macro in the "execute command" section: Filemask(example...
- Thu Oct 04, 2007 4:30 pm
- Forum: General Discussions
- Topic: How to search for files faster in FAR manager?
- Replies: 13
- Views: 41379
jonib I don't really know what antivirus is used in our company - I just got this brief message with no more details and the file was not downloaded. An antivirus that a company uses is probably configured to be very restrictive and stops any file that uses "virus" like features such as low level a...
- Thu Oct 04, 2007 2:47 pm
- Forum: General Discussions
- Topic: How to search for files faster in FAR manager?
- Replies: 13
- Views: 41379
Hi nightroman FYI: my antivirus blocked the file ndff.exe, due to "one or two viruses found". What antivirus do you have? and did it say it suspected a virus or that it was a virus? I redownloaded ndff.exe from the link I posted and it is the same as the one I have downloaded a year ago that seems t...
- Tue Oct 02, 2007 5:49 pm
- Forum: General Discussions
- Topic: How to search for files faster in FAR manager?
- Replies: 13
- Views: 41379
These links seem to work for me.HaRT wrote:jonib
Do you have an NDFF distributive you can share?
All download links seem to point to the dead homepage…
Download link: http://ndff.hotbox.ru/bin/0.9.6/dl.en.html
Direct download link: http://ndff.hotbox.ru/bin/0.9.6/ndff.exe
- Mon Oct 01, 2007 4:41 pm
- Forum: Macro Commands Discussions
- Topic: Macros I use: Extract archive to "directory"
- Replies: 2
- Views: 19439
Macros I use: Extract archive to "directory"
Hi all macro lovers :) As there is no activity here which I think is sad, so I though I would post some macros i use. This is a macro I use from the "File associations" menu it uses "Macro:post" For any archive format I use, I have this macro in the "execute command" section: Filemask: *.cue,*.iso,*...
- Mon Oct 01, 2007 12:44 am
- Forum: General Discussions
- Topic: How to search for files faster in FAR manager?
- Replies: 13
- Views: 41379
I agree with pepak - having a good folder hierarchy will do wonders - no amoung of indexing will do that. I also rarely have to use the search feature but even then I always use it on a specific set of folders, never entire hard drives, since I always know where a given file might be. It's always f...
- Sun Sep 23, 2007 3:07 pm
- Forum: General Discussions
- Topic: Redating many RAR archives to latest file inside each RAR
- Replies: 3
- Views: 10026
- Sat Sep 22, 2007 9:38 pm
- Forum: Suggestions and Ideas
- Topic: New macro command $exec
- Replies: 1
- Views: 6291
New macro command $exec
Hi
I would like to suggest a new macro command:
That could be used to run internal or external commands within a macro.
I seem to always want to run some command from the macros I make so with this new command I would be able to do more with macros.
jonib
I would like to suggest a new macro command:
Code: Select all
$exec "command"
I seem to always want to run some command from the macros I make so with this new command I would be able to do more with macros.
jonib
- Sat Sep 22, 2007 6:59 pm
- Forum: General Discussions
- Topic: Redating many RAR archives to latest file inside each RAR
- Replies: 3
- Views: 10026
Re: Redating many RAR archives to latest file inside each RA
Hi DannyR49 Code snippet from my batch file: for %%i in ("*.zip") do C:\Utils\PkZip25.exe "%%i" -silent -zipdate=newest -del nul This seems to do what you want for %%i in ("*.rar") do C:\Utils\rar ch -tl -inul "%%i" -tl Set archive time to latest file -inul Disable all messages And you need this whe...