azukipochette's weblog

memory dump (mini)

PowerShell

PowerShell コマンドの実装を調べる方法

unsplash-logoMarkus Spiske PowerShell コマンドは、以下の 3 種類に分類される。 エイリアス (Alias) 関数 (Function) コマンドレット (Cmdlet) 本記事では、それぞれの実装の調査方法を説明する。 エイリアス (Alias) を調べる PowerShell にはエイリアス…

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…