A page for random commands…
Connecting Windows Azure Powershell
How to connect BOTH PowerShell (Windows Azure PowerShell module) and (PS) in one session using Windows Azure PowerShell module and Windows PowerShell to Exchange online (O365).
Click Start > All Programs > select Windows PowerShell
Run the commands below:
set-executionpolicy unrestricted Y $LiveCred = Get-Credential $Session = New-PSSession -ConfigurationName Microsoft.Exchange -ConnectionUri https://ps.outlook.com/powershell/ -Credential $LiveCred -Authentication Basic -AllowRedirection Import-PSSession $Session