How to setup a remote PowerShell-session with Exchange 2013

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

Logon to the Windows 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 Exchange 2013 Powershell.ps1

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

Translate »
%d bloggers like this: