Remote PS client for Exchange 2016
TechNet has a nice stubby article about remote powershell sessions for Exchange 2016, but I thought I’d stash this script here for quick reference. This is how I log in to my Exchange 2016 CU2 server remotely.
$UserCredential = Get-Credential
$Session = New-PSSession -ConfigurationName Microsoft.Exchange -ConnectionUri http://<FQDN>/PowerShell/ -Authentication Kerberos -Credential $UserCredential
Import-PSSession $Session
I save this as connect-exchange.ps1 in … [Read more…]