azukipochette's weblog

memory dump (mini)

2013-04-27から1日間の記事一覧

PowerShell で Outlook の送信トレイを探索する

## Outlook の送信トレイ情報を取得する Function Get-OutlookSentMail { Add-type -assembly "Microsoft.Office.Interop.Outlook" | out-null $olFolders = "Microsoft.Office.Interop.Outlook.olDefaultFolders" -as [type] $outlook = new-object -comobj…