I need to exclude a specific column from the generated efu file list
(date created for example)
Is it possible from the command line with the es.exe ?
How To exclude a column from the efu
Re: How To exclude a column from the efu
For example:
EFU is more or less a fixed format. Export-csv gives you flexibility. Give the output file a .EFU file extension.
For more (or less) columns to export see ES.exe /?, under the Display optione.
Note:
If you leave out the -attributes, Everything has no way to tell if an item is a folder or a file.
Code: Select all
es.exe "c:\your folder\" -full-path-and-name -size -dm -attributes -export-csv .\output.efuFor more (or less) columns to export see ES.exe /?, under the Display optione.
Note:
If you leave out the -attributes, Everything has no way to tell if an item is a folder or a file.
Re: How To exclude a column from the efu
That works for me. Thank you 