Powershell Resume Script

Scripts to generate company email specific CV/Resume PDF(s). This is useful for job application email filtering. work.email@my_domain.com will be work.company_name@my_domain.com. The mailto link for the email will also be updated accordingly. CreatePDF.ps1 Creates a PDF by prompted input text in user Desktop. $TextFile = Read-Host -Prompt 'File name' $TextFile = $TextFile.ToLower().Replace(' ', '') $Word = New-Object -ComObject Word.Application $Word.Visible = $false $word.DisplayAlerts = "wdAlertsNone" $Filename = "\path\to\folder\my_resume.docx" $NewFileName = $Filename.Replace(".docx","") $Document = $Word....

February 14, 2023 · 2 min · 353 words · Wei Wang