PowerShell

Bulk-Creating PDF Files from Word

  PowerTip of the Day, from PowerShell.com:   To convert a whole folder full of MS Word documents to PDF, here’s a function that might help: function Export-WordToPDF {   param(   [Parameter(Mandatory=$true,ValueFromPipelineByPropertyName=$true)]   [Alias(“FullName”)]   $path,   $pdfpath = $null)   process {     if (!$pdfpath) {       $pdfpath = [System.IO.Path]::ChangeExtension($path, ‘.pdf’)     }… Continue reading Bulk-Creating PDF Files from Word