PowerShell utilized both Snapins and Modules to expand its functionality. For those of you needing to do some exchange scripting, you will need access to the Exchange Snapins. These snap ins are installed on your Exchange server. If you would like to work off of a client, then use the Exchange installation media to install the Exchange Management Tools to your client.
These snapins are for Exchange 2010.
Microsoft.Exchange.Management.PowerShell.E2010
Microsoft.Exchange.Management.PowerShell.Setup
Microsoft.Exchange.Management.PowerShell.Support
To register these snapins quickly in the ISE, type this command in the Command window:
Get-PSSnapin –Registered | ForEach-Object {Add-PSSnapin –Name $_.Name}
Comments