有没有办法找到 2013 Outlook 文件夹的创建日期?如图所示,我想知道创建日期,如果可能的话,我想知道谁创建了该文件夹。 Outlook 2013 文件夹示例
答案1
答案2
如果您使用 Office 365(或 Exchange),您可以连接电源外壳并使用 Get-MailboxFolderStatistics cmdlet。这将获取创建日期。请参阅下面的 Powershell 代码:
$UserCredential = Get-Credential
$Session = New-PSSession -ConfigurationName Microsoft.Exchange -ConnectionUri https://outlook.office365.com/powershell-liveid/ -Credential $UserCredential -Authentication Basic -AllowRedirection
Import-PSSession $Session
Get-MailboxFolder -identity [email protected]