TROUBLESHOOTING. Calendar, SSL, Mailboxes, and more!

Size: px
Start display at page:

Download "TROUBLESHOOTING. Calendar, SSL, Mailboxes, and more!"

Transcription

1 Calendar, SSL, Mailboxes, and more!

2 TABLE OF CONTENTS: Office 365 Calendar Invites and Meeting Requests. 3 Alleviate Local SSL Cert Pop Ups..7 Purging and Removing Deleted Users and Mailboxes From Office Windows XP and Office

3 CHAPTER 1: Office 365 Calendar Invites and Meeting Requests In this ebook, we will cover Office 365 Calendar Invites and Meeting Requests Coming Across as Plain-text to Non-Mailbox Users within the GAL. Page 3

4 A default setting within Office 365 that can lead to some frustration is that External Contacts and Mail-Enabled Users (not to be confused with Mailbox-enabled) will often will not receive calendar/meeting invites properly in that they arrive in the recipients mailboxes as simple plain-text s that they cannot accept or decline and thus not get placed into their calendars. Basically, Office 365 uses MAPI Rich Text formatting as the default for these users/contacts, thus transforming HTML messages such as calendar invites into plain-text. What you need to do is turn off this setting for all Mail Enabled users and External Contacts that are listed in your GAL. Page 4

5 What you need to do is turn off this setting for all Mail-Enabled users and External Contacts that are listed in your GAL. Mail-Enabled Users To do this, for all Mail-Enabled users, execute the following: Get-MailUser -Resultsize Unlimited Set-MailUser - UseMapiRichTextFormat Never To do this, for one particular mail-enabled user, perform the following command: Set-MailUser Alias of User UseMapiRichTextFormat Never For example, for user information, perform the following: Set- MailUser information UseMapiRichTextFormat Never IF you need to back out of this or undo for any reason, instead of stating Never at the end of the cmdlet, input UseDefaultSettings instead. 365Command makes this easy. Learn more. Page 5

6 Mail-Enabled Users To do this, for all Mail-Enabled users, execute the following: Get-MailUser -Resultsize Unlimited Set-MailUser - UseMapiRichTextFormat Never To do this, for one particular mail-enabled user, perform the following command: Set-MailUser Alias of User UseMapiRichTextFormat Never For example, for user information, perform the following: Set-MailUser information UseMapiRichTextFormat Never IF you need to back out of this or undo for any reason, instead of stating Never at the end of the cmdlet, input UseDefaultSettings instead. External Contacts For External Contacts, the Nomenclature is similar, instead you replace MailUser with MailContact within the cmdlet. Get-MailContact -Resultsize Unlimited Set-MailContact - UseMapiRichTextFormat Never To do this, for one particular mail-enabled user, perform the following command: Set-MailContact Alias of User UseMapiRichTextFormat Never For example, for user Dottie Pepper, you need to perform the following: Set-MailContact Dottie Pepper UseMapiRichTextFormat Never NOTE: To get a list of all of either the MailUsers or External Contacts within your Office 365 GAL, input the following cmdlets: Get-MailUser More or Get-MailContact More Page 6

7 CHAPTER 2: Alleviate Local SSL Cert Pop-Ups This tip focuses once again on Exchange Hybrid/Coexistence setups and/or migrations to Office 365. In particular, this tech tip discusses how to alleviate the annoying SSL certificate pop-up that your Outlook users will start to receive when the Exchange 2010 or 2013 Hybrid server comes online. An example of this pop-up is below: Page 7

8 This occurs because the SSL and/or UCC certificate that you have purchased and installed onto the Exchange 2010/2013 Hybrid server does NOT contain the local/internal URL of the CAS instance of this server, which is often cas.mycompany.local, or some kind of local domain that is not publicly searchable/obtainable on the internet. As a result, the local Autodiscover service is configured to initially use cas.mycompany.local as its FQDN, which is why Outlook keeps popping-up this message to your end-users. Page 8

9 In the past, some CAS (Certificate Authorities) would allow you to purchase UCC certificates that could secure the local CAS domain instance as well, but because of the new referendum that no longer allow for internal domains to be trusted in a certificate purchased from a CA after November 1, 2015, CAS have already been implementing policies to eliminate this, which means even today in most cases you cannot purchase a certificate to trust an internal domain, which is leading to more and more problems with this internal pop-up message from Outlook as depicted above. Here are some links which talk about the new CA referendum: DigiCert on SSL Certificates Go Daddy on Multi-domain Certificates Page 9

10 Thankfully there is a way to adjust/fix this internally on your Exchange 2010/2013 Hybrid server so that this is no longer an issue. Essentially, you are going to adjust the internal FQDN to reflect the external, publicly facing FQDN for which you do indeed have an SSL/UCC certificate. To fix this problem, you need to use the Exchange Management Shell (EMS) on the Exchange 2010/2013 server. For this example, we will assume that internal FQDN is: cas.mycompany.local, and that the public FQDN is pubcas.mydomain.com. The commands are: Set-ClientAccessServer Identity cas AutodiscoverServiceInternalUri m/autodiscover/autodiscover.xml Set-WebServicesVirtualDirectory Identity EWS (Default Web Site) InternalUrl mx Set-OABVirtualDirectory Identity oab (Default Web Site) InternalUrl If you are utilizing the Unified Messaging Service (UMS), you will also need to input the following: Set-UMVirtualDirectory Identity unifiedmessaging (Default Web Site) InternalUrl /service.asmx Page 10

