topbanner_forum
  *

avatar image

Welcome, Guest. Please login or register.
Did you miss your activation email?

Login with username, password and session length
  • Thursday April 18, 2024, 11:14 am
  • Proudly celebrating 15+ years online.
  • Donate now to become a lifetime supporting member of the site and get a non-expiring license key for all of our programs.
  • donate

Show Posts

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.


Messages - wjamoe [ switch to compact view ]

Pages: prev1 [2] 3 4next
26
Found Deals and Discounts / Re: EaseUS EverySync 3.0
« on: September 11, 2016, 12:49 PM »
MilesAhead,

thanks for the tip

the link for the (zip file) with the serial number appears in small font on the order page (no email was sent ;-)

just below the order item on the webpage where you entered your email address

wjamoe

27
it looks like %SPECIALSYS_DOCS% is mapped to

HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\ComDlg32\OpenSaveMRU\*

HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\ComDlg32\OpenSaveMRU\exe

HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\ComDlg32\OpenSaveMRU\pdf

etc for other extensions

28
BIG speed optimization for the extension alias,
when using this you can use two spaces between filename and the command (instead of spaces and a dot)

replace

regex   ^((.+)\\(.+)\.(\S+))\s+\.(.*)$

by

regex ^((.+)\\(.+)\.(\S\S+))\s\s(\S*)

which reads as

anly line containing a '\'  (=this is part of the path of the filename)
some characters
a '.'  (=start of the file name extenstion)
at least two characters but not spaces (=file name extension, this helps when browsing for files)
 
followed by two spaces (=the separator between the file name and the command)

and a number of non-space characters (the command to look for in the extension alias)


For the filemanager shell extension, replace the dot by  a space):
so replace

HKEY_CLASSES_ROOT\*\shell\FARR file\command]   @="\"c:\\filemngr\\farr portable\\FindAndRunRobot.exe\" -search \"%1 .\""

by
HKEY_CLASSES_ROOT\*\shell\FARR file\command]   @="\"c:\\filemngr\\farr portable\\FindAndRunRobot.exe\" -search \"%1  \""


BTW the second alias for items without extensions is optional.

Njoy
Wjamoe

29
If you want a win8, win8.1, win10 tablet tile to start and show FARR as an alternative to Break or Ctrl-Space.

Edit the Target field of the properties of the lnk file for the tile
C:\Users\%USERNAME%\AppData\Roaming\Microsoft\Windows\Start Menu\FindAndRunRobot.lnk
add the parameter    -show
it should look something like:
"\program path\FindAndRunRobot.exe" -show

Without the added parameter, you would get the message
Warning: Only one copy of Find and Run Robot (FARR) can be run at a time. Second instance is exiting now.

30
You have to wait many seconds (seems to hang) when one of the files in the launch history is situated on an external USB drive which went into power save/sleep mode. (farr  v2.226.01 26 June 2015). If you try a second time it is lot faster, because the drive is active again ;-)

31
paarkhi,

did you look at  http://www.dropitproject.com/ freeware including au3 source
from their site:
----
When you need to organize files, DropIt can eliminate much of the drudgery of searching and manually opening folders and moving files around.

Drop a group of different files and folders on the floating DropIt image and it sorts them to defined destination folders, compresses or extracts them, opens them with associated programs or performs other defined actions.

You can define how to filter your files (by name, directory, size, date, properties, content, regular expressions) and associate one of the 20 available actions to perform (Move, Copy, Compress, Extract, Rename, Delete, Split, Join, Encrypt, Decrypt, Open With, Upload, Send by Mail, Create Gallery, Create List, Create Playlist, Create Shortcut, Copy to Clipboard, Change Properties and Ignore). You can also organize your associations in profiles and automatically scan monitored folders at a defined time interval to process included files.
---
instead of the big icon, you can also integrate with SendTo in context menu (see Options).

(please note there are some interworking problems with programs like gridmove and smallwindows)



32
run simple commands on the file in search window

just add
[Enter] run in DOS window $$5 $$4-file | %systemdir%\cmd.exe /k $$5 "$$1"

usage
c:\path somewhere on your disk\names.txt .sort
will start msdos window which shows the sorted lines from names.txt

c:\path somewhere on your disk\names.txt .notepad
to open file names.txt with notepad

other possible commands :
type, del, remove, cd, c:\path\par2, c:\path\unrar x, ...

33
Sometimes when editing the search field this alias is triggered (too eraly) when the file name extension contains only one character.

By changing the regex

from
^((.+)\\(.+)\.(S+))\s+\.(.*)$

into

