Now I want to manage my exchange 2013 environment from the windows 8 workstation, no exchange tools are installed on the windows 8 laptop. In a few simple steps you can open a remote powershell session to one of the Exchange Servers.
Logon to the Windows 8 machine and start the ‘Windows powershell ISE
$RemoteEx2013Session = New-PSSession -ConfigurationName microsoft.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