Category Archives: Exchange

Outlook 2016 with exchange 2013 office 365 hybrid, requesting logon, ADFS

If you’ve migrated users to Office 365 (exchange online) and users get prompted for a password when opening outlook you more than likely need to enable Modern Authentication for Exchange Online (https://social.technet.microsoft.com/wiki/contents/articles/32711.exchange-online-how-to-enable-your-tenant-for-modern-authentication.aspx) Open a Powershell prompt and connect to Exchange online by the following steps. $UserCredential = Get-Credential Enter user credentials for office 365 *@*.onmicrosoft.com… Read More »

Set Out of office for multiple users

If you need to set the out of office for multiple users you can use a powershell script Set-MailboxAutoReplyConfiguration ALIAS -AutoReplyState scheduled -StartTime “07/12/2013 14:05:00” -EndTime “08/05/2013 08:00:00” -ExternalAudience all -InternalMessage $oof -ExternalMessage $oof where the variable $oof is a predefined message. $oof = “I’m not in the office currently” Here I’ll give a more… Read More »