How to connect Powershell to the Office365 Server, so that you can administer a Hybrid environment. Issue the following commands: Set-ExecutionPolicy Unrestricted $cred = Get-Credential (Enter your Tenant Login to Office365) $Session = New-PSSession -ConfigurationName Microsoft.Exchange -ConnectionUri https://ps.outlook.com/powershell/ -Credential $Cred -Authentication Basic -AllowRedirection (Note: You may get a redirection as this command is executed: WARNING: Your connection has been redirected to the following URI: " https://pod51042psh.outlook.com/powershell-liveid?PSVersion=3.0 ") Import-PSSession $Session Before issuing this command, following are the Modules that were loaded: PS>Get-Module ModuleType Name ExportedCommands ---------- ---- ...