Skip to content

Instantly share code, notes, and snippets.

@androidmads
Created August 17, 2023 18:14
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save androidmads/43c958be0de1ce4130bf0aefc483ab52 to your computer and use it in GitHub Desktop.
Save androidmads/43c958be0de1ce4130bf0aefc483ab52 to your computer and use it in GitHub Desktop.
#Creates a Word-Object
$word = New-Object -ComObject Word.Application
$word.Visible = $false
$doc = $word.Documents.Open('%SelectedFile%')
#Creates the PDF file
$name = ($doc.FullName).replace('docx', 'pdf')
$name = $name.replace('doc', 'pdf')
$doc.SaveAs($name, 17)
$doc.Close()
$word.Quit()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment