Connect to Office 365 using Windows Powershell

Open Windows Powershell and run the following commands: $LiveCred = Get-Credential Type your Office 365 administrator account and click ‘Ok’ $Session = New-PSSession -ConfigurationName Microsoft.Exchange -ConnectionUri https://ps.outlook.com/powershell/ -Credential $LiveCred -Authentication Basic -AllowRedirection Import-PSSession $Session

Read More »

Exchange 2010 – Completely remove a mailbox

Whenever you delete a mailbox from Exchange 2010 the mailbox is not deleted completely from the server. To remove the mailbox you have to execute the following commands: Clean-MailboxDatabase “Mailbox Name” When you now open Exchange Management Console and go to Recipient Configuration and then Disconnected Mailboxes you will see the the mailbox you just […]

Read More »