11 CHAPTER 3: Purging and Removing Deleted Users From Mailboxes from O365 In this chapter, we will review how to purge/remove deleted users/mailboxes from Office 365 without having to wait for Microsoft s default 30-day window to ultimately, completely eradicate the account. This is especially useful if there is a mistake or typo found with a particular user (for example their Display Name) yet they need to use the same UPN for the new and adjusted account. When you delete the user in question, they will be moved to the Deleted Users section within the Office 365 portal. It is at this point you are at the mercy of waiting that 30 days (1 whole month), for that thing to finally be gotten rid of. Page 11

12 The problem is, if you don t purge this account, and you attempt to create the new user with the adjusted settings and the same UPN or primary SMTP address, you will get an error citing that there is already an object with this same information, thus the operation cannot be completed. This is one of those cases, where waiting for the 30-day window for Microsoft to purge your deleted users and mailboxes simply is not sufficient. Our 365Command development team will have the GUI built for this process soon, but in the meantime the cmdlet s that you need to fix this are below: Purge Deleted Users and Mailboxes from Office 365 Single-User Deletion: In order to permanently purge a single-user from the Deleted users section, execute the following: Remove-MsolUser UserPrincipalName [email protected] Get-MsolUser -ReturnDeletedUsers Remove-MsolUser RemoveFromRecycleBin Force This will work with BOTH DirSync d and non-dirsynched (Users created directly in the Office 365 tenant). Page 12

13 Bulk User Deletion: If you have multiple users that need to be purged, you can then execute the command below: Get-MsolUser -MaxResults 30 -ReturnDeletedUsers Remove- MsolUser RemoveFromRecycleBin Force NOTE: The MaxResults parameter is variable, and you can choose a different number other than 30. This particular command will purge the first 30 deleted users that the command encounters. You can adjust this lower or higher. Keep in mind that the higher that you make the number, the longer it will take to run as it is trying to purge/accumulate a larger number of accounts to purge. Purge External Contacts: A similar command can be run to purge deleted contacts as well, in case you need to quickly recreate them Get-MSOLcontact SearchString gary FL DisplayName, Address, ObjectID Remove-MSOLContact ObjectID ObjectID Where gary is part of the Display Name for the contact in question. Page 13

14 CHAPTER 4: Windows XP and Office 365 In this chapter, we will go over using Windows XP with Office 365, especially the new version of Office 365 (Wave 15). For those of you who are moving to Office 365 or are in the process of migrating to Office 365 and still have some legacy workstations on Windows XP, this information will be important to you. Page 14

15 Windows XP End-of-Life If your organization does still have Windows XP workstations, it is time to either upgrade or retire them. Microsoft will no longer support Windows XP as of April Below is an official link from Microsoft that discusses this: With regard to Office 365, Windows XP support will end on January 1, Here is a link that discusses this as well: office365-enterprises/ff aspx This means, that you have less than eight months to retire and/or upgrade these systems before support is no longer available for them. Page 15

16 Windows XP requirements for Office 365 integration: If you can t get rid of Windows XP just yet, and have no choice but to get these workstations working with Office 365, there are some things that you need know in order to get these workstations to properly connect with the service and working properly. The two items below are essential: 1. Make sure that the version of Microsoft Outlook on the XP machines are as shown below or higher: Outlook 2007: or higher (this encompasses SP3 plus other Microsoft Office/Outlook updates) Outlook 2010: or higher 2. Have we applied the November 2012 Public Update (or later) to all of their Outlook clients? If these 2 requirements are not met, your Windows XP machines will experience problems with connecting to and working with Office 365 Wave 15. Page 16

17 Something else that is critical, is to make sure that your Windows XP machines have the latest version of Microsoft Update installed (the MSI Installer), if your XP machines are still using the old Windows Update ActiveX control, it will prevent those machines from finding the additional updates needed for Windows and Office/Outlook. Thus, your machines will seemingly be up-to-date with their patches and updates, but in fact they will not and connection problems to Office 365 will still persist. If you are currently experiencing these issues on your XP workstations, once Microsoft Update gets installed/updated, your machines will find the updates needed to get Outlook, and perhaps Windows XP itself, up to the proper version and thus alleviating any connectivity problems with Office 365. Page 17

18 TECH TIPS BY MESSAGEOPS POWERED BY: If you re interested in improving your Office 365, register for a free trial and see how Command 365 can help you take control of your business!

Hybrid Architecture. Office 365. On-premises Exchange org (Exchange 2007+) Provisioned via DirSync. Secure Mail flow

Hybrid Architecture. Office 365. On-premises Exchange org (Exchange 2007+) Provisioned via DirSync. Secure Mail flow Hybrid Deployment Hybrid Architecture Provisioned via DirSync Exchange 2010 (HUB/CAS) Exchange 2013 CAS & MBX Secure Mail flow Exchange Federation (Free/Busy, Mail Tips, Archive, etc.) Mailbox data via

More information

How to Request and Configure Exchange Server 2013 Certificate

How to Request and Configure Exchange Server 2013 Certificate How to Request and Configure Exchange Server 2013 Certificate Login into Exchange Admin Center (EAC) and click on Servers > Click on Certificate and then click on + sign. Click on Next Mention the friendly

More information

Extend your Exchange On Premises Organization to the Cloud

Extend your Exchange On Premises Organization to the Cloud Phoenix Cloud Intelligence 2012 Extend your Exchange On Premises Organization to the Cloud Mike Pfeiffer Technical Director Interface Technical Training What is Office 365? Bringing together cloud versions

