Windows11 (25H2), display resolution 3840x2160, dpi scale 150%
User commands - 'Open with' dialog / ''Set command...' button (Settings>Toolbar)
few inconveniencies
- it is only possible to use .exe and .bat formats
- folder is omitted from args
eg test.batCode: Select all
@echo off if "%~1"=="" ( echo NO ARGS ) else ( echo ARGS: echo %* ) echo. pause
Suggestion
- add .cmd and .ps1 script formats in windows
- add explicit arguments
eg like in Directory Opus:
- {allfile} - all selected files
- {allfilepath} - all selected files and folders
Example
Related