문제

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

도움이 되었습니까?

해결책

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.

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top