More information

Navigate your checklist... 3. Before you begin with Exchange 2007... 4. Sign up for Office 365... 11

Navigate your checklist... 3. Before you begin with Exchange 2007... 4. Sign up for Office 365... 11 Contents Navigate your checklist... 3 Before you begin with Exchange 2007... 4 Sign up for Office 365... 11 Verify coexistence prerequisites when deploying AD FS with Exchange 2007... 11 Collect needed

More information

Load Balancing Exchange 2010 Client Access Servers using an Hardware Load Balancer Solution

Load Balancing Exchange 2010 Client Access Servers using an Hardware Load Balancer Solution Load Balancing Exchange 2010 Client Access Servers using an Hardware Load Balancer Solution Introduction With Exchange 2010, Outlook MAPI clients use the Client Access Server (CAS) role in the middle tier

More information

Mod 3: Office 365 DirSync, Single Sign-On & ADFS

Mod 3: Office 365 DirSync, Single Sign-On & ADFS Office 365 for SMB Jump Start Mod 3: Office 365 DirSync, Single Sign-On & ADFS Chris Oakman Managing Partner Infrastructure Team Eastridge Technology Stephen Hall CEO & SMB Technologist District Computers

More information

The next page is the really clever bit! Here you run through a series of options about

The next page is the really clever bit! Here you run through a series of options about Page 1 of 8 Welcome to MM&M UG UK Sign in Join Help Nathan's Exchange Blog Hi, This blog will be almost entirely Exchange and Mobility focused. I hope to provide regular content which will range from longer

More information

Exchange mailbox users can access their email from anywhere using the Outlook Web Access

Exchange mailbox users can access their email from anywhere using the Outlook Web Access EXCHANGE EMAIL CONFIGURATION Outlook Web Access and Outlook Anywhere Outlook Web Access Exchange mailbox users can access their email from anywhere using the Outlook Web Access (OWA) facility. This may

More information

Create user mailboxes

Create user mailboxes Create user mailboxes 5 out of 21 rated this helpful Applies to: Exchange Server 2013, Exchange Online Topic Last Modified: 2013-04-12 Mailboxes are the most common recipient type used by information workers

More information

WHITE PAPER BT Sync, the alternative for DirSync during Migrations

WHITE PAPER BT Sync, the alternative for DirSync during Migrations WHITE PAPER BT Sync, the alternative for DirSync during Migrations INTRODUCTION When you have a migration from Exchange on Premises, you definitely have an Active Directory set up. It is a logical decision

More information

Erado Archiving & Setup Instruction Microsoft Exchange 2007 Push Journaling

Erado Archiving & Setup Instruction Microsoft Exchange 2007 Push Journaling Erado Archiving & Setup Instruction Microsoft Exchange 2007 Push Journaling This document covers the following Microsoft Exchange Server Editions Microsoft Exchange Enterprise Edition 2007 Microsoft Exchange

More information

Journaling Guide for Email Archive for Exchange 2007

Journaling Guide for Email Archive for Exchange 2007 Journaling Guide for Email Archive for Exchange 2007 (C) 2010 Websense, Inc. All Rights Reserved. Thank you for choosing Email Archive. This Journaling Guide provides information you need to set up the

More information

MICROSOFT ACTIVE DIRECTORY SYNCHRONIZATION, ADFS, AND EXCHANGE HYBRID

MICROSOFT ACTIVE DIRECTORY SYNCHRONIZATION, ADFS, AND EXCHANGE HYBRID MICROSOFT ACTIVE DIRECTORY SYNCHRONIZATION, ADFS, AND EXCHANGE HYBRID TABLE OF CONTENTS: How to Use Microsoft Active Directory Synchronization for Office 365 More Effectively 3 Exchange Hybrid/Coexistence

More information

Attention: This is an old version of the GALsync Upgrade Instructions, which was published for GALsync 5.1.

Attention: This is an old version of the GALsync Upgrade Instructions, which was published for GALsync 5.1. Attention: This is an old version of the GALsync Upgrade Instructions, which was published for GALsync 5.1. The current documentation for GALsync is available for download here: http://www.netsec.de/en/products/galsync/documentation.html

More information

Converting Prospects to Purchasers.

Converting Prospects to Purchasers. CONFIGURE MICROSOFT OFFICE 365 AND MICROSOFT EXCHANGE TO CAPTURE LASSO EMAIL The following instructions are for clients who wish to configure Microsoft Office 365 or Microsoft Exchange to record email

More information

Workshop purpose and objective

Workshop purpose and objective Messaging Workshop purpose and objective Workshop purpose Facilitate planning discussions for messaging coexistence Considerations of Office 365 limits and features Objectives Identify Microsoft Office

More information

Before you begin with an Exchange 2010 hybrid deployment... 3. Sign up for Office 365 for an Exchange 2010 hybrid deployment... 10

Before you begin with an Exchange 2010 hybrid deployment... 3. Sign up for Office 365 for an Exchange 2010 hybrid deployment... 10 Contents Before you begin with an Exchange 2010 hybrid deployment... 3 Sign up for Office 365 for an Exchange 2010 hybrid deployment... 10 Verify prerequisites with an Exchange 2010 hybrid deployment...

More information

Exchange Server Hybrid Deployment for Exchange Online Dedicated

Exchange Server Hybrid Deployment for Exchange Online Dedicated Dedicated and ITAR-support Plans Hybrid Deployment for Exchange Online Dedicated Applies to: Office 365 Dedicated - Legacy 2013 Platform Release Topic Last Modified: 31-Jan-2013 Topic Last Modified: 31-Jan-2013

