私は短い日付と短い時間の両方としてSentOnを取得したいと思います。どうやってやるの?PowershellのOutlook MailItemとは別に日付と時刻を取得するには?
$mailbox = "[email protected]"
$outlook = New-Object -com Outlook.Application
$ns = $outlook.GetNamespace("MAPI")
$inbox = $ns.Folders.Item($mailbox).Folders.Item("Inbox")
$searchItems = $inbox.Folders.Item("MySubFolder").Folders.Item("MyNestedSubFolder").Items
$searchItems | Select Subject, SentOn.ToShortTimeString()
これは私も$searchItems | Select Subject, [datetime](SentOn).ToShortTimeString()
を試してみましたが、同じエラーを得たSentOn : The term 'SentOn' is not recognized as the name of a cmdlet, function, script file, or operable program.
エラーになります。
現在のオブジェクトに必要なものが既に存在する場合、不要な呼び出しで新しいオブジェクトを構築する必要はありません。 – Matt