我正在尝试搜索邮箱(导出到 PST 之后)并删除符合特定条件的消息。
每次我尝试运行 Search-Mailbox 命令时,都会得到以下输出:
The target mailbox or .pst file path is required.
+ CategoryInfo : InvalidArgument: (:) [], ArgumentException
+ FullyQualifiedErrorId : 79CD2AE3
我甚至尝试了 PowerShell 显示的示例,但仍然收到相同的消息。
尝试命令的示例:
[PS] C:\Windows\system32>Search-Mailbox -Identity "David Tester" -SearchQuery "Subject:'Your bank statement'"
The target mailbox or .pst file path is required.
+ CategoryInfo : InvalidArgument: (:) [], ArgumentException
+ FullyQualifiedErrorId : 79CD2AE3
[PS] C:\Windows\system32>
任何帮助都很好
谢谢
答案1
问题是您需要有一些目标邮箱和文件夹,否则就是 DeleteContent 标志。
Search-Mailbox -Identity "April Stewart" -SearchQuery 'Subject:"Your bank statement"' -TargetMailbox "administrator" -TargetFolder "SearchAndDeleteLog" -LogOnly -LogLevel Full
上面的例子是仅日志搜索,不会移动任何消息。
请参阅 Search-Mailbox 命令的手册页并注意需要哪些开关。