More information

Before you begin with an Exchange 2010 hybrid deployment... 3. Sign up for Office 365 for an Exchange 2010 hybrid deployment... 10

Before you begin with an Exchange 2010 hybrid deployment... 3. Sign up for Office 365 for an Exchange 2010 hybrid deployment... 10 Contents Before you begin with an Exchange 2010 hybrid deployment... 3 Sign up for Office 365 for an Exchange 2010 hybrid deployment... 10 Verify prerequisites with an Exchange 2010 hybrid deployment...

More information

Deploying and Managing Microsoft Exchange Server 2013

Deploying and Managing Microsoft Exchange Server 2013 Deploying and Managing Microsoft Exchange Server 2013 Module Overview 1. Exchange Server 2013 Prerequisites and Requirements 2. Exchange Server 2013 Deployment 3. Managing Exchange Server 2013 1. Exchange

More information

Load Balancing Exchange 2007 Client Access Servers using Windows Network Load- Balancing Technology

Load Balancing Exchange 2007 Client Access Servers using Windows Network Load- Balancing Technology Load Balancing Exchange 2007 Client Access Servers using Windows Network Load- Balancing Technology In this article I will show you how you can load-balance Exchange 2007 Client Access Servers (CAS) using

More information

Cloud. Hosted Exchange Administration Manual

Cloud. Hosted Exchange Administration Manual Cloud Hosted Exchange Administration Manual Table of Contents Table of Contents... 1 Table of Figures... 4 1 Preface... 6 2 Telesystem Hosted Exchange Administrative Portal... 7 3 Hosted Exchange Service...

More information

MOC 5047B: Intro to Installing & Managing Microsoft Exchange Server 2007 SP1

MOC 5047B: Intro to Installing & Managing Microsoft Exchange Server 2007 SP1 MOC 5047B: Intro to Installing & Managing Microsoft Exchange Server 2007 SP1 Course Number: 5047B Course Length: 3 Days Certification Exam This course will help you prepare for the following Microsoft

More information

Email Client configuration and migration Guide Setting up Thunderbird 3.1

Email Client configuration and migration Guide Setting up Thunderbird 3.1 Email Client configuration and migration Guide Setting up Thunderbird 3.1 1. Open Mozilla Thunderbird. : 1. On the Edit menu, click Account Settings. 2. On the Account Settings page, under Account Actions,

More information

SAML based Single Sign-on integration for:

SAML based Single Sign-on integration for: SAML based Single Sign-on integration for: WiActs Inc. 2015. All rights are reserved. Use of this document is subject to the terms and conditions of WiActs products. 1 1. On the WiActs Admin Dashboard,

More information

How to configure Incoming Email Enabled Libraries in MOSS2007 RTM using Exchange 2007 in an Active Directory Domain.

How to configure Incoming Email Enabled Libraries in MOSS2007 RTM using Exchange 2007 in an Active Directory Domain. How to configure Incoming Email Enabled Libraries in MOSS2007 RTM using Exchange 2007 in an Active Directory Domain. By Steve Smith, MVP SharePoint Portal Server, MCT Combined Knowledge www.combined-knowledge.com

More information

E2E Complete 3.6.1. Known Limitations

E2E Complete 3.6.1. Known Limitations E2E Complete 3.6.1 Known Limitations September 2015 Table of Contents Known Limitations 3.6.1... 3 Admin Portal... 3 Admin Portal\Blackout... 3 Admin Portal\Mailboxes... 3 Admin Portal\Mailboxes\Add to

More information

NYSeMail Office 365 Administration Guide for Agencies

NYSeMail Office 365 Administration Guide for Agencies NYSeMail Office 365 Administration Guide for Agencies Office 365 Overview... 34 What is included... 34 Software Requirements... 34 Message Limits... 34 Provisioning... 34 Archive and Retention Policy...

More information

Deploying the Barracuda Load Balancer with Microsoft Exchange Server 2010 Version 2.6. Introduction. Table of Contents

Deploying the Barracuda Load Balancer with Microsoft Exchange Server 2010 Version 2.6. Introduction. Table of Contents Deploying the Barracuda Load Balancer with Microsoft Exchange Server 2010 Version 2.6 Introduction Organizations use the Barracuda Load Balancer to distribute the load and increase the availability of

More information

Business Email. Setup guide

Business Email. Setup guide Business Email Setup guide Contents Introduction 3 Provisioning Business Email Service to a User Logging into the UC Management Centre Adding Business Email Service to a User Configuring Advanced Options

More information

Microsoft MCITP 70-662 Exam

Microsoft MCITP 70-662 Exam Microsoft MCITP 70-662 Exam Vendor:Microsoft Exam Code: 70-662 Exam Name: TS: Microsoft Exchange Server 2010, Configuring QUESTION 1 You have an Exchange Server 2010 Service Pack 1 (SP1) organization.

More information

How To Send E Mail From An Exchange 2007 To A Domain Name Address Book On A Domain Address Book (For A Domain) On A Pc Or Mac Xp (For An Ipod) On An Ipo (For Windows 2007) On Your Ip

How To Send E Mail From An Exchange 2007 To A Domain Name Address Book On A Domain Address Book (For A Domain) On A Pc Or Mac Xp (For An Ipod) On An Ipo (For Windows 2007) On Your Ip Lotus Domino Server and Exchange 2007 Server SMTP Routing using Smart Hosts Supplemental - Version 1.1, Dated June 2, 2009 Contents Purpose... 4 Current Lotus Domino Environment... 5 Sample Outbound Message

