搜索邮箱命令无法识别 Exchange 2010 sp1 powershell

发布于 2024-11-05 07:04:58 字数 170 浏览 1 评论 0原文

有谁知道为什么此命令在 Exchange 2010 SP1 中无法识别:

Search-Mailbox -Identity "April Stewart" -SearchQuery 'Subject:"Your bank statement"' -DeleteContent

Does anybody know why this command is not recognized in Exchange 2010 SP1:

Search-Mailbox -Identity "April Stewart" -SearchQuery 'Subject:"Your bank statement"' -DeleteContent

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(4

安穩 2024-11-12 07:04:58

出现此问题的原因是您的帐户不是 Discovery Management 角色的成员。由于您的帐户没有执行搜索的权限,因此 Powershell 不会导入 Search-Mailbox cmdlet。

ECP 中,将帐户添加到此角色,然后关闭并重新启动 Powershell 会话。

This problem happens because your account is not a member of the Discovery Management role. Since your account does not have permission to perform searches, Powershell does not import the Search-Mailbox cmdlet.

In ECP, add the account to this role, then close and restart your Powershell session.

忆梦 2024-11-12 07:04:58

您是从 Exchange 命令行管理程序运行此程序吗?如果您从常规 powershell 实例运行,您是否记得导入该模块?运行 get-module 以查找交换模块的名称,然后运行 ​​import-module 以使命令可用。

Are you running this from the Exchange Management Shell? If you're running from a regular powershell instance, did you remember to import the module? Run get-module to find the name of the exchange module, then run import-module <modulename> to make the commands available.

陈年往事 2024-11-12 07:04:58

创建“邮箱导入导出管理”角色组并将自己授予成员身份。
重新运行搜索命令,它就会起作用。

要创建角色组,我们需要运行以下命令:
New-RoleGroup "Mailbox Import-Export Management" -Roles "Mailbox Import Export"

添加用户可以通过运行以下命令来完成:
Add-RoleGroupMember“邮箱导入导出管理”-Member

http://blogs.technet.com/b/nawar/archive/2010/06/24/permissions-to-import-or-export-mailbox -data-in-exchange-2010.aspx

Create "Mailbox Import-Export Management" role group and grant yourself as a member.
Rerun Search commands and it will work.

To create the role group we need to run the following:
New-RoleGroup "Mailbox Import-Export Management" -Roles "Mailbox Import Export"

Adding a user can be done by running the following:
Add-RoleGroupMember "Mailbox Import-Export Management" -Member

http://blogs.technet.com/b/nawar/archive/2010/06/24/permissions-to-import-or-export-mailbox-data-in-exchange-2010.aspx

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文