AudionAudion

Doc to PDF

github.com/Tensionix/doc-to-pdf ↗
Builds of this project: versions, files and checksums.
Doc to PDF

Converts documents in batches through Microsoft Office itself rather than a third-party engine: layout, fonts and captions stay where they were. Plus the usual finishing pass over the resulting PDFs.

1.6.2
3 downloads from GitHub

Audion Doc to PDF

Русский · User Guide

Contents

Batch conversion of Word, Excel, and PowerPoint into PDF — through the native export of Office itself. Plus routine processing of existing PDFs.

Why It Exists

There are a dozen ways to get a PDF out of an Office document, and almost all of them spoil the result: third-party engines lose fonts, break numbering, move tables elsewhere. The only one that reliably produces what you see on screen is Office itself.

But Office cannot do it in bulk. Opening two hundred files and pressing "Save as PDF" two hundred times is not work for a human.

The program takes that over: the export stays native, and the batching is added around it.

Principles

The folder structure is preserved. The walk is recursive and the output mirrors the source tree. Two hundred files from twenty folders do not collapse into one.

Existing PDFs are processed too. Not everything comes from Office: some material is already PDF and needs the same treatment — cropping to format, assembly, splitting.

Presentations are cropped afterwards. The export produces the page as it is, and fitting to 16:9 or an A-series size is a separate step — so the original export stays unspoilt.

What It Can Do

Recursive folder conversion preserving structure, single-file conversion, cropping presentations to 16:9 or A-series, routine processing of existing PDFs.

Next


Technical Reference

Requirement

An installed Microsoft Office: it performs the export, the program only drives the process.

Workbench Naming

One shared vocabulary across all Audion projects: Source, Add file…, Target, Reset, Delete, List.

Versions
1.6.2
Audion_Doc_to_PDF_v1.6.2_Full.zip182 MB4 September 2026sha256here only
Audion_Doc_to_PDF_v1.6.2.zip3.6 MB4 September 2026sha256here only
README_EN.dark.pdf56.7 KB4 September 2026
README_EN.light-sand.pdf56.9 KB4 September 2026
README_EN.md2.0 KB4 September 2026
README_RU.dark.pdf64.4 KB4 September 2026
README_RU.light-sand.pdf64.5 KB4 September 2026
README_RU.md3.3 KB4 September 2026
USER_GUIDE_EN.dark.pdf106 KB4 September 2026
USER_GUIDE_EN.light-sand.pdf106 KB4 September 2026
USER_GUIDE_EN.md3.9 KB4 September 2026
USER_GUIDE_RU.dark.pdf124 KB4 September 2026
USER_GUIDE_RU.light-sand.pdf124 KB4 September 2026
USER_GUIDE_RU.md5.6 KB4 September 2026
Installation

The program is portable: the unpacked folder is the installed program. Nothing is written to the registry; to uninstall, delete the folder.

$name = "Audion_Doc_to_PDF_v1.6.2_Full.zip"
Invoke-WebRequest "https://audion.dev/get/doc-to-pdf/1.6.2/Audion_Doc_to_PDF_v1.6.2_Full.zip" -OutFile $name
Invoke-WebRequest "https://audion.dev/get/doc-to-pdf/1.6.2/Audion_Doc_to_PDF_v1.6.2_Full.zip.sha256" -OutFile "$name.sha256"

$want = (Get-Content "$name.sha256").Split(" ")[0]
$have = (Get-FileHash $name -Algorithm SHA256).Hash.ToLower()
if ($want -ne $have) { throw "checksum mismatch: the download is corrupt" }

Expand-Archive $name -DestinationPath ".\doc-to-pdf"
All downloads · Home