Created
August 17, 2023 18:14
-
-
Save androidmads/43c958be0de1ce4130bf0aefc483ab52 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#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