Skip to content

Instantly share code, notes, and snippets.

@balloob
balloob / DocxToPdf.ps1
Created June 5, 2017 23:17 — forked from alexisnomine/DocxToPdf.ps1
Batch convert docx to pdf with powershell
Param(
[Parameter(Mandatory=$True)]
[string]$FilePath
)
$Files = Get-ChildItem "$FilePath\*.docx"
$Word = New-Object -ComObject Word.Application
Foreach ($File in $Files) {
@balloob
balloob / CLA.md
Last active September 27, 2018 09:19 — forked from pjcozzi/CLA.md
CLA for Apache 2.0 license

By making a contribution to this project, I certify that:

(a) The contribution was created in whole or in part by me and I have the right to submit it under the Apache 2.0 license; or

(b) The contribution is based upon previous work that, to the best of my knowledge, is covered under an appropriate open source license and I have the right under that license to submit that work with modifications, whether created in whole or in part by me, under the Apache 2.0 license; or