^((.+)\\(.+)\.(\S\S+))\s+\.(.*)$

the extension alias is only triggered when there are at least two characters in the file name extension (after the dot).

34
File to Folder (by skwire) alternative using above FARR extension alias:

[Enter] mv $$4-file to subFolder $$3 | %systemdir%\cmd.exe /c mkdir "$$2\$$3";;; %systemdir%\cmd.exe /c move /-Y "$$2\$$3.$$4" "$$2\$$3";;; %systemdir%\cmd.exe /k dir "$$2\$$3"

make subfolder with name of file without filename extension
move file to file (ask for confirmation if you try to overwrite an existing  file)
shows contents of the subfolder without the extension in separate DOS window

or

[Enter] mv $$4-file to subFolder $$3 | %systemdir%\cmd.exe /c mkdir "$$2\$$3";;; %systemdir%\cmd.exe /c move /-Y "$$2\$$3.$$4" "$$2\$$3"

make subfolder with name of file without filename extension
move file to file (ask for confirmation if you try to overwrite an existing  file)


35
Post New Requests Here / Re: Power Cord Falling Out
« on: January 28, 2016, 01:17 PM »
Another variation at  1hour software by skrommel using ahk.

https://www.donation...ndex.html#BatteryRun

Run commands (wav) when the power chord is connected or disconnected

36
A colleague told me, there already is an Internet of Women...            Maybe she also uses a good ad blocker?        

37
Find And Run Robot / Re: alias with parameter
« on: January 18, 2016, 02:41 PM »
it looks like either

the farr option ' stop at first exact match' is enabled in options search behaviour.

or you enabled 'always launch first result on hitting enter' within keyboard interface

I won't be able to reproduce all the possible combinations of farr settings, so here you are on your own.

if it always takes the first line, you could try moving my last line to the top line

(are you sure you disabled all other aliases matching 'proxy' ?)

38
Find And Run Robot / Re: alias with parameter
« on: January 15, 2016, 11:24 PM »
This should work:

alias trigger: proxy
Regular Expression pattern: ^proxy\s+(.+)$

Script:
proxy cntlm | c:\bin\proxy-set.bat "cntlm"
proxy ccproxy | c:\bin\proxy-set.bat "ccproxy"
proxy off | c:\bin\proxy-set.bat "off"
proxy $$1 | c:\bin\proxy-set.bat "$$1"

Each line includes a fixed parameter on the right side.

I modified the regex, the parameter is now optional.

The last line is optional, it will allow you to specify a different proxy parameter to the bat file.
For readability I added 'proxy' at the start of each line, this is not mandatory.
but for the last line it is kind of essential, it would otherwise only show your typed parameter in the search result list (depending on your farr display options/report columns).

39
Find And Run Robot / Re: good addition to find and run robot or not?
« on: January 01, 2016, 01:54 PM »
The layout may be a little  different ;) , but I solved this problem in NANY 2016.

Please check here: https://www.donation....msg394054#msg394054

You can open any file in different programs using one user defined alias.

It can show a list of multiple programs depending on the extension of any file.

The list of programs appears when you append <space><dot> to the file name in the search field.


you can also define a program like notepad to open any file.

40
N.A.N.Y. 2014 / Re: NANY 2014 Release - epCheck
« on: December 29, 2015, 04:36 PM »
Thanks again for this wonderful program :Thmbsup:. I use it every day!

I love the added month view. I checked the tv programs for next month and  noticed that some of the programs were moved to another day of the week, and confidently started modifying my (farr) tv script.
Monthly view, in all months the 1st of the month is assumed on a Sunday. (in 1.1.5 build 166 beta).

Should special editions be shown in the monthly view e.g. Dr who 2005  25-12 xmas edition is not shown in the monthly view even after toggle special episode on and refresh, it is shown in the weekly view, and it is in the series data noted as special episode. I this working as designed?

I don't know if you want these bug reports on beta versions, if not, please ignore this post.

41
new/update:
file_name .string   
show lines within txt files (current folder and down) containing string using findstr in msdos box   
[Enter] find string '$$5' in *.txt /s | %systemdir%\cmd.exe /k findstr /S /I /P $$2 "$$2*.txt"

file_name.py .string   
show lines within files with same extension e.g. .py (current folder and down) containing string using findstr in msdos box   
[Enter] find string '$$5' in *.$$3 /s | %systemdir%\cmd.exe /k findstr /S /I /P "$$5" "$$2*.$$3"

Find lines in files containing a strings, similar to unix grep. Shows the  file names and lines containing the specified string using dos findstr command in an msdos box

Usage to  find search_string in files in current folder (path) and down (subfolders)

