How to convert Word (doc) to PDF from Windows command line?

87,659

Solution 1

"winword.exe" "C:\My Files\doc1.doc" /mFilePrintDefault 

Provided you have quiet PDF printer as default.

Also, try LibreOffice offspring from OpenOffice.org. It is based on go-ooo which had no problems with OLE metrics in Office.

Solution 2

  1. if you have Microsoft Word installed, you can use DocTo:

    https://github.com/tobya/DocTo

    batch operation is supported, all files in directory can be converted from doc to pdf:

    docto -f "C:\Dir with Spaces\FilesToConvert\" -O "C:\DirToOutput" -T wdFormatPDF  -OX .pdf
    
  2. another option is to use the following powershell script: https://gallery.technet.microsoft.com/office/Script-to-convert-Word-f702844d

Solution 3

If you have Microsoft Word installed, you can use the docx2pdf command line utility to batch convert docx to pdf on windows or macos. https://github.com/AlJohri/docx2pdf

Install:

pip install docx2pdf

Run:

docx2pdf myfolder/

Disclaimer: I wrote this tool after struggling to find a cross-platform solution for batch converting docx to pdf with zero formatting issues since it directly uses Microsoft Word.

Solution 4

I found this site, and by testing OfficeToPDF, it is apparently working well. Example:

OfficeToPDF "c​​:\help.doc" "c:\output\help.pdf"

Solution 5

I know the question is old, but the best solution to convert any kind of file to PDF is to use the PDFCreator. It is free, and has a command line EXE file you can use to convert any file to PDF. The application to read the file type has to be installed on the PC of course (you need office installed to convert an office document and Autocad to convert a CAD file). PDFCreator can run in the background and output files to a specified folder with no user interaction required. Sadly you cannot specify in the command line where to output the PDF. PDFCreator always output to the same folder specified in the settings. But knowing this, you can pick up the converted file in that folder and move/rename to wherever you want.

Share:
87,659

Related videos on Youtube

Xosler
Author by

Xosler

Updated on September 18, 2022

Comments

  • Xosler
    Xosler almost 2 years

    Anyone know how to convert word files (.doc) to PDF using the command line in Windows?

    We were using the service of OpenOffice, but in documents that have many tables and images, it ends up ruining much formatting.

    • Thalys
      Thalys over 12 years
      hate to ask, but why cli specifically? scripting?
    • Xosler
      Xosler over 12 years
      what exactly you want to know
    • Thalys
      Thalys over 12 years
      Well, i can invoke printing off CLI, but it'll open windows for it, apparently
  • Xosler
    Xosler over 12 years
    I can do something like: winword.exe 'c :/ file.doc' '/ printer' 'c :/ arquivo_de_saida.pdf'?
  • Xosler
    Xosler over 12 years
    currently use the service openoffice / LibreOffice, but the conversion spoils the original formatting of the file, and if we can not lose any formatting. Part of the files are. Docx with many tables, headers and footers, we must keep the original formatting
  • Thalys
    Thalys over 12 years
    wouldn't that mean actually having to write the application from scratch?
  • Kit Grose
    Kit Grose over 12 years
    In theory, although the OP mentioned this being used as part of a custom Java app. For our use it was convenient to have the conversion happen on the commandline so I wrapped more or less the sample code provided on the website in a tiny executable.
  • ZaB
    ZaB over 12 years
    I am just wondering if "docx files" still have Word 6.0 compatibility attributes? Libre/OpenOffice parser does not have means to deal with them because "standard" from microsoft does not describe exact metrics.
  • jltrem
    jltrem almost 10 years
    fyi, this project uses Word Interop. So Word is required to be installed.
  • KAE
    KAE about 8 years
    In W7 I get:'winword.exe' is not recognized as an internal or external command. Will see what directory it is in.
  • tigrou
    tigrou about 7 years
    Under the hood, it use MS Office to convert the files (see requirement part). Don't pay for this and use open source solution : OfficeToPDF (it does exactly the same)
  • Basj
    Basj about 6 years
    Wondeful! The binaries (.exe) are there: github.com/cognidox/OfficeToPDF/releases
  • Thom Ives
    Thom Ives over 4 years
    In my attempts to use it, I was able to set the output directory, but it does not run quietly. It opens and closes an MS Word banner, but it STOPS on the PDFCreator GUI and you must then operate that manually to continue. One can however buy a license for their PDFCreator Server for just under $1K.
  • Randy Cragun
    Randy Cragun over 3 years
    The link for the second option is broken.