More information

MailEnable Connector for Microsoft Outlook

MailEnable Connector for Microsoft Outlook MailEnable Connector for Microsoft Outlook Version 2.23 This guide describes the installation and functionality of the MailEnable Connector for Microsoft Outlook. Features The MailEnable Connector for

More information

Office 365 from the ground to the cloud

Office 365 from the ground to the cloud Office 365 from the ground to the cloud Webinar 8 Preparing for Exam 74-325 July 2014 The Series The Basics Building Your Office 365 Practice Cross-Selling and Upselling Opportunities Microsoft Azure and

More information

Outlook Connector Installation & Configuration groupwaresolution.net Hosted MS Exchange Alternative On Linux

Outlook Connector Installation & Configuration groupwaresolution.net Hosted MS Exchange Alternative On Linux Outlook Connector Installation & Configuration groupwaresolution.net Hosted MS Exchange Alternative On Linux Page 1 of 5 DOWNLOAD Please download the connector installer msi file and save it to your computer.

More information

Data Ingestion into Office 365

Data Ingestion into Office 365 Data Ingestion into Office 365 Data ingestion sounds like something you need to go to the doctor for because over the counter stuff just isn t helping enough. The fact is that while some start-up greenfield

More information

NTWEEKLY.COM - Exchange Server Cmdlets Shell Guide V1.0

NTWEEKLY.COM - Exchange Server Cmdlets Shell Guide V1.0 Contents Introduction... 2 Notes... 2 Server Commands... 2 Recipients Commands... 3 Mailbox Server... 4 Distribution Lists... 5 Auto Discovery... 5 Inter Org Connector between Exchange 2003 2010... 5 DAG...

More information

Field Description Example. IP address of your DNS server. It is used to resolve fully qualified domain names

Field Description Example. IP address of your DNS server. It is used to resolve fully qualified domain names DataCove DT Active Directory Authentication In Active Directory (AD) authentication mode, the server uses NTLM v2 and LDAP protocols to authenticate users residing in Active Directory. The login procedure

More information

How To Migrate From 2003 To 2010 On An Exchange 2003 Server 2003 (For A Large Organization)

How To Migrate From 2003 To 2010 On An Exchange 2003 Server 2003 (For A Large Organization) Copyright 2010 LockLAN Systems Pty Ltd The right of LockLAN Systems Pty Ltd to be identified as author and copyright owner of this work is asserted by LockLAN Systems Pty Ltd in accordance with Australian

More information

Multi-Tenant Scalability Guidance for Exchange Server 2010 Service Pack 2

Multi-Tenant Scalability Guidance for Exchange Server 2010 Service Pack 2 Multi-Tenant Scalability Guidance for Exchange Server 2010 Service Pack 2 Customer Advisory Team Exchange Product Group Microsoft Corporation December 2011 Contents Introduction... 3 Scalability Guidance...

More information

How to Migrate to MailEnable using the Migration Console

How to Migrate to MailEnable using the Migration Console How to Migrate to MailEnable using the Migration Console Contents 1. OVERVIEW... 2 2. MAILENABLE MIGRATION CONSOLE... 2 3. SELECT THE MIGRATION APPROACH... 2 Server Migration... 2 Domain Migration... 3

More information

Managing Recipients in Exchange 2007

Managing Recipients in Exchange 2007 Chapter 3 Managing Recipients in Exchange 2007 Solutions in this chapter: Managing Recipients Using the Exchange 2007 Management Console Managing Recipients in a Coexistence Environment Granting Access

More information

Lesson Plans Configuring Exchange Server 2007

Lesson Plans Configuring Exchange Server 2007 Lesson Plans Configuring Exchange Server 2007 (Exam 70-236) Version 2.1 Table of Contents Course Overview... 2 Section 1.1: Server-based Messaging... 4 Section 1.2: Exchange Versions... 5 Section 1.3:

More information

Avatier Identity Management Suite

Avatier Identity Management Suite Avatier Identity Management Suite Integrating Exchange 2007 With Identity Enforcer Version 9 2603 Camino Ramon Suite 110 San Ramon, CA 94583 Phone: 800-609-8610 925-217-5170 FAX: 925-217-0853 Email: [email protected]

More information

Apple Mail Exchange Configuration. Microsoft Exchange 2007 and Mac OS X 10.6 Snow Leopard. MailStreet Live Support: 866-461-0851

Apple Mail Exchange Configuration. Microsoft Exchange 2007 and Mac OS X 10.6 Snow Leopard. MailStreet Live Support: 866-461-0851 Apple Mail Exchange Configuration Microsoft Exchange 2007 and Mac OS X 10.6 Snow Leopard MailStreet Live Support: 866-461-0851 Apple Mail is a licensed product of Apple, Inc. MailStreet makes no claims,

More information

Information Technology Services. Your mailbox is moving to the cloud. Here is what to expect.

Information Technology Services. Your mailbox is moving to the cloud. Here is what to expect. Your mailbox is moving to the cloud. Here is what to expect. Table of Contents Information for Outlook Web App users:... 2 Information for Office 2007 and 2010 Professional users:... 2 Information for

More information

Resonate Central Dispatch

Resonate Central Dispatch Resonate Central Dispatch Microsoft Exchange 2010 Resonate, Inc. Tel. + 1.408.545.5535 Fax + 1.408.545.5502 www.resonate.com Copyright 2013 Resonate, Inc. All rights reserved. Resonate Incorporated and