farr search fieldpath\filename.ext .search_string
or
farr search fieldpath .search_string

It will open an msdox box in a separate windows with the filenames and lines containing search_string.

BTW : It would be nice to get the result in the FARR results. I tried
[Enter] findstr '$$2' in *.txt | showmemo findstr '$$2' in '$$1*.txt' /s ;;; AppCapAppendMemoNS %systemdir%\findstr.exe /S /I /P $$2 "$$1*.txt"
but in popup it says bad invocation2 of quickdocklauncher.exe and gives an error '-0'

Does anyone know how to solve this problem?

42
Find And Run Robot / Re: some aliases I'd like to share
« on: December 28, 2015, 04:16 AM »
some  functional and textual updates, see first post

43
mouser suggested to me to include the list of my recent FARR aliases for NANY2016

show a user defined list of actions/programs for a file with or without extension in the search field of FARR
farr search: filename.ext .action
farr search: string .action
link: https://www.donation....msg394054#msg394054

Start FARR with filename of selected file using right click/ context menu from within any file explorer like total commander, xyplorer, explorer, etc..
link: https://www.donation....msg392759#msg392759
   
Start FARR with the foldername of a selected folder using right click / context menu from within any file explorer like total commander, xyplorer, verkenner, etc..
https://www.donation....msg392740#msg392740

short aliases for accessing extended farr functionalities (updated Dec 2015)

show short list of farr internal commands : ? optional-search-string

search the  launch history: /l optional-search-string

search the  alias names: /a optional-search-string

search the plugins: /p optional-search-string

searching the search history: /s optional-search-string

open farr options: /o

hibernate windows: zzzz
link: https://www.donation....msg384365#msg384365

44
1) you should try v1.03 it supports ctl+win+alt+<digit> (for download links see a few posts back)

2) maybe

45
Update: 2 extended aliases!

Alias to add a farr "context menu" to a file in the farr search field
Alias to add a farr "context menu" to any string in the farr search field not containing a file extension

Each context menu is shown when you append a <space> and a dot and an optional menu match string.

example
farr search fieldc:\user\wim\my documents\test.txt .shows the complete list of menu lines matching extension txt to handle the file test.txt

example:
farr search fieldc:\user\wim\my documents\test.txt .noteshows a list of menu lines matching string 'note' to handle the file test.txt

descriptionalias for file names with extension like .doc, .txt, .ahk
usagefull path and file name including extension<space>.<result menu filter>
please notefull path and file name may contain spaces and dots,
easiest to copy result from farr search results (or directory traversing) by pressing Cursor-Right-key
aliasfile extension menu
regex ^((.+)\\(.+)\.(\S+))\s+\.(.*)$
filter$$5 $$4

usage within result(s)value
$$1<path>\<file name>.<file extension>
$$2<path excluding backslash at end>
$$3<file name excluding path and excluding extension>
$$4<file extension excluding preceding dot>
$$5<result menu filter>

usagedescriptionfarr result entry (copy only this part)
file_name .start default windows assocation[Enter] run default prog for -file.$$4 | shellexe $$1
file_name .vlc open  mkv avi and mp4 files with vlc[Enter]  VLC (mkv;avi;mp4) | %programfiles%\vlc\vlc.exe "$$1"
file_name .viewopen file with any extension in irfanview (image viewer)[Enter] / IRFANview -file.$$4 | %programfiles%\irfanview\i_view32.exe "$$1"
file_name .nppopen any file in notepad must include $$4 to match any file extension[Enter] notepad npp -file.$$4 | c:\windows\notepad.exe "$$1"
file_name .chroopen file in chrome browser use $$4  to match all file extensions[Enter] chrome -file.$$4 | %myAppData%\Google\Chrome\googlechrome.exe "$$1"
file_name .clcopy file name to clipboard[Enter]  FARR copy $$1 to CLIPBOARD  | copyclip $$1
file_name .stringshow lines within txt files (current folder and down) containing string using findstr in msdos box[Enter] find string '$$5' in *.txt /s | %systemdir%\cmd.exe /k findstr /S /I /P $$2 "$$2*.txt"
file_name.py .stringshow lines within files with same extension e.g. .py (current folder and down) containing string using findstr in msdos box[Enter] find string '$$5' in *.$$3 /s | %systemdir%\cmd.exe /k findstr /S /I /P "$$5" "$$2*.$$3"
file_name.doc .make subfolder file_name and move file_name.doc to subfolder, select this option from the result list[Enter] mv $$4-file to subFolder $$3 | %systemdir%\cmd.exe /c mkdir "$$2\$$3";;; %systemdir%\cmd.exe /c move /-Y "$$2\$$3.$$4" "$$2\$$3"

