Having issues relaying mail from with SSL or TLS not being an option. You can your the MX Points to Address as the SMTP Relay […]
Category: Office 365
Office 365 Shared Mailbox slow
After trying all of these options with no success – http://support.microsoft.com/kb/2441551/en-us Add the Shared Mailbox as a separate account to the same Outlook profile. Optional […]
Powershell Office 365 Calendar Permissions with Task Scheduler
Recently was requested to set the calendar permissions for all our Office 365 mailboxes. Here are the instructions: Create a password file for the Office […]
Remove Office 365 Archive mailbox user with Hybrid Deployment
The action ‘Disable-Mailbox’,’Archive’ can’t be performed on the object ‘name’ because the object is being synchronized from your on-premises organization. This action should be performed […]
How to remove deleted users and mailboxes from Office 365
I recently had an instance where there was an on premise and cloud mailbox for the same user. Accidentally after a DirSync the Exchange Online license […]
Microsoft Office 365 – Your organization could not sign you in to this service error 80041317 or 80043431
“Your organization could not sign you in to this service” error and “80041317” or “80043431” error code when a federated user tries to sign in […]
Get Office 365 Last Login Stats
$objUsers = get-mailbox -ResultSize Unlimited | select UserPrincipalName #Iterate through all users foreach ($objUser in $objUsers) { #Connect to the users mailbox $objUserMailbox = get-mailboxstatistics […]
Using ADSIEdit to change e-mail aliases on Office 365
Go to Start > Run and type adsiedit.msc Now, find the unit where your AD user’s reside Right click the user you want to edit […]
Setting Calendar permission Exchange 2010
To set the sharing permission for you, please refer the steps below, 1), connect to Exchange Online through PowerShell as administrator. 2), run Get-Mailbox to […]
Setting Office 365 User with Send As permission
Connect to O365 $LiveCred = Get-Credential $Session = New-PSSession -ConfigurationName Microsoft.Exchange -ConnectionUri https://ps.outlook.com/powershell/ -Credential $LiveCred -Authentication Basic -AllowRedirection Import-PSSession $Session Send As Add-RecipientPermission sendas@yourdomain.com […]