Using the bat file, you can make a small workaround by searching for "Encrypt" in pdf files. Its quiet speed for searching many files.
Findstr /M /I "Encrypt" *.pdf
This will return all the names of the files that have been protected (since "Encryption" will be written to the file as it is read)
Perhaps this is something someone can use. I use:
for /f %%a in ('Findstr /M /I "Encrypt" *.pdf') do move %%ac:\tempfiles\
move all protected pdfs to c: \ tempfiles. From there I use ghostscript to remove security and move it back to the original folder.
TrueTom
source share