Exchange 2010 PowerShell 管理单元
谁能告诉我在哪里可以找到 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
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.