Solved Word to PDF converter ...
-
Does anyone know a good open source docx to pdf converter for Windows?
I have a user that wants to be able to bulk select multiple MS Word files and convert them to individual PDFs.
I found this tool which looks to do what I want but I can't find much else about it so I'm hesitant to install:
-
@BraswellJay said in Word to PDF converter ...:
@Obsolesce said in Word to PDF converter ...:
@BraswellJay you don't need one with word. In Word, just export as pdf.
I can't do that in bulk that way though, can I?
My user may have 50 or so word files and she wants to convert them all to separate PDFs without having to open each one individually in word.
I thought there may be a tool that would just let her bulk select all and convert them all at once.
You can do it with PowerShell. Make a simple script for the user to run.
-
@BraswellJay you don't need one with word. In Word, just export as pdf.
-
@Obsolesce said in Word to PDF converter ...:
@BraswellJay you don't need one with word. In Word, just export as pdf.
I can't do that in bulk that way though, can I?
My user may have 50 or so word files and she wants to convert them all to separate PDFs without having to open each one individually in word.
I thought there may be a tool that would just let her bulk select all and convert them all at once.
-
@BraswellJay said in Word to PDF converter ...:
@Obsolesce said in Word to PDF converter ...:
@BraswellJay you don't need one with word. In Word, just export as pdf.
I can't do that in bulk that way though, can I?
My user may have 50 or so word files and she wants to convert them all to separate PDFs without having to open each one individually in word.
I thought there may be a tool that would just let her bulk select all and convert them all at once.
You can do it with PowerShell. Make a simple script for the user to run.
-
-
-
@Obsolesce said in Word to PDF converter ...:
@BraswellJay said in Word to PDF converter ...:
@Obsolesce said in Word to PDF converter ...:
@BraswellJay you don't need one with word. In Word, just export as pdf.
I can't do that in bulk that way though, can I?
My user may have 50 or so word files and she wants to convert them all to separate PDFs without having to open each one individually in word.
I thought there may be a tool that would just let her bulk select all and convert them all at once.
You can do it with PowerShell. Make a simple script for the user to run.
Powershell for the win! Nicely done.
-
With libreoffice you can do batch conversion to pdf immediately from the command line like this:
From odt to pdf:
"C:\Program Files\LibreOffice\program\swriter.exe" --headless --convert-to pdf *.odt
Replace *.odt with whatever format and wildcard you need.
From docx to pdf:
"C:\Program Files\LibreOffice\program\swriter.exe" --headless --convert-to pdf *.docx
Works the same on linux.
Replace the path to LibreOffice with whatever you have. Above is default for Windows.
-
@Obsolesce said in Word to PDF converter ...:
@BraswellJay said in Word to PDF converter ...:
@Obsolesce said in Word to PDF converter ...:
@BraswellJay you don't need one with word. In Word, just export as pdf.
I can't do that in bulk that way though, can I?
My user may have 50 or so word files and she wants to convert them all to separate PDFs without having to open each one individually in word.
I thought there may be a tool that would just let her bulk select all and convert them all at once.
You can do it with PowerShell. Make a simple script for the user to run.
Here's one resource that works:
https://stackoverflow.com/questions/16534292/basic-powershell-batch-convert-word-docx-to-pdf