Basic Powershell – batch convert Word Docx to PDF
This will work for doc as well as docx files. $documents_path=”c:\doc2pdf” $word_app = New-Object -ComObject Word.Application # This filter will find .doc as well as .docx documents Get-ChildItem -Path $documents_path -Filter *.doc? | ForEach-Object { $document = $word_app.Documents.Open($_.FullName) $pdf_filename = “$($_.DirectoryName)\$($_.BaseName).pdf” $document.SaveAs([ref] $pdf_filename, [ref] 17) $document.Close() } $word_app.Quit()