Add-Type -assembly "Microsoft.Office.Interop.Outlook"
$Outlook = New-Object -ComObject Outlook.Application
$Namespace = $Outlook.GetNameSpace("MAPI")
$NameSpace.Folders.Item(2) | Select FolderPath
When I run the above I get folder path \\MyFolder - myname@domail.com
but I want to search all the folder recursive get the RECEIVED time. Please help me