Exchange 2010 PowerShell 管理单元

发布于 2024-09-07 13:53:21 字数 135 浏览 1 评论 0原文

谁能告诉我在哪里可以找到 Microsoft Exchange 2010 的 PowerShell 管理单元。 当然,我可以只在我的计算机上安装 Exchange 2010 管理工具,但为了减少占用空间等,我宁愿不安装。;-)

问候, 凯文

can anybody tell me where I could possibly find the PowerShell snap-ins for Microsoft Exchange 2010.
Of course I could just install Exchange 2010 management tools on my machine but I'd rather not for the sake of a smaller footprint etc. ;-)

Regards,
Kevin

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

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

发布评论

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

评论(1

傾城如夢未必闌珊 2024-09-14 13:53:21

Exchange 2010 EMS 使用 PowerShell 远程处理(不再加载管理单元)。您不必在计算机上安装 Exchange 2010 管理工具,通过 PowerShell 2.0(启用远程处理),您可以将命令加载到本地会话中(也称为隐式远程处理):

PS > $session = New-PSSession -ConfigurationName Microsoft.Exchange -ConnectionUri http://Exchange1/Powershell
PS> Import-PSSession $session

现在您可以从本地会话调用任何 Exchange cmdlet。

Exchange 2010 EMS is using PowerShell remoting (no more snap-in loading). You don't have to install the Exchange 2010 management tools on your machine, with PowerShell 2.0 (with remoting enabled) you can load the commands into your local session (aka implicit remoting):

PS > $session = New-PSSession -ConfigurationName Microsoft.Exchange -ConnectionUri http://Exchange1/Powershell
PS > Import-PSSession $session

Now you can call any Exchange cmdlet from your local session.

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