我使用的是Powershell,我只是在Get-MessageTrackingLog
之后使用login/Authentication
$Session = New-PSSession -ConfigurationName Microsoft.Exchange -ConnectionUri “https://outlook.office365.com/powershell-liveid/” -Credential $UserCredential -Authentication Basic -AllowRedirection/ .
但是我遇到以下错误:
Get-MessageTrackingLog无法识别为cmdlet的名称
我要搜索邮箱中的所有电子邮件。
答案 0 :(得分:0)
错误消息指出Powershell环境没有功能定义,但cmdlet Get-MessageTrackingLog
未被识别。
Cmdlet Get-MessageTrackingLog 是交换 Powershell模块的一部分。
要使用此模块中的任何功能,您需要安装,然后加载。