More information

Installation Manual UC for Business Unified Messaging for Exchange 2010

Installation Manual UC for Business Unified Messaging for Exchange 2010 Installation Manual UC for Business Unified Messaging for Exchange 2010 NEC Corporation nec.com Unified Messaging for Exchange Installation Manual - Exchange 2010 Edition Table of Contents About this Manual...

More information

Configuring Outlook 2002-2003 for IMAP. Creating a New IMAP Account. Modify an Existing Account

Configuring Outlook 2002-2003 for IMAP. Creating a New IMAP Account. Modify an Existing Account mai l. uml. edu mai l. uml. edu Configuring Outlook 2002-2003 for IMAP This document will show you how to setup or modify Outlook 2003 as an IMAP client. It is intended for Faculty and Staff whose mailboxes

More information

Microsoft Premier Deployment. Office 365 Service Description

Microsoft Premier Deployment. Office 365 Service Description Microsoft Premier Deployment Office 365 Service The information contained in this document represents the current view of Microsoft Corporation on the issues discussed as of the date of publication and

More information

Migration guide. Business Email

Migration guide. Business Email Migration guide Business Email June 2013 Contents Introduction 3 Administrator Migration What You Need to Get Started 1. Importing PST Files 2. Exporting PST Files 3 3 4 5 End User Migration Using Outlook

More information

Configuring your email client to connect to your Exchange mailbox

Configuring your email client to connect to your Exchange mailbox Configuring your email client to connect to your Exchange mailbox Contents Use Outlook Web Access (OWA) to access your Exchange mailbox... 2 Use Outlook 2003 to connect to your Exchange mailbox... 3 Add

More information

Helping Users Sync Contacts and Events with Exchange Sync (Beta)

Helping Users Sync Contacts and Events with Exchange Sync (Beta) Helping Users Sync Contacts and Events with Exchange Sync (Beta) Salesforce, Spring 15 @salesforcedocs Last updated: February 27, 2015 Copyright 2000 2015 salesforce.com, inc. All rights reserved. Salesforce

More information

Migrating from MyYSU Mail to Office 365 Microsoft Outlook 2010

Migrating from MyYSU Mail to Office 365 Microsoft Outlook 2010 Migrating from MyYSU Mail to Office 365 Microsoft Outlook 2010 Required Items: Microsoft Outlook 2010, MyYSU e-mail account This guide will assist you with configuring the Microsoft Outlook 2010 email

More information

Microsoft Office 365 how to make a booking for meeting rooms and resource calendars

Microsoft Office 365 how to make a booking for meeting rooms and resource calendars Microsoft Office 365 how to make a booking for meeting rooms and resource calendars 1 Contents Purpose... 3 Document Support Boundaries... 3 Meeting Rooms what has changed?... 4 How to get access to make

More information

MICROSOFT 70-346 EXAM QUESTIONS & ANSWERS

MICROSOFT 70-346 EXAM QUESTIONS & ANSWERS MICROSOFT 70-346 EXAM QUESTIONS & ANSWERS Number: 70-346 Passing Score: 800 Time Limit: 120 min File Version: 58.5 http://www.gratisexam.com/ MICROSOFT 70-346 EXAM QUESTIONS & ANSWERS Exam Name:Managing

More information

Migrating Exchange Server to Office 365

Migrating Exchange Server to Office 365 Migrating Exchange Server to Office 365 By: Brien M. Posey CONTENTS Domain Verification... 3 IMAP Migration... 4 Cut Over and Staged Migration Prep Work... 5 Cut Over Migrations... 6 Staged Migration...

More information

Hosted Exchange 2010

Hosted Exchange 2010 Hosted Exchange 2010 Introduction The purpose of this Startup Guide is to familiarize you with ExchangeDefender's Exchange and SharePoint Hosting. ExchangeDefender provides enterprise grade Exchange 2010

More information

Mahmoud Magdy Microsoft MVP Exchange server Tech Lead Ingazat Information Technology. Mohamed Fawzi Senior Infrastructure Consultant Link Development

Mahmoud Magdy Microsoft MVP Exchange server Tech Lead Ingazat Information Technology. Mohamed Fawzi Senior Infrastructure Consultant Link Development Upgrading from Microsoft Exchange Server 2003/2007 to Exchange Server 2010: Tips, Tricks, and Lessons Learned Mahmoud Magdy Microsoft MVP Exchange server Tech Lead Ingazat Information Technology Mohamed

More information

Dell Client Profile Updating Utility 5.5.6

Dell Client Profile Updating Utility 5.5.6 Complete Product Name with Trademarks Version Dell 5.5.6 April 21, 2015 These release notes provide information about the Dell release. Welcome to What's New Known issues Upgrade and Compatibility System

More information

Coveo Platform 7.0. Microsoft Exchange Connector Guide

Coveo Platform 7.0. Microsoft Exchange Connector Guide Coveo Platform 7.0 Microsoft Exchange Connector Guide Notice The content in this document represents the current view of Coveo as of the date of publication. Because Coveo continually responds to changing

More information

Vodafone Email Plus. User Guide for Windows Mobile

Vodafone Email Plus. User Guide for Windows Mobile Vodafone Email Plus User Guide for Windows Mobile 1 Table of Contents 1 INTRODUCTION... 4 2 INSTALLING VODAFONE EMAIL PLUS... 4 2.1 SETUP BY USING THE VODAFONE EMAIL PLUS ICON...5 2.2 SETUP BY DOWNLOADING

