Search code examples
powershellexchange-server-2010

Exchange 2010 PowerShell snap-ins


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


Solution

  • 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.