Is there a way for me to only print from page 11 to page 14 using the following script?
$objWord = New-Object -comobject Word.Application $objDoc = $objWord.Documents.Open("c:\test.docx") $objDoc.PrintOut() $a = $objWord.Quit()
Is there a way for me to only print from page 11 to page 14 using the following script?
$objWord = New-Object -comobject Word.Application $objDoc = $objWord.Documents.Open("c:\test.docx") $objDoc.PrintOut() $a = $objWord.Quit()