More information

Microsoft. Exchange 2013. Referent: Daniel Glomb System Architect

Microsoft. Exchange 2013. Referent: Daniel Glomb System Architect Microsoft Exchange 2013 Referent: Daniel Glomb System Architect Agenda What s new Architecture Client Access Server Mailbox Server Migration Outlook 2013 / OWA What s new in Exchange 2013 Exchange Administration

More information

Erado Archiving & Setup Instruction Microsoft Exchange 2010 Push Journaling

Erado Archiving & Setup Instruction Microsoft Exchange 2010 Push Journaling Erado Archiving & Setup Instruction Microsoft Exchange 2010 Push Journaling Contents: Step 1: Create Mail Contact Step 2: Create a Local Journal Mailbox Step 3: Create an SMTP send connector Step 4: Create

More information

Using Avaya Aura Messaging

Using Avaya Aura Messaging Using Avaya Aura Messaging Release 6.3.2 Issue 1 December 2014 Contents Chapter 1: Getting Started... 4 Messaging overview... 4 Prerequisites... 4 Accessing your mailbox from any phone... 4 Accessing the

More information

Avatier Identity Management Suite

Avatier Identity Management Suite Avatier Identity Management Suite Integrating Exchange 2010 With Identity Enforcer Version 9 2603 Camino Ramon Suite 110 San Ramon, CA 94583 Phone: 800-609-8610 925-217-5170 FAX: 925-217-0853 Email: [email protected]

More information

Mobile Device Management in a BYOD World. Jay Cotton Microsoft PFE

Mobile Device Management in a BYOD World. Jay Cotton Microsoft PFE Mobile Device Management in a BYOD World Jay Cotton Microsoft PFE Mobile Device Management in a BYOD World Agenda It s a BYOD World What can I do to maintain control? How do these devices connect to Exchange?

More information

Cisco TelePresence Management Suite Extension for Microsoft Exchange

Cisco TelePresence Management Suite Extension for Microsoft Exchange Cisco TelePresence Management Suite Extension for Microsoft Exchange Installation Guide Version 3.0 D14890 04 September 2012 Contents Introduction 5 Requirements 6 System requirements for Cisco TMSXE 6

More information

Exchange Mailbox Protection Whitepaper

Exchange Mailbox Protection Whitepaper Exchange Mailbox Protection Contents 1. Introduction... 2 Documentation... 2 Licensing... 2 Exchange add-on comparison... 2 Advantages and disadvantages of the different PST formats... 3 2. How Exchange

More information

MICROSOFT EXCHANGE, OFFERED BY INTERCALL

MICROSOFT EXCHANGE, OFFERED BY INTERCALL MICROSOFT EXCHANGE, OFFERED BY INTERCALL Comparison Sheet The table below compares in-product or service feature availability between Microsoft 2013 on-premises and Online within. Planning and Deployment

More information

migrating from hosted Exchange service to inhouse Exchange solution

migrating from hosted Exchange service to inhouse Exchange solution TROY MCKEE migrating from hosted Exchange service to inhouse Exchange solution Troy McKee is an IT manager with an eclectic range of experience, from geology and engineering to the games industry and software

More information

SyncLockStatus Evaluator s Guide

SyncLockStatus Evaluator s Guide SyncLockStatus Evaluator s Guide 2011 Table of Contents Introduction... 2 System Requirements... 2 Required Microsoft Components... 2 Contact Information... 3 SyncLockStatus Architecture... 3 SyncLockStatus

More information

GSX for Exchange. When End User performance... Matters! GSX Solutions 2015

GSX for Exchange. When End User performance... Matters! GSX Solutions 2015 GSX for Exchange When End User performance...... Matters! 1 About GSX Solutions Founded 1996, Headquartered in Switzerland Offices in USA, UK, France, Switzerland, China 6 millions mailboxes monitored

More information

CISNTWK-492e. Microsoft Exchange Server 2003 Administration. Chapter Five Managing Addresses

CISNTWK-492e. Microsoft Exchange Server 2003 Administration. Chapter Five Managing Addresses CISNTWK-492e Microsoft Exchange Server 2003 Administration Chapter Five Managing Addresses 1 Objectives Understand and create the different types of address lists that are used within Exchange Server 2003

More information

New York Exchange User Group: Upgrade to Exchange Server 2013

New York Exchange User Group: Upgrade to Exchange Server 2013 New York User Group: Upgrade to Server 2013 Shashwat Mohapatra and Jay Cotton Microsoft Premier Field Engineers Conditions and Terms of Use Microsoft Confidential This training package is proprietary and

More information

Using Exclaimer Signature Manager with Office 365

Using Exclaimer Signature Manager with Office 365 Using Exclaimer Signature Manager with Office 365 www.exclaimer.com How does Signature Manager Work? Signature Manager takes an email signature template and fills it out for a specific individual using

More information

ConnectMail Mobile Email Configuration

ConnectMail Mobile Email Configuration ConnectMail Mobile Email Configuration Introduction/Utility ConnectMail allows you to use your mobile phone to access information in your account. This includes e mail messages, calendar, and contacts.

More information

Email: [email protected] Toll Free: 1-866-716-2040 International: 1-646-506-9354

Email: support@apps4rent.com Toll Free: 1-866-716-2040 International: 1-646-506-9354 1. Check your Welcome e-mail for login credentials for the control panel. 2. Using the login details in the welcome e-mail; login at https://cp.hostallapps.com Adding Domain: 1. On the Home Page of the

