Use the following Powershell script to connect to Azure Active Directory and Microsoft O365. This enables you to use all the O365 Powershell commands. #Connecting to Exchange Online and Azure Active Directory #This first command will import the Azure Active Directory module into your PowerShell session. Import-Module MSOnline #Capture administrativeRead More →

Use the following steps to delegate (Calender) rights to a specific user. The first step is to specify your (administrator) credentials: $LiveCred = Get-Credential Then create the session: $Session = New-PSSession -ConfigurationName Microsoft.Exchange -ConnectionUri https://ps.outlook.com/powershell/ -Credential $LiveCred -Authentication Basic –AllowRedirection Now import the Office 365 session using the following command:Read More →

I was looking for a way to identify messages in my Outlook Mailbox and easily delete them. First connect to Office 365 with you (admin) credentials using the LiveCred command. Set the Execution Policy and import the commandlets. Using the next command creates an export of all emails from theRead More →