-date-format <format>
- 0 = (Use default) (default)
- 1 = ISO-8601
- 2 = FILETIME
- 3 = ISO-8601(UTC)
- 4 = User Locale
- 5 = ISO-8601 (full-resolution)
- 6 = ISO-8601 (UTC) (full-resolution)
Please try
-date-format 4-date-format 4-date-format 4-date-format 4
]control paneles -instance 1.5aCode: Select all
.\es -json c:\some\file.png "a:=2*size:" "add-column:a;size"But this one does not:[{"filename":"C:\\some\\file.png","column_a":"2648","size":1324}]
Code: Select all
.\es -json c:\some\file.png "a:=custom-property-1:" "add-column:a;custom-property-1"I was trying to get the hex value for my custom-property-1 value, since as you can see Everything can't decode it properly.[{"filename":"C:\\some\\file.png","column_a":"","custom_property_1":"¶"}]
Code: Select all
a:=Hex($custom-property-1:)=> Re: Hex value for specific ADSin the main window works but not in ES.
Code: Select all
a:=GETPROPERTY($name:)This isn't an ES or Everything error message.Variable reference is not valid
Please try from a command prompt, powershell loves to mangle the command line.To be clear, it is not that functions do not work, but references to other values. I guess something is breaking the parser (maybe it is related to PowerShell?).
GETPROPERTY() will try to read index values first, then fall back to disk.EDIT: Nevermind, is something related to PS, but regarding a:=HEX(GETPROPERTY($name:..":my-alternate-data-stream-name","binarycontent")), is slower than map that ADS to a custom property and use HEX() in that value?
Code: Select all
es addcolumn:custom-property1
es addcolumn:a a:=$custom-property-1:
es addcolumn:a a:=HEX($custom-property-1:)
Code: Select all
es addcolumn:a a:=GETPROPERTY($name:..":zone.identifier","utf8content")
es addcolumn:a a:=HEX(GETPROPERTY($name:..":zone.identifier","utf8content"))
Working great, thanks!!void wrote: Sat Feb 21, 2026 10:13 pm Yes, but you will need to usewhile Everything 1.5 is in alpha.es -instance 1.5a
-or-
Disable the alpha instance under Tools -> Options -> Advanced -> alpha_instance
(please make sure Everything 1.4 is not installed before disabling)
Thanks for your work on bringing ES to Emacs.I am making a package to use org-everything from Emacs. After polished, I could share if you think it's good for everything.
es.ex2 SS.BAT -instance 15 -no-result-error 2> nules.ex2 SS.BAT -instance 15 -no-result-error > nul 2>&1
Return codes from ES:
...
9 No results found when used with -no-result-error
ES.exe searchforsomethingthatwillneverbefound.xyz -no-result-errorES.exe searchforsomethingthatwillneverbefound.xyz -no-result-error && echo %errorlevel%ES.exe red blue -utf8-bom > xyz.txtPart of the problem is the "&&" here. "&&" is a conditional execution operator which means, "if that command succeeds, do this". You're probably intending to use "&" alone, which is not conditional.therube wrote: Mon Apr 06, 2026 4:12 pmES.exe searchforsomethingthatwillneverbefound.xyz -no-result-error && echo %errorlevel%
ES.exe searchforsomethingthatwillneverbefound.xyz -no-result-error & echo %errorlevel%es -argv -save-settingsCorrect."&&" is a conditional execution operator which means, "if that command succeeds, do this"
ES.exe searchforsomethingthatwillneverbefound.xyz -no-result-error & echo %errorlevel%Code: Select all
ES.exe searchforsomethingthatwillneverbefound.xyz -no-result-error
echo %errorlevel%%APPDATA%\voidtools\es\es.inies -instance 1.5a