More information

EJBCA with GemSAFE Toolbox Part2 Sign. and Encrypt Email

EJBCA with GemSAFE Toolbox Part2 Sign. and Encrypt Email EJBCA with GemSAFE Toolbox Part2 Sign and Encrypt Email 2 Introduction This document introduces the process of using EJBCA together with GemSAFE toolbox to encrypt and sign email. In short, there are 4

More information

Hosted Exchange Setup Instructions

Hosted Exchange Setup Instructions 1Earthlink Business Hosted Exchange Instructions Hosted Exchange Setup Instructions Rev. 5.5, November 4, 2011 Hosted Exchange Basic and ActiveSync..pgs 2-8 Blackberry Hosted Exchange...pgs 8-11 Hosted

More information

Office 365 deployment checklists

Office 365 deployment checklists Chapter 128 Office 365 deployment checklists This document provides some checklists to help you make sure that you install and configure your Office 365 deployment correctly and with a minimum of issues.

More information

Working with Mail (Hosted Exchange)

Working with Mail (Hosted Exchange) TM Control Panel User Guide Working with Mail (Hosted Exchange) 1 Working with Mail (Hosted Exchange) TM offers Microsoft Exchange hosting as a powerful messaging solution allowing you to create and manage

More information

ALOHA Load-Balancer. Microsoft Exchange 2010 deployment guide. Document version: v1.4. ALOHA version concerned: v4.2 and above

ALOHA Load-Balancer. Microsoft Exchange 2010 deployment guide. Document version: v1.4. ALOHA version concerned: v4.2 and above ALOHA Load-Balancer Microsoft Exchange 2010 deployment guide Document version: v1.4 ALOHA version concerned: Microsoft Exchange Server: v4.2 and above 2010 RTM, SP1, SP2, SP3 Last update date: November

More information

Documentation. OpenScape Office V3 OpenScape Office MX V2 Linking to MS Exchange Server 2010

Documentation. OpenScape Office V3 OpenScape Office MX V2 Linking to MS Exchange Server 2010 Documentation OpenScape Office V3 OpenScape Office MX V2 Linking to MS Exchange Server 2010 The following steps describe how to connect an OpenScape Office MX V2 or MX/LX V3 system to a Microsoft Exchange

More information

Office 365 deploym. ployment checklists. Chapter 27

Office 365 deploym. ployment checklists. Chapter 27 Chapter 27 Office 365 deploym ployment checklists This document provides some checklists to help you make sure that you install and configure your Office 365 deployment correctly and with a minimum of

More information

Dell Migration Manager for Exchange 8.11. User Guide

Dell Migration Manager for Exchange 8.11. User Guide Dell Migration Manager for Exchange 8.11 2015 Dell Inc. ALL RIGHTS RESERVED. This guide contains proprietary information protected by copyright. The software described in this guide is furnished under

More information

Digital certificates and SSL

Digital certificates and SSL Digital certificates and SSL 20 out of 33 rated this helpful Applies to: Exchange Server 2013 Topic Last Modified: 2013-08-26 Secure Sockets Layer (SSL) is a method for securing communications between

More information

Attix5 Pro Plug-ins. V6.2 User Manual. Cover. for Microsoft Windows. Your guide to installing and using Attix5 Pro plug-ins. Last updated: 2011/10

Attix5 Pro Plug-ins. V6.2 User Manual. Cover. for Microsoft Windows. Your guide to installing and using Attix5 Pro plug-ins. Last updated: 2011/10 Attix5 Pro Plug-ins V6.2 User Manual Cover for Microsoft Windows Your guide to installing and using Attix5 Pro plug-ins. Last updated: 2011/10 SERVER EDITION V6.0 for MICROSOFT WINDOWS Copyright Notice

More information

Evoko Room Manager. System Administrator s Guide and Manual

Evoko Room Manager. System Administrator s Guide and Manual Evoko Room Manager System Administrator s Guide and Manual 1 1. Contents 1. Contents... 2 2. Read this first! Introduction to this Guide... 6 3. User Guide... 6 4. System Architecture Overview... 8 ----

More information

A Transend Corporation White Paper Preparing Microsoft Exchange Server for Migration

A Transend Corporation White Paper Preparing Microsoft Exchange Server for Migration A Transend Corporation White Paper Preparing Microsoft Exchange Server for Migration Copyright December 2012 by Transend Corporation Table of Contents Section 1: Introduction... 1 Section 2: Basic Requirements...

More information

GSX Monitor & Analyzer When end-users performance Matters! GSX Solutions 2014

GSX Monitor & Analyzer When end-users performance Matters! GSX Solutions 2014 GSX Monitor & Analyzer When end-users performance Matters! GSX Solutions 2014 1 About GSX Solutions! Founded 1996, Headquartered in Switzerland! Offices in USA, UK, France, Switzerland, China! Indirect

More information

Astaro Mail Archiving Getting Started Guide

Astaro Mail Archiving Getting Started Guide Connect With Confidence Astaro Mail Archiving Getting Started Guide About this Getting Started Guide The Astaro Mail Archiving Service is an archiving platform in the form of a fully hosted service. E-mails

More information

Office365 Packaged Consultancy

Office365 Packaged Consultancy Office365 Packaged Consultancy Parative have created a set of Office365 delivery packages that will suit pretty much any size of business. Office365 is a flexible cloud based product suite that will fit

More information