good-arrow’s blog

https://good-arrow.net/

2022-02-01から1日間の記事一覧

Powershell で Excel から PDF を出力

印刷設定などは Excel ファイルのまま。 $pdf = (Convert-Path .) + "\出力ファイル名.pdf" $excelFile = (Convert-Path .) + "\ファイル.xlsx" $sheetName = "Sheet1" # Excelを開く $excel = New-Object -ComObject Excel.Application $excel.Visible = $F…

(Powershell)テキストファイルをメール本文にしてメールを送る

Powershell でメールを送る方法。のメモ。 #ホスト名 $hostname = hostname # 宛先メールアドレス $to = "to@example.com" # 送信元メールアドレス $from = "from@example.com" # SMTPサーバー(IP、ホスト名どちらでも) $smtp = "mail.example.com" # 件名 $…