Skip to content

Instantly share code, notes, and snippets.

@twerp
Created November 2, 2017 13:45
Show Gist options
  • Save twerp/a273e6e10373449d93e1ac95099876c6 to your computer and use it in GitHub Desktop.
Save twerp/a273e6e10373449d93e1ac95099876c6 to your computer and use it in GitHub Desktop.
Remove protection ("encryption") from a PDF doc
@echo off
FOR %%a IN (*.pdf) DO call unprotect.bat "%%a"
@echo off
rem ** echo %1
qpdf --decrypt %1 temp.pdf
del %1
ren temp.pdf %1
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment