0 votes

I'm trying to run things from the command line using:

Z:\ELD>"C:\Program Files\Mythicsoft\Agent Ransack\flpsearch.exe" -s -d "Z:\." -f "Robo*.LOG" -c "(((Matson).*(Jamie).*(Jmatson)?)|((Matson).*(Jamie))|(Jmatson))&&([.]pst)" -o "c:\temp\results7.txt"

However, I'm not sure if I should use "-cex" in lieu of "-c" to have the Regular Expression search engine active?

by (25 points)

1 Answer

+1 vote

The -cex flag is a separate flag so add that to your command line, e.g.

flpsearch -d "C:\Program Files\Mythicsoft" -f "*.txt" -c "mythic|filelocator" -cex
by (30.1k points)
...