I am finding it hard to phrase this question and could not find an online solution for what I'm trying to do.
I know how to split a large PDF into single pages with PDFTK using the following script:
pdftk your_file.pdf burst output your_directory/page_%02d.pdf
But now I want to split the PDF by every other page, so that each new PDF has TWO (2) pages (e.g. pages 1 + 2 together, pages 3 + 4 together, 5 + 6, etc.).
I know that Acrobat does this like a champ, however I need something I can execute from Powershell.
I am open to alternatives/workarounds, like taking the single pages and combining them by two's after single bursting.