How to setup a remote PowerShell-session with Exchange 2013

Now I want to manage my 2013 environment from the 8 workstation, no Exchange are installed on the 8 laptop. In a few simple steps you can open a remote session to one of the Exchange Servers.

Logon to the 8 machine and start the ‘Windows ISE

 

$RemoteEx2013Session = New-PSSession -ConfigurationName .Exchange `
                                     -ConnectionUri http://servername/PowerShell/ `
                                     -Authentication Kerberos -Credential (Get-credential)
Import-PSSession $RemoteEx2013Session

Save this to Remote 2013 .ps1

Don’t forget setting your to unrestricted with: set-executionpolicy unrestricted

Translate »
%d bloggers like this: