O seguinte comando no seu arquivo de lote fará o que você quiser:
dir | findstr "processed" >> D:\Abhi_Work\System_Monitoring\System_monitoring.txt
Você deve primeiro certificar-se de que System_monitoring.txt
é um arquivo vazio, pois o >>
será anexado ao arquivo ...
Fonte Procure por strings em arquivos.
Tubulação e redirecionamento
A text file can be piped or redirected into FINDSTR:
Data stream from a pipe TYPE file.txt | FINDSTR "searchString"
Stdin via redirection FINDSTR "searchString"
The various data source specifications are mutually exclusive - FINDSTR can only work with one of the following: filename argument(s), /F:file option, redirected input, or piped input.