tip:
To always show a certain menu line when adding a dot in the search field, you should use the file extension ($$4) before the '|'.

tip:
The descriptive part before the '|' shouldn't be too long, otherwise the menu line gets cut up weirdly in the farr search results. Therefore use file_extension ($$4) instead of the full pathname ($$1)


A similar alias menu for strings / folders without extensions. This requires a different alias and regex. If you want to use both aliases the one matching no extensions should appear after the one matching extensions.

descriptionfor file names without extension
usageany string <space>.<result menu filter without spaces>
please notefull path and file name may contain spaces and dots
please noteeasiest to copy result from search results using cursor right key
aliasany string context menu
regex^(.+)\s+\.(.*)
filter$$2

Some examples of  FARR alias result entries
usagedescriptionfarr result entry
string or url .copy $$1 to clipboard[Enter] FARR copy $$1 to CLIPBOARD  | copyclip $$1
folder .show lines within files with same extension (current folder and down) containing string using findstr in msdos box[Enter] find string '$$2' in $$1*.* /s | %systemdir%\cmd.exe /k findstr /S /I /P "$$2" "$$1*.*"
string . look up string using duckduckgo.com [Enter] duckduckgo.com '$$1' |https://www.duckduckgo.com/?q=$$1
word . look up word using wikipedia [Enter] lookup  $$1 in WIKIPEDIA| https://en.wikipedia.../w/index.php?search=$$1&title=Special%3ASearch&go=Go

For wikipedia, copy text below, php table formatting removed some essential details of the wikipedia url.
[Enter] lookup  $$1 in WIKIPEDIA| https://en.wikipedia.../w/index.php?search=$$1&title=Special%3ASearch&go=Go


tip:
Sometimes pressing the cursor-right-key seems the correct action to execute the command from the new farr context menu, but this will give a strange result (the name of the alias will be copied to the search field). Therefore I placed [Enter] at the beginning of each farr alias result entry to make sure you press the [Enter] key. You can also double click the line and of course use the short cuts F1-F9 for the first nine entries.

tip:
If you edit the registry entries in my other post : how to start FARR from within explorer or total commander(TC). You can include a <space> and a <dot> at the end of the registry entry. When you then start FARR from within TC the above farr context menu will automatically appear. See underlined characters in registry :

[HKEY_CLASSES_ROOT\*\shell\FARR file\command]@="\"c:\\filemngr\\farr portable\\FindAndRunRobot.exe\" -search \"%1 .\""


Enjoy!  ;)

46
Would Ctrl+Win+Alt+[number] be too complex?
Sure that's possible

I'll try to upload a version this evening (local time now 15:30).

BTW, sorry for the late answer. My PC didn't work, had problems with the BIOS/boot drive, is working again now, backing up drive now, just in case ...  :(

v1.03 ctl+win+alt+<digit> :to change grid increment

47
when inside Opera ctrl+win+digit will also switch to the browser tab counting from the left (1 = left most tab)

so maybe another short cut key combination is better, any suggestions?

48
I assume I deleted the wrong version

You are right the keyboard ctrl+win+number combination is apparently already used in windows 7+.
I looked it up and found the following list :

Ctrl+Windows logo key+number   
  Switch to the last active window of the program pinned to the taskbar(quick menu) in the position indicated by the number.

Alt+Windows logo key+number   
  Open the Jump List for the program pinned to the taskbar in the position indicated by the number.

Shift+Windows logo key+number   
  Start a new instance of the program pinned to the taskbar in the position indicated by the number.

I normally use vistawitcher (taskswitchxp pro) to switch between programs, so I didn't use the above short cuts.

It is going to be hard to find a different keyboard short cut, I think I'll stick with them.

49
Tomos,

thanks for your comments!

I added one option ctrl+win+1 which will extend the window to the side when pressing ctrl+win+cursor. Is this more like what you expected? Maybe I should make this the default. Using ctrl+win+<digit> then allows you to resize according to the grids.

I also add some diagrams to the first post to explain the resize cycle.

Which program acted strange after restoring from maximized and resizing ? This should not happen, but some programs have strange size constraint. For example cmd.exe has a maximum width (80 chars) and a minimum height.

As a fail safe the above key combination ctr+win+1 followed by ctrl+win+cursor in any direction will restore any weird windows, hope this helps.

MS Powerpoint even allowed me to resize the full screen (shift-F5) using this tool, without problems.


50
thanks for the thumps up,
executable is now added to first post.

Pages: prev1 [2] 3 4next