Resource Mailboxes in Exchange 2010

Size: px
Start display at page:

Download "Resource Mailboxes in Exchange 2010"

Transcription

1 Resource Mailboxes in Exchange 2010 Introduction Many organizations that I have come across that have implemented Exchange have found the need to create mailboxes that represent resources, such as conference rooms or equipment items such as whiteboards, projectors and so on. By creating such resources, users can then book them via the calendaring feature of Exchange in much the same way that they would book fellow attendees, thereby reserving the resource item for their use. In versions of Exchange prior to Exchange 2007, the overall resource mailbox process was not quite as smooth as it could be. For example, in Markus Klein s article on MSExchange.org, you will see that it was possible to use public folders for resources although this had one or two drawbacks such as a lack of free/busy information being presented in the calendar. If a mailbox was created for the resource, the main administration topic focused on who would monitor the resource bookings. For example, if two people booked the same meeting room, would the first person to request the room be granted the booking? Or would the most senior person be granted the booking? The Auto Accept Agent helped in this area as it was used to automatically process meeting request for resource mailboxes. With Exchange 2007 and Exchange 2010, a new approach to resources has been made. Exchange 2007 and Exchange 2010 support automatic booking of resource mailboxes, meaning that tools like the Auto Accept Agent are no longer required. Starting with Exchange 2007, resource mailboxes had, for the first time, specific Active Directory attributes that related to the use of resources, such as an attribute that specified the number of people that a meeting room could hold. This model is largely the same in Exchange 2010 and it is Exchange 2010 and Outlook 2010 that I am going to focus on in this article series. So let s get going and take a look at resource mailboxes in Exchange Creating Resource Mailboxes Creating resource mailboxes is very easy and can be done using either the Exchange Management Console or the Exchange Management Shell. In the Exchange Management Console, creating a resource mailbox is much the same process as creating a new user mailbox. When clicking the New Mailbox action in the action pane the administrator is presented with the screen shown in Figure 1, you can see the options to create either a room mailbox or an equipment mailbox.

2 Figure 1: Creating a Room or Equipment Mailbox One of the interesting things to note regarding resource mailboxes is that the associated Active Directory user account is automatically disabled as indicated by the text shown in Figure 1. For example, in Figure 2 it can be seen that a new room resource mailbox Active Directory user account is being created for Conference Room A. If you look closely at the user account icon in Figure 3, it can be seen that the associated Active Directory user account is automatically disabled once it has been created. This raises an interesting point if you pre-create an Active Directory account and then use the Exchange Management Console to mailbox-enable this Active Directory account with a resource mailbox. Remember to disable the Active Directory account that you pre-create, otherwise it will not show up in the Exchange Management Console as a valid account to mailbox-enable as a resource mailbox.

3 Figure 2: Creating the Associated Active Directory User Account Figure 3: Disabled Active Directory User Account

4 It is also possible to use the Exchange Management Shell to create a resource mailbox via the New-Mailbox cmdlet. For example, to create the room resource mailbox for Conference Room B via the Exchange Management Shell, the following command can be used: New-Mailbox -Name 'Conference Room B' -Alias 'ConfRoomB -UserPrincipalName 'ConfRoomB@neilhobson.com' -FirstName 'Conference' -LastName 'Room B' Room The results of running this command can be seen in Figure 4. Note that this command doesn t specify the name of the mailbox database in which to store the resource mailbox as the system has been allowed to choose a database at random. If it is a requirement to create this mailbox on a particular database, the Database parameter of the New-Mailbox cmdlet can be used. Additionally, this command also doesn t specify an organizational unit in which to store the user account so the default Users container will be used. If you need to specify a different organizational unit, then use the OrganizationalUnit parameter, an example of which is shown below: -OrganizationalUnit 'neilhobson.com/resource Mailboxes' Figure 4: Creating a Resource Mailbox via the Exchange Management Shell It can be seen from the New-Mailbox cmdlet shown above that the key parameter used to identify this mailbox as a resource mailbox is the Room parameter right at the end of the command. This obviously informs the system that the resource mailbox being created is a room rather than the other type of resource mailbox available, the equipment mailbox. To create a resource mailbox for equipment, the Equipment parameter is used rather than the Room parameter. For example, the following command can be used to create a resource mailbox for a projector that belongs in Conference Room B: New-Mailbox -Name 'Projector Room B' -Alias 'ProjRoomB' -UserPrincipalName 'ProjRoomB@neilhobson.com' -FirstName 'Projector' -LastName 'Room B' -Equipment If the list of mailboxes is now displayed in the Exchange Management Console, it can be seen that the room and equipment resource mailboxes have different icons and recipient type details as can be seen in Figure 5.

5 Figure 5: Room and Equipment Resource Mailboxes By using the Room and Equipment parameters of the New-Mailbox cmdlet, additional property tabs will be seen when bringing up the properties of a resource mailbox. Specifically, the Resource General, Resource Policy, Resource Information, Resource In-Policy Requests and Resource Out-of-Policy Requests tabs will be seen as shown in Figure 6.

6 Figure 6: The Resource Mailbox Tabs Here is a brief description of the purpose of each of these tabs. Note that we ll be looking deeper at these configuration elements as we go through this article series. Resource General - This tab allows you to configure resource custom properties as well as the resource capacity value. Additionally, it is on this tab that you configure whether you enable the Resource Booking Attendant for this mailbox or not. Resource Policy - The Resource Policy tab allows you to configure specific policies that apply to the resource mailbox, such as whether repeating meetings can be booked and the maximum duration of a meeting. Additionally, you can configure resource mailbox delegates from this tab. Resource Information - This tab controls the meeting information that is available in the resource mailbox s calendar, such as attachments, comments, subject and so on. It also allows for the configuration of additional text sent to the meeting organizer.

7 Resource In-Policy Requests - Here you can configure those users who are allowed to submit in-policy meeting requests, which can be either automatically approved or approved by a resource mailbox delegate. Resource Out-of-Policy Requests - This tab allows you to configure those users who are allowed to submit out-of-policy meeting requests which need to be approved by a resource mailbox delegate. Introduction Many organizations that I have come across that have implemented Exchange have found the need to create mailboxes that represent resources, such as conference rooms or equipment items such as whiteboards, projectors and so on. By creating such resources, users can then book them via the calendaring feature of Exchange in much the same way that they would book fellow attendees, thereby reserving the resource item for their use. In versions of Exchange prior to Exchange 2007, the overall resource mailbox process was not quite as smooth as it could be. For example, in Markus Klein s article here on MSExchange.org, you will see that it was possible to use public folders for resources although this had one or two drawbacks such as a lack of free/busy information being presented in the calendar. If a mailbox was created for the resource, the main administration topic focused on who would monitor the resource bookings. For example, if two people booked the same meeting room, would the first person to request the room be granted the booking? Or would the most senior person be granted the booking? The Auto Accept Agent helped in this area as it was used to automatically process meeting request for resource mailboxes. With Exchange 2007 and Exchange 2010, a new approach to resources has been made. Exchange 2007 and Exchange 2010 support automatic booking of resource mailboxes, meaning that tools like the Auto Accept Agent are no longer required. Starting with Exchange 2007, resource mailboxes had, for the first time, specific Active Directory attributes that related to the use of resources, such as an attribute that specified the number of people that a meeting room could hold. This model is largely the same in Exchange 2010 and it is Exchange 2010 and Outlook 2010 that I am going to focus on in this article series. So let s get going and take a look at resource mailboxes in Exchange Creating Resource Mailboxes Creating resource mailboxes is very easy and can be done using either the Exchange Management Console or the Exchange Management Shell. In the Exchange Management Console, creating a resource mailbox is much the same process as creating a new user mailbox. When clicking the New Mailbox action in the action pane the administrator is presented with the screen shown in Figure 1, you can see the options to create either a room mailbox or an equipment mailbox.

8 Figure 1: Creating a Room or Equipment Mailbox One of the interesting things to note regarding resource mailboxes is that the associated Active Directory user account is automatically disabled as indicated by the text shown in Figure 1. For example, in Figure 2 it can be seen that a new room resource mailbox Active Directory user account is being created for Conference Room A. If you look closely at the user account icon in Figure 3, it can be seen that the associated Active Directory user account is automatically disabled once it has been created. This raises an interesting point if you pre-create an Active Directory account and then use the Exchange Management Console to mailbox-enable this Active Directory account with a resource mailbox. Remember to disable the Active Directory account that you pre-create, otherwise it will not show up in the Exchange Management Console as a valid account to mailbox-enable as a resource mailbox.

9 Figure 2: Creating the Associated Active Directory User Account Figure 3: Disabled Active Directory User Account

10 It is also possible to use the Exchange Management Shell to create a resource mailbox via the New-Mailbox cmdlet. For example, to create the room resource mailbox for Conference Room B via the Exchange Management Shell, the following command can be used: New-Mailbox -Name 'Conference Room B' -Alias 'ConfRoomB -UserPrincipalName 'ConfRoomB@neilhobson.com' -FirstName 'Conference' -LastName 'Room B' Room The results of running this command can be seen in Figure 4. Note that this command doesn t specify the name of the mailbox database in which to store the resource mailbox as the system has been allowed to choose a database at random. If it is a requirement to create this mailbox on a particular database, the Database parameter of the New-Mailbox cmdlet can be used. Additionally, this command also doesn t specify an organizational unit in which to store the user account so the default Users container will be used. If you need to specify a different organizational unit, then use the OrganizationalUnit parameter, an example of which is shown below: -OrganizationalUnit 'neilhobson.com/resource Mailboxes' Figure 4: Creating a Resource Mailbox via the Exchange Management Shell It can be seen from the New-Mailbox cmdlet shown above that the key parameter used to identify this mailbox as a resource mailbox is the Room parameter right at the end of the command. This obviously informs the system that the resource mailbox being created is a room rather than the other type of resource mailbox available, the equipment mailbox. To create a resource mailbox for equipment, the Equipment parameter is used rather than the Room parameter. For example, the following command can be used to create a resource mailbox for a projector that belongs in Conference Room B: New-Mailbox -Name 'Projector Room B' -Alias 'ProjRoomB' -UserPrincipalName 'ProjRoomB@neilhobson.com' -FirstName 'Projector' -LastName 'Room B' -Equipment If the list of mailboxes is now displayed in the Exchange Management Console, it can be seen that the room and equipment resource mailboxes have different icons and recipient type details as can be seen in Figure 5.

11 Figure 5: Room and Equipment Resource Mailboxes By using the Room and Equipment parameters of the New-Mailbox cmdlet, additional property tabs will be seen when bringing up the properties of a resource mailbox. Specifically, the Resource General, Resource Policy, Resource Information, Resource In-Policy Requests and Resource Out-of-Policy Requests tabs will be seen as shown in Figure 6.

12 Figure 6: The Resource Mailbox Tabs Here is a brief description of the purpose of each of these tabs. Note that we ll be looking deeper at these configuration elements as we go through this article series. Resource General - This tab allows you to configure resource custom properties as well as the resource capacity value. Additionally, it is on this tab that you configure whether you enable the Resource Booking Attendant for this mailbox or not. Resource Policy - The Resource Policy tab allows you to configure specific policies that apply to the resource mailbox, such as whether repeating meetings can be booked and the maximum duration of a meeting. Additionally, you can configure resource mailbox delegates from this tab. Resource Information - This tab controls the meeting information that is available in the resource mailbox s calendar, such as attachments, comments, subject and so on. It also allows for the configuration of additional text sent to the meeting organizer.

13 Resource In-Policy Requests - Here you can configure those users who are allowed to submit in-policy meeting requests, which can be either automatically approved or approved by a resource mailbox delegate. Resource Out-of-Policy Requests - This tab allows you to configure those users who are allowed to submit out-of-policy meeting requests which need to be approved by a resource mailbox delegate. Resource Booking Attendant Having human intervention is obviously fine if you have delegates that are willing and able to perform all of the required work associated with resource mailboxes. However, Exchange also offers the ability to automate some of the resource booking process. For example, what if you desired a configuration where senior management could always automatically book a meeting room without requiring the approval via a delegate? That s where the Resource Booking Attendant comes in. With that in mind, let s now enable the Resource Booking Attendant for a room resource mailbox and automate the conference room bookings; this is performed on the Resource General tab of the resource mailbox properties. Note that the highlighted area in Figure 18 also includes the text that explains that the resource booking settings are only effective when the Enable the Resource Booking Attendant check box has been selected. These resource booking settings are those found on the Resource In-Policy Requests, Resource Out-of-Policy Requests and Resource Policy tabs as we shall see later in this article.

14 Figure 18: Enabling the Resource Booking Attendant To enable the Resource Booking Attendant using the Exchange Management Shell, use the Set- CalendarProcessing cmdlet and specify a value of AutoAccept for the AutomateProcessing parameter. For example, to configure Conference Room A such that the Resource Booking Attendant is enabled, the following command will be used: Set-CalendarProcessing Identity ConfRoomA AutomateProcessing AutoAccept In this example, the AutomateProcessing parameter is set to AutoAccept; the default setting is AutoUpdate, whilst the other available option is None. The setting of AutoUpdate means that the Calendar Attendant is used on the resource mailbox, which itself means that new meeting requests will be marked as tentative on the resource mailbox calendar. Resource Policy

15 When examining the properties of a resource mailbox in the Exchange Management Console, you will see tabs labeled Resource In-Policy Requests and Resource Out-of-Policy Requests. Before we get into the specifics of discussing the configuration of both of these tabs, you might be wondering exactly what in-policy and out-of-policy requests actually are, so we shall discuss these now. To understand in-policy and out-of-policy requests, it is useful to examine the contents of the Resource Policy tab on a resource mailbox s properties. The Resource Policy tab for the resource mailbox called Conference Room C is shown in Figure 19. In fact, you might remember that this tab was shown in Figure 14 in part 2 of this article series when we were discussing how to configure delegates for the resource mailbox. Note that the values shown in Figure 19 are the default values assigned when a resource room mailbox is first created. Figure 19: Resource Policy Tab Default Settings The Resource Policy tab allows you to configure various settings that control whether or not certain users are allowed to automatically book meetings based on the characteristics of the meeting request itself.

16 Many of the settings that you can see in Figure 19 should be self-explanatory from the descriptions. For example, the Allow conflicting meeting requests option means exactly that. If you allow conflicting meetings, any conflicting meeting requests will be accepted by the resource mailbox and it will be up to the meeting organizers to work things out. The Booking windows (days) option covers how far in advance users can book this meeting room and as you can see the default setting is 180 days which is approximately 6 months. If you want to effectively disable any advance booking restrictions, simply set this value to 0. The Maximum duration (minutes) option covers how long the meeting request is allowed to last. As you can see, the default value for this option is 1440 minutes which equates to 1 day. This will probably suffice in the majority of situations for a room resource mailbox but should any of your users need to book the room resource for more than 1 day you will need to alter this value here. You can control the policy for conflicting meeting requests via the Maximum conflict instances and Conflict percentage allowed options. All of the settings shown in Figure 19 can be set via the Set-CalendarProcessing cmdlet. Table 1 below shows the parameter names used in the Exchange Management Shell. I created this table by using one of the cool new features found in the Exchange Management Console in Exchange If you look back at Figure 19 you can see the show Exchange Management Shell command button in the bottom-left corner of the properties screen for Conference Room C. Clicking this button after making a change in the Exchange Management Console will show you the corresponding Exchange Management Shell command. An example is shown in Figure 20 where you can see the results of changing the Allow conflicting meeting requests option in the Exchange Management Console. Figure 20: Showing the Exchange Management Shell Command Used Configuration Name Allow conflicting meeting requests Allow repeating meetings Set-CalendarProcessing Parameter AllowConflicts AllowRecurringMeetings

17 Allow scheduling only during working hours Reject repeating meetings that have an end date beyond the booking window Booking window (days) Maximum duration (minutes) Maximum conflict instances Conflict percentage allowed Specify delegates of this mailbox Forward meeting requests to delegates ScheduleOnlyDuringWorkHours EnforceSchedulingHorizon BookingWindowInDays MaximumDurationInMinutes MaximumConflictInstances ConflictPercentageAllowed ResourceDelegates ForwardRequestsToDelegates Table 1: Resource Policy Tab Cmdlet Parameters Additionally these settings, together with some additional settings that will be covered later in this article, can be found within Outlook Web App (OWA) when accessing the resource mailbox. For example, look at Figure 21 where you can see the resource options for the Conference Room D resource mailbox. This particular page is accessed via the Exchange Control Panel (ECP) in OWA. Specifically, in OWA click Options then See All Options which will take you to the ECP. Here click the Settings option on the left-hand side of the screen and you will be presented with the screen shown in Figure 21. Note that the Resource tab is only seen when a resource mailbox is accessed in OWA. Figure 21: OWA Resource Tab

18 The settings shown in Figures 19 and 21 form the resource mailbox policy and therefore if a meeting request does not conflict with any of these settings, it is an in-policy meeting request. If a meeting request does conflict with any of these settings, it is an out-of-policy meeting request. You can control what happens to in-policy or out-of-policy meeting requests on a per-user basis by configuring the options on the Resource In-Policy Requests and Resource Out-of-Policy Requests tabs. We ll be doing exactly that in the fourth and final part of this article series. How Resource Policies Affect Users By default, all users can submit in-policy meeting requests as you can see from Figure 22. You will also see that by default no users are configured to require their in-policy meeting requests to be approved by a delegate. On the Resource Out-of-Policy tab, the default setting is that no users are configured to be allowed to submit out-of-policy meeting requests that require approval by a delegate. Figure 22: In-Policy Requests Default Settings

19 Let s now look at how these settings affect the user experience, starting with the in-policy meeting requests. Take the scenario shown in Figure 23 where Neil s in-policy meeting requests are automatically approved but John s in-policy meeting requests have to be approved by a delegate. Figure 23: Configuring In-Policy Requests If Neil now books this room resource mailbox, he receives an automatically generated acceptance notification since he is allowed to automatically book this meeting room. You can see the results of this action in Figure 24. Note, that OWA has been used in this example.

20 Figure 24: Automatically Accepted Meeting Request However, if John books this same room resource mailbox, he will receive a tentative response indicating that his meeting request was received by the room resource mailbox, but is pending approval. This message is shown in Figure 25.

21 Figure 25: Meeting Request Pending Approval The room resource mailbox delegate will receive John s meeting request and will therefore have to decide whether or not John is allowed to book the resource. In this particular case, Sally is configured as the room resource mailbox delegate and you can see the meeting request approval message in Sally s Outlook 2010 inbox in Figure 26.

22 Figure 26: Delegate Approval Process Had John not been configured to have his meeting requests send to the delegate, he would have received a declined meeting request response from the room resource mailbox since he would not have permissions to book this particular room resource. To configure the in-policy requests that you saw in Figure 23 using the Exchange Management Shell, use the BookInPolicy and AllBookInPolicy parameters of the Set-CalendarProcessing cmdlet. If you want all users who submit in-policy meeting requests to have those meeting requests automatically approved, set the AllBookInPolicy parameter to true. Conversely, to select a specific set of users who require automatic approval, set the AllBookInPolicy parameter to false and then specify a list of users for the BookInPolicy parameter. The same principles apply for the settings that control whether in-policy meeting requests require approval by the resource mailbox delegate, although this time the two parameters are RequestInPolicy and AllRequestInPolicy. Even though users may be configured to automatically book in-policy meeting requests, or perhaps have their meeting requests approved by resource mailbox delegates, this does not necessarily mean that they are allowed to submit out-of-policy meeting requests. As we discussed earlier in this article, no users are allowed to submit out-of-policy meeting requests by

23 default. Let s take the maximum meeting time as an example, which you may remember is set to 1 day by default. Even though a user may be allowed to automatically book in-policy meeting requests, Figure 27 shows what happens if that user attempts to book a meeting that lasts longer than 1 day and thus is classed as an out-of-policy meeting request. Figure 27: Declined Out-of-Policy Request In Figure 27 you can clearly see that the meeting request was declined since the meeting request exceeded the overall duration limit of 1440 minutes, or 1 day. By adding the user to the configuration in the Resource Out-of-Policy Requests tab, out-of-policy requests such as this would be sent to the resource mailbox delegate for approval rather than being declined outright by the Resource Booking Attendant. Resource Information There is one final tab on the properties of a resource mailbox that we have yet to look at, and that is the Resource Information tab. This particular tab is shown in Figure 28, where you can see that many of the configurable options are self-explanatory. Setting these options will allow you to control the functionality and security of the resource mailbox. For example, users quite often include attachments in meeting requests and these can add to the overall mailbox size for the

24 resource mailbox. Therefore, having an automated way to remove these attachments will help control the mailbox size and this is what the Delete attachments option can be used for. Figure 28: The Resource Information Tab Settings One interesting configuration option that you may have noticed from Figure 28 is the additional text that you can add to customize the response message that the meeting organizer will receive. This text is added to all meeting responses and an example of how this text is seen within a meeting response is shown below in Figure 29.

25 Figure 29: Customized Text Example As we ve seen throughout this article series, the various configuration elements of a resource mailbox can be managed in the Exchange Management Shell via the Set-CalendarProcessing cmdlet and the options shown in Figure 28 are no different. Table 2 below shows the parameter names used in the Exchange Management Shell. As per Table 1 in part three of this article series, I created this table by examining the Exchange Management Shell command produced as a result of setting the options within the Exchange Management Console. Configuration Name Set-CalendarProcessing Parameter Delete attachments DeleteAttachments Delete comments DeleteComments Delete the subject DeleteSubject Delete non-calendar items DeleteNonCalendarItems Add the organizer s name to the subject AddOrganizerToSubject Remove the private flag on an accepted RemovePrivateProperty meeting Send organizer information when a OrganizerInfo meeting request is declined because of

26 conflicts Add additional text Additional text Mark pending requests as Tentative on the calendar AddAdditionalResponse AdditionalResponse TentativePendingApproval Table 2: Exchange Management Shell Parameters for the Resource Information Tab Room List Distribution Groups Exchange 2010 includes a fantastic new feature called room list distribution groups. This feature is designed to help the user in scenarios where the calendars of multiple resource mailboxes must be examined when attempting to find a vacant slot in a resource mailbox calendar. To make finding this vacant slot much easier, room list distribution groups can be created. Unfortunately it s not possible to use the Exchange Management Console to create a room list distribution group; you have to use the Exchange Management Shell. The cmdlet to use is the New- DistributionGroup cmdlet just as you would when creating a new ordinary distribution group. However, with room list distribution groups the key thing to remember is to include the RoomList parameter when using the New-DistributionGroup cmdlet. For example, to create a room list distribution group called Meeting Rooms that comprises the resource mailboxes for Conference Room A, Conference Room B, Conference Room C and Conference Room D the following command can be used: New-DistributionGroup Name Meeting Rooms Members ConfRoomA,ConfRoomB,ConfRoomC,ConfRoomD RoomList Figure 30 shows an extract of the Exchange Management Console after the room list distribution group has been created. Figure 30: New Room List Distribution Group Once the room list distribution group has been created it is available for users to select when composing a new meeting request in Outlook. In Figure 31, you can see the Show a room list option as highlighted within the red box. The user can select the room list distribution group

27 from a drop-down list and when this is done, the resource mailboxes that are members of this room list distribution group are populated within the calendar scheduling assistant as resource mailboxes. Immediately below the room list drop-down box you will note the Choose an available room selection area which has been highlighted in the blue box. This area contains suitable resource mailbox choices from the room list distribution group based on the availability of those resources. As you can see from Figure 31, Conference Room D is not available at the chosen meeting time which means it is not available as a selection in the Choose an available room selection area of the screen. Figure 31: Room List Distribution Groups in Outlook Summary We have reached the end of this article series on resource mailboxes in Exchange There is no doubt that this type of mailbox is extremely beneficial to almost all organizations that run Exchange and the functionality provided out of the box has got progressively better with each release of Exchange.

Contents (click topic to jump to section)

Contents (click topic to jump to section) in Contents (click topic to jump to section) in...1 Overview...2 Resource Mailbo Features...2 Resource Scheduling...3 Feature Comparison...4 Feature...4 Outlook Direct Booking...4 Auto Accept Agent...4

More information

Allowing other users to view email and/or folders in Outlook (i.e., proxy access)

Allowing other users to view email and/or folders in Outlook (i.e., proxy access) Allowing other users to view email and/or folders in Outlook (i.e., proxy access) There are two ways to work with another person's Microsoft Outlook folders folder sharing and Delegate Access. 1. Folder

More information

Office 365. Created: 06/04/2013 Revised: 08/20/2013. Outlook 365 Kindred Healthcare, Inc. All rights reserved. Logging In Page 1 of 15

Office 365. Created: 06/04/2013 Revised: 08/20/2013. Outlook 365 Kindred Healthcare, Inc. All rights reserved. Logging In Page 1 of 15 Logging into Office 365 Page 1 of 15 Table of Contents Logging in to Office 365... 3 Outlook Features... 4 Accessing Outlook... 4 Accessing Email... 5 Compose New Email... 7 Accessing Calendar... 8 Adding

More information

Microsoft Outlook 2003 Quick How-to Guide

Microsoft Outlook 2003 Quick How-to Guide Microsoft Outlook 2003 Quick How-to Guide Microsoft Outlook 2003 Quick How-to-Guide This document is designed to be a quick guide for the most common tasks in Outlook. It is separated into different sections

More information

Microsoft Outlook: Beyond the Inbox

Microsoft Outlook: Beyond the Inbox Microsoft Outlook: Beyond the Inbox 1. There are 3 types of Calendar items: Appointments: An appointment is a scheduled block of time that only involves you. The hours are blocked out on your schedule,

More information

Outlook 2010 Sharing and Using Calendars

Outlook 2010 Sharing and Using Calendars Outlook 2010 Sharing and Using Calendars Frequently Asked Questions: How do I share my calendar?... 1 How can I organise my list of calendars?... 6 How do I make past appointments private?... 8 How do

More information

IT Quick Reference Guides Sharing, Delegation and Multiple Accounts

IT Quick Reference Guides Sharing, Delegation and Multiple Accounts IT Quick Reference Guides Sharing, Delegation and Multiple Accounts Outlook 2010 Guides This guide is meant as a mini-manual for using shared accounts, mailboxes and calendars in Outlook 2010. This is

More information

OWA User Guide. Table of Contents

OWA User Guide. Table of Contents OWA User Guide Table of Contents 1. Basic Functionality of Outlook Web Access... 2 How to Login to Outlook Web Access (OWA)... 2 Change Password... 3 Mail... 3 Composing Mail... 5 Attachments - Web Ready

More information

Outlook Web Access E-mail

Outlook Web Access E-mail Outlook Web Access E-mail A. Accessing the mailbox via the Internet 1. Open your browser Firebox or Internet Explorer 2. In the URL address location box, key mail.asbury.edu for students and mail2.asbury.edu

More information

Outlook 2003 User Guide. April 15, 2004

Outlook 2003 User Guide. April 15, 2004 Outlook 2003 User Guide April 15, 2004 PURPOSE OF THE DOCUMENT... 2 NAVIGATE OUTLOOK...3 Toolbars... 3 Menu Toolbar... 4 Standard Toolbar... 5 Outlook Bar... 6 Navigation Pane... 7 USING THE MAIL OPTION...

More information

Outlook Web Access (OWA) - Using Calendar and Email on the Web

Outlook Web Access (OWA) - Using Calendar and Email on the Web Outlook Web Access (OWA) - Using Calendar and Email on the Web You can access OWA through a web browser on any computer connected to the internet. This guide is intended to help with the most common tasks

More information

CMU/SCS Computing Facilities. Microsoft Outlook 2011 for Mac Calendar Guide

CMU/SCS Computing Facilities. Microsoft Outlook 2011 for Mac Calendar Guide CMU/SCS Computing Facilities Microsoft Outlook 2011 for Mac Calendar Guide Table of Contents Opening Outlook... 2 Finding your Calendar... 2 Creating entries on your calendar... 2 Appointments... 2 Meetings...

More information

UBC FASmail Outlook Web App Usage Guide for Email and Calendaring. Provided by UBC Information Technology

UBC FASmail Outlook Web App Usage Guide for Email and Calendaring. Provided by UBC Information Technology UBC FASmail Outlook Web App Usage Guide for Email and Calendaring Provided by UBC Information Technology About this Guide This usage guide is intended to showcase E-mail, Calendaring and the Global Address

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

Email User Manual. [Outlook Web App 2013]

Email User Manual. [Outlook Web App 2013] [Outlook Web App 2013] Central Information Systems Division March 2014 Table of Contents 1. To Login... 4 2. To Logout... 5 3. Change Password... 5 4. Email Messaging... 6 4.1 Create a New Mail... 6 4.2

More information

Outlook Web App OWA Quick Guide. Getting you up to speed quickly.

Outlook Web App OWA Quick Guide. Getting you up to speed quickly. Outlook Web App OWA Quick Guide Getting you up to speed quickly. Information Services 8-1-2014 Contents Exploring the OWA (Outlook Web App) User Interface... 2 Getting Started... 2 Mail... 6 Creating and

More information

Microsoft Outlook Web App (OWA)

Microsoft Outlook Web App (OWA) im Microsoft Outlook Web App (OWA) CSULB 1 Information Technology Services CSULB 2 Information Technology Services Table of Contents Introduction... 4 Logging In... 4 The OWA Interface... 5 Feature Differences...

More information

CITY OF BURLINGTON PUBLIC SCHOOLS MICROSOFT EXCHANGE 2010 OUTLOOK WEB APP USERS GUIDE

CITY OF BURLINGTON PUBLIC SCHOOLS MICROSOFT EXCHANGE 2010 OUTLOOK WEB APP USERS GUIDE CITY OF BURLINGTON PUBLIC SCHOOLS MICROSOFT EXCHANGE 2010 OUTLOOK WEB APP USERS GUIDE INTRODUCTION You can access your email account from any workstation at your school using Outlook Web Access (OWA),

More information

Outlook Web App OWA. Let s take a look at the new features and functionality available on OWA. Feature & Functionality Description User experience

Outlook Web App OWA. Let s take a look at the new features and functionality available on OWA. Feature & Functionality Description User experience Outlook Web App OWA Let s take a look at the new features and functionality available on OWA. Feature & Functionality Description User experience Logon Screen User logon screen for Outlook Web App (OWA)

More information

Faculty & Staff Guide for Outlook Web App (OWA) Prepared by Information Technology Division Lehman College July 11, 2013

Faculty & Staff Guide for Outlook Web App (OWA) Prepared by Information Technology Division Lehman College July 11, 2013 im Faculty & Staff Guide for Outlook Web App (OWA) Prepared by Information Technology Division Lehman College July 11, 2013 Lehman College, CUNY 1 Information Technology Division Table of Contents Introduction...

More information

GroupWise to Outlook: How Do I?

GroupWise to Outlook: How Do I? Group- Wise GroupWise to Outlook: How Do I? Outlook Function Function How to Proxy Delegate From the File tab, click Account Settings and then Delegate Access from the drop-down menu. In the Delegates

More information

UBC FASmail Usage Guide for Email and Calendaring. Provided by UBC Information Technology

UBC FASmail Usage Guide for Email and Calendaring. Provided by UBC Information Technology UBC FASmail Usage Guide for Email and Calendaring Provided by UBC Information Technology About this Guide This usage guide is intended to showcase E-mail, Calendaring and the Global Address List lookup

More information

Using Outlook Web App

Using Outlook Web App Using Outlook Web App About Outlook Web App Using a web browser and the Internet, Outlook Web App (OWA) provides access to your Exchange mailbox from anywhere in the world at any time. Outlook Web App

More information

Outlook Webb App quick guide

Outlook Webb App quick guide What is Outlook Web App 2010? Outlook Webb App quick guide Updated 7/17/2012 The Outlook Web App allows you to access your University e-mail and calendar from any computer that has Internet access via

More information

Outlook Web App Using Outlook Web App for Email and Calendar

Outlook Web App Using Outlook Web App for Email and Calendar Outlook Web App Using Outlook Web App for Email and Calendar Overview This guide provides basic instructions for managing your email and calendar at Ithaca College using Outlook Web App (OWA). OWA provides

More information

Microsoft Office 365 Outlook Web App (OWA)

Microsoft Office 365 Outlook Web App (OWA) CALIFORNIA STATE UNIVERSITY, LOS ANGELES INFORMATION TECHNOLOGY SERVICES Microsoft Office 365 Outlook Web App (OWA) Spring 2013, Version 1.0 Table of Contents Introduction...3 Signing In...3 Navigation

More information

If you encounter difficulty or need further assistance the Archdiocesan help desk can be reached at (410) 547-5305, option 1. Email Access Methods:

If you encounter difficulty or need further assistance the Archdiocesan help desk can be reached at (410) 547-5305, option 1. Email Access Methods: ArchMail (www.archbalt.org/archmail) is a centrally hosted email system for the employees of the Archdiocese. To simplify employee access multiple methods for accessing email have been established. This

More information

Outlook 2010 FAQ Fayetteville Public Schools K-12 Instructional Technology Fayetteville, Arkansas

Outlook 2010 FAQ Fayetteville Public Schools K-12 Instructional Technology Fayetteville, Arkansas Contents What s New in Outlook 2010?... 2 Why does the menu toolbar look different?... 2 What is Conversation View?... 2 How do I change Conversation View settings?... 2 What are Mail Tips?... 2 Where

More information

Outlook Web Application (OWA) Basic Training

Outlook Web Application (OWA) Basic Training Outlook Web Application (OWA) Basic Training Requirements to use OWA Full Version: You must use at least version 7 of Internet Explorer, Safari on Mac, and Firefox 3.X (these two achieve 99 percent feature

More information

Microsoft Outlook Tips & Tricks

Microsoft Outlook Tips & Tricks Microsoft Outlook Tips & Tricks Columbia College Technology Services Table of Contents Creating an email signature Page 1 Handling attachments Page 1 Sending an attachment Opening an attachment Page 2

More information

Microsoft Outlook 2010

Microsoft Outlook 2010 Microsoft Outlook 2010 Prepared by Computing Services at the Eastman School of Music July 2010 Contents Microsoft Office Interface... 4 File Ribbon Tab... 5 Microsoft Office Quick Access Toolbar... 6 Appearance

More information

Mail in Outlook Web App

Mail in Outlook Web App Page 1 of 7 Mail in Outlook Web App When you open Outlook Web App, the first thing you ll see is your Inbox. This is where messages sent to you arrive, and this is where you ll probably spend the most

More information

Sharing and Delegating Access to Calendars in Outlook 2010

Sharing and Delegating Access to Calendars in Outlook 2010 Sharing and Delegating Access to Calendars in Outlook 2010 ***NOTE ***: Ignore "Quotation Marks" ( " " ) unless instructed to do so. This will cause error. PLEASE READ BEFORE PROCEEDING: Sharing a calendar

More information

Getting Started with UM

Getting Started with UM Getting Started with UM PREFACE Welcome to Exchange Unified Messaging. This system will replace the legacy voice mail system and provide additional functionality. Our Exchange Servers will provide voice

More information

PolyU Staff Email Service. Outlook Web App (OWA) User Guide

PolyU Staff Email Service. Outlook Web App (OWA) User Guide PolyU Staff Email Service Outlook Web App (OWA) User Guide Version 2.2 Last Update: 23 December 2014 PolyU Staff Email: www.polyu.edu.hk/email ITS HelpCentre Support: www.polyu.edu.hk/hots ITS HelpCentre

More information

Microsoft Outlook 2007 Calendar Features

Microsoft Outlook 2007 Calendar Features Microsoft Outlook 2007 Calendar Features Participant Guide HR Training and Development For technical assistance, please call 257-1300 Copyright 2007 Microsoft Outlook 2007 Calendar Objectives After completing

More information

Microsoft Outlook 2010 The Essentials

Microsoft Outlook 2010 The Essentials 2010 The Essentials Training User Guide Sue Pejic Training Coordinator Information Technology Services Email : spejic@swin.edu.au Mobile : 0419 891 113 Table of Contents What is Outlook?... 4 The Ribbon...

More information

New Features in Outlook Web Access

New Features in Outlook Web Access New Features in Feature and functionality Logon Screen Navigation Description User logon screen for Navigation in resembles navigation in Microsoft Office Outlook 2007. Drag-and-Drop Move items by dragging

More information

COOK COUNTY OFFICE 365 MIGRATION USER GUIDE

COOK COUNTY OFFICE 365 MIGRATION USER GUIDE COOK COUNTY OFFICE 365 MIGRATION USER GUIDE Dear Cook County Office 365 User: Your mailbox is schedule to be migrated to Microsoft s Office 365 platform. Page 1 TABLE OF CONTENTS 01. PRE-MIGRATION RECOMMENDATIONS

More information

OUTLOOK WEB APP (OWA): MAIL

OUTLOOK WEB APP (OWA): MAIL Office 365 Navigation Pane: Navigating in Office 365 Click the App Launcher and then choose the application (i.e. Outlook, Calendar, People, etc.). To modify your personal account settings, click the Logon

More information

Understanding & Configuring Mailbox Access Delegation in the UMROOT Forest

Understanding & Configuring Mailbox Access Delegation in the UMROOT Forest Table of Contents Introduction... 2 Terminology... 2 Requirements... 3 How to Delegate Access to Your Calendar or a Folder... 4 How To Assign Send On Behalf Permissions Using the Outlook Delegation Wizard

More information

Outlook Web App Quick Start Guide

Outlook Web App Quick Start Guide Login and first time setup 1) Go to http://mail.office365.com 2) Login with your email address (ie username@npsk12.net) 3) First time you login, you will get prompted for Language and Time Zone. Language

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 D14846.01 June 2011 Software version 2.3 Contents Introduction 5 End user guidance 5 Server requirements 6 Exchange

More information

OUTLOOK 2013 - GETTING STARTED

OUTLOOK 2013 - GETTING STARTED OUTLOOK 2013 - GETTING STARTED Information Technology September 1, 2014 1 GETTING STARTED IN OUTLOOK 2013 Backstage View Ribbon Navigation Pane View Pane Navigation Bar Reading Pane 2 Backstage View contains

More information

Webmail User Guide. New Outlook Mail Calendar Preferences. New Outlook

Webmail User Guide. New Outlook Mail Calendar Preferences. New Outlook Webmail User Guide New Outlook Mail Calendar Preferences New Outlook Mail Create New Email 1. Press the down arrow beside New button 2. Choose Message 3. Input the name of Recipient. 4. Or choose the Recipient

More information

Microsoft Outlook 2010. Reference Guide for Lotus Notes Users

Microsoft Outlook 2010. Reference Guide for Lotus Notes Users Microsoft Outlook 2010 Reference Guide for Lotus Notes Users ContentsWelcome to Office Outlook 2010... 2 Mail... 3 Viewing Messages... 4 Working with Messages... 7 Responding to Messages... 11 Organizing

More information

O UTLOOK 2003 HELP SHEET MAIL. Opening the program. Mail

O UTLOOK 2003 HELP SHEET MAIL. Opening the program. Mail O UTLOOK 2003 HELP SHEET MAIL Opening the program At Work Double-click the icon on your desktop. Or click the Start button. If this icon is displayed, click on it. If it is not displayed, click Start,

More information

Microsoft Outlook Web App Quick Reference Card

Microsoft Outlook Web App Quick Reference Card Microsoft Outlook Web App Quick Reference Card Accessing Outlook Web App You can access your mailbox through any browser that supports HTML 3.2 and ECMA. To access your mailbox, enter your OWA web address/url

More information

Produced by: Flinders University Centre for Educational ICT

Produced by: Flinders University Centre for Educational ICT Produced by: Flinders University Centre for Educational ICT Introduction to Outlook 2010 Contents Microsoft Online Services Sign-in to Outlook/Exchange... 2 Key Features... 3 Outlook Screen... 4 To-Do

More information

Outlook Web App. in Office 365. The Outlook Window. Signing In. (Outlook Exchange Faculty & Staff) Getting Started

Outlook Web App. in Office 365. The Outlook Window. Signing In. (Outlook Exchange Faculty & Staff) Getting Started Outlook Web App in Office 365 (Outlook Exchange Faculty & Staff) Getting Started The Outlook Window Navigation Bar Settings Navigation Pane View Pane Reading Pane Navigation Bar switch between Outlook,

More information

Student Office 365 Outlook Web App OWA Quick Guide. Getting you up to speed quickly.

Student Office 365 Outlook Web App OWA Quick Guide. Getting you up to speed quickly. Student Office 365 Outlook Web App OWA Quick Guide Getting you up to speed quickly. Information Services 9-5-2014 Contents Logging into the CWU Student Outlook Web App... 3 Getting Started with Office

More information

Microsoft Outlook 2013 -And- Outlook Web App (OWA) Using Office 365

Microsoft Outlook 2013 -And- Outlook Web App (OWA) Using Office 365 1 C H A P T E R Microsoft Outlook 2013 -And- Outlook Web App (OWA) Using Office 365 1 MICROSOFT OUTLOOK 2013 AND OUTLOOK WEB ACCESS (OWA) Table of Contents Chapter 1: Signing Into the Microsoft Email System...

More information

OWA - Outlook Web App

OWA - Outlook Web App OWA - Outlook Web App Olathe Public Schools 0 Page MS Outlook Web App OPS Technology Department Last Revised: May 1, 2011 Table of Contents MS Outlook Web App... 1 How to Access the MS Outlook Web App...

More information

Outlook Web App McKinney ISD 5/27/2011

Outlook Web App McKinney ISD 5/27/2011 Outlook Web App McKinney ISD 5/27/2011 Outlook Web App Tutorial Outlook Web Access allows you to gain access to your messages, calendars, contacts, tasks and public folders from any computer with internet

More information

EVault User Guide. For more on the EVault service, visit the IT KB at http://kb.mcgill.ca/it/evault.

EVault User Guide. For more on the EVault service, visit the IT KB at http://kb.mcgill.ca/it/evault. EVault User Guide Enterprise Vault (EVault) is email storing software that can be used with your Microsoft Exchange Server mailbox to store your email items and free up space in your inbox (for McGill

More information

Microsoft Office 365 Outlook Web App (OWA)

Microsoft Office 365 Outlook Web App (OWA) CALIFORNIA STATE UNIVERSITY, LOS ANGELES INFORMATION TECHNOLOGY SERVICES Microsoft Office 365 Outlook Web App (OWA) Winter 2015, Version 2.0 Table of Contents Introduction...3 Logging In...3 Navigation

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

Email User Guide. Contents. Information Systems and Technology Dawson College v 1.3, 15 November 2013

Email User Guide. Contents. Information Systems and Technology Dawson College v 1.3, 15 November 2013 Information Systems and Technology Dawson College v 1.3, 15 November 2013 Contents 1 Overview... 2 2 Access... 2 2.1 Outlook... 2 2.2 Outlook Web Access (OWA)... 3 2.3 Outlook for Mac... 4 2.4 Other email

More information

- Training. Getting Started with Outlook 2003. Information Technology Services - Training The University of Texas at Austin

- Training. Getting Started with Outlook 2003. Information Technology Services - Training The University of Texas at Austin - Training Getting Started with Outlook 2003 Information Technology Services - Training The University of Texas at Austin http://www.utexas.edu/its/training 2007 Information Technology Services The University

More information

GroupWise Web Access 8.0

GroupWise Web Access 8.0 GroupWise Web Access 8.0 How to check your email via the Internet For More Information, please contact: Administrative Office of the Courts Technology Help Desk (615) 532 9503 or (800) 448-7980 Table of

More information

TEAM 1-5.3a Introduction to Outlook Web Access (OWA) 2010

TEAM 1-5.3a Introduction to Outlook Web Access (OWA) 2010 Introduction to Outlook Web Access (OWA) 2010 2 TEAM 1-5.3a Introduction to Outlook Web Access (OWA) 2010 Table of Contents Introduction... 3 What s New in OWA 2010... 4 Accessing Your Exchange Account

More information

CONTENTS. Introduction... 3. Outlook at a glance... 3. Configure Outlook 2010 on-campus... 3. Creating Folders... 4. Sorting Emails...

CONTENTS. Introduction... 3. Outlook at a glance... 3. Configure Outlook 2010 on-campus... 3. Creating Folders... 4. Sorting Emails... OFFICE OF INFORMATION TECHNOLOGY Academic Technology Unit Microsoft Outlook 2010 Basics Workbook CONTENTS Introduction... 3 Outlook at a glance... 3 Configure Outlook 2010 on-campus... 3 Creating Folders...

More information

Outlook Web Access Tutorial

Outlook Web Access Tutorial 1 Outlook Web Access Tutorial Outlook Web Access 2010 allows you to gain access to your messages, calendars, contacts, tasks and public folders from any computer with internet access. How to access your

More information

Entourage - an Introduction to Calendar

Entourage - an Introduction to Calendar Entourage - an Introduction to Calendar Version 2004 for Macintosh Table of Contents Introduction How do I sign in? How do I view my calendar if it's not showing? How do I open my calendar in a separate

More information

Outlook Web Access (OWA) User Guide

Outlook Web Access (OWA) User Guide Outlook Web Access (OWA) User Guide September 2010 TABLE OF CONTENTS TABLE OF CONTENTS... 2 1.0 INTRODUCTION... 4 1.1 OUTLOOK WEB ACCESS SECURITY CONSIDERATIONS... 4 2.0 GETTING STARTED... 5 2.1 LOGGING

More information

Working with Calendars

Working with Calendars Working with Calendars Add an Appointment or Meeting to a Calendar You can add appointments and meetings to your calendar. Appointments are those items that you schedule only for yourself. For example,

More information

Recalling A Sent Message in Outlook 2010

Recalling A Sent Message in Outlook 2010 Recall or replace an email message that you sent The recall feature in Microsoft Outlook tries to stop delivery and, optionally, replace an email message that you have already sent to another Microsoft

More information

Outlook Web App (OWA) Quick Start Guide

Outlook Web App (OWA) Quick Start Guide As we move to AD, Office365 and Outlook from our comfort zone of Novell and GroupWise, remember that you have been using Microsoft for a long time. Yes, Office is a Microsoft product. Since Outlook is

More information

How to access your email from WORK & HOME

How to access your email from WORK & HOME How to access your email from WORK & HOME 1. Open your browser and go to the district website by typing in the following address: http://www.islandtrees.org 2. Click on Staff Resources 3. Click on the

More information

There are only a couple of things that need to happen once you've ordered the product from our Service Manager.

There are only a couple of things that need to happen once you've ordered the product from our Service Manager. Introduction ExchangeDefender Compliance Archive provides secure, long term storage, recovery and ediscovery system that assures compliance with regulatory requirements established by IRS, HIPAA, SOX and

More information

How to use Office 365 with your OneDrive File Storage Facility

How to use Office 365 with your OneDrive File Storage Facility How to use Office 365 with your OneDrive File Storage Facility As a student at Pembrokeshire College you will have access to Microsoft s Office 365 and the OneDrive file storage facility. Microsoft Office

More information

Microsoft Outlook 2013 Workshop

Microsoft Outlook 2013 Workshop Microsoft Outlook 2013 Workshop Course objectives: Manage correspondence and contacts efficiently Use the calendar effectively for appointments, meetings and events Customise Outlook settings View and

More information

Migrating to Microsoft Exchange with Outlook 2007 and Outlook Web Access

Migrating to Microsoft Exchange with Outlook 2007 and Outlook Web Access Migrating to Microsoft Exchange with Outlook 2007 and Outlook Web Access Jeff Pankin Information Services and Technology This document will focus on key differences when moving to Exchange using Outlook

More information

EMAIL QUICK START GUIDE

EMAIL QUICK START GUIDE IT Services Microsoft Outlook 2010 EMAIL QUICK START GUIDE Contents What is Outlook?...2 Quick Guide to Email...2 Create a new e-mail message...2 Forward or reply to an e-mail message...2 Creating new

More information

OUTLOOK 2010 QUICK GUIDE. Version 1.7

OUTLOOK 2010 QUICK GUIDE. Version 1.7 OUTLOOK 2010 QUICK GUIDE Version 1.7 Table of Contents THE NAVIGATION PANE... 5 Mail... 5 Calendar... 5 Contacts... 5 Tasks... 5 Notes... 5 Folder List... 5 Shortcuts... 5 E-MAIL... 5 Create a new e-mail

More information

Outlook Tips & Tricks. Training For Current & New Employees

Outlook Tips & Tricks. Training For Current & New Employees Outlook Tips & Tricks Training For Current & New Employees The workshop will help build the necessary skills needed to begin using Microsoft Outlook 2010. The participant will learn how to create e-mail

More information

Class Objectives. Introduction. Intermediate Outlook Features. Setting up Outlook

Class Objectives. Introduction. Intermediate Outlook Features. Setting up Outlook Intermediate Outlook 2003 Shortcourse Handout September 1, 2004 Technology Support Shortcourses Texas Tech University Copyright 2004 Class Objectives After completing this shortcourse, you should be able

More information

Microsoft Exchange 2010 Email Training. Microsoft Outlook 2007 Outlook Web App

Microsoft Exchange 2010 Email Training. Microsoft Outlook 2007 Outlook Web App Microsoft Exchange 2010 Email Training Microsoft Outlook 2007 Outlook Web App Table of Contents INTRODUCTION 1.1 What Does Microsoft Exchange Do? 1.2 Advantage/Disadvantage 1.3 Outlook 2007 vs. Outlook

More information

How to make the Emails you Send from Outlook 2010 appear to Originate from different Email Addresses

How to make the Emails you Send from Outlook 2010 appear to Originate from different Email Addresses How to make the Emails you Send from Outlook 2010 appear to Originate from different Email Addresses If you only use a single email address to send out all your business and personal emails then you're

More information

How to send meeting invitations using Office365 Calendar

How to send meeting invitations using Office365 Calendar How to send meeting invitations using Office365 Calendar This guide tells you how to send meeting requests using the Calendar in your Office365 webmail. There are separate sections for setting this up

More information

When you have decided what to include in your signature, you will need to open the signatures and stationery dialogue box:

When you have decided what to include in your signature, you will need to open the signatures and stationery dialogue box: Signatures An email signature is a block of information which is added to the bottom of an email to give the recipient information about the sender. It functions in a similar way to using headed paper

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

Outlook 101. Use and Manage Your Outlook Email Account. 2006 Terence Peak, UIW Dept. of Instructional Technology

Outlook 101. Use and Manage Your Outlook Email Account. 2006 Terence Peak, UIW Dept. of Instructional Technology Outlook 101 Use and Manage Your Outlook Email Account What you will learn today Difference Between OWA and Outlook Client Mail Options Contacts Managing Outlook Calendar Options Tasks Outlook Web Access

More information

RoomWizard Synchronization Software Manual Installation Instructions

RoomWizard Synchronization Software Manual Installation Instructions 2 RoomWizard Synchronization Software Manual Installation Instructions Table of Contents Exchange Server Configuration... 4 RoomWizard Synchronization Software Installation and Configuration... 5 System

More information

Office Outlook web access Reference Guide

Office Outlook web access Reference Guide U TO R E XC H A N G E : C a l e n d a r i n g a n d e m a i l u p g r a d e w i t h M i c r o s o f t E xc h a n g e Office Outlook web access Reference Guide To log in, go to owa.utoronto.ca. You will

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

Outlook Calendar Tips & Tricks

Outlook Calendar Tips & Tricks Outlook Calendar Tips & Tricks Outlook Calendar Quick Reference The following provides information on using various features and functionality in Outlook calendar. Outlook Resources Outlook Web Access

More information

Training Manual. Version 6

Training Manual. Version 6 Training Manual TABLE OF CONTENTS A. E-MAIL... 4 A.1 INBOX... 8 A.1.1 Create New Message... 8 A.1.1.1 Add Attachments to an E-mail Message... 11 A.1.1.2 Insert Picture into an E-mail Message... 12 A.1.1.3

More information

Netmail Search for Outlook 2010

Netmail Search for Outlook 2010 Netmail Search for Outlook 2010 Quick Reference Guide Netmail Search is an easy-to-use web-based electronic discovery tool that allows you to easily search, sort, retrieve, view, and manage your archived

More information

Gmail: Sending, replying, attachments, and printing

Gmail: Sending, replying, attachments, and printing If you're using an old version of Gmail, your Inbox may look a little different. Gmail: Sending, replying, attachments, and printing Welcome to Gmail. This document will give you a quick overview of how

More information

Outlook Web App The Basics

Outlook Web App The Basics Outlook Web App (OWA) is accessible from any compatible web browser, on or off campus. It is available to all users of the UR Exchange 2010 email service. These basic instructions will get you started.

More information

Outlook 2007 Email and Calendaring

Outlook 2007 Email and Calendaring Outlook 2007 Email and Calendaring The Outlook Calendar Environment... 2 The Different Calendar Views... 3 Creating Appointments/Events/Meetings in Your Calendar... 4 Creating an Appointment the Speedy

More information

Information Systems Services. Getting Started with Enterprise Vault Email Archiving A guide for Outlook/Exchange users March 2008

Information Systems Services. Getting Started with Enterprise Vault Email Archiving A guide for Outlook/Exchange users March 2008 Information Systems Services Getting Started with Enterprise Vault Email Archiving March 2008 Contents 1. Introduction... 3 2. Supported operating systems, email clients and browsers... 3 3. Getting started

More information

CMU/SCS Computing Facilities. Microsoft Outlook 2010 Calendar Guide

CMU/SCS Computing Facilities. Microsoft Outlook 2010 Calendar Guide CMU/SCS Computing Facilities Microsoft Outlook 2010 Calendar Guide Table of Contents Opening Outlook... 2 Finding your Calendar... 2 Creating entries on your calendar... 2 Appointments... 2 Meetings...

More information

Double-click an appointment to view the details.

Double-click an appointment to view the details. Calendar The GroupWise calendar allows you to do everything from scheduling appointments to marking all-day events to checking off tasks. Click the Calendar tab on the Navigation bar or click Calendar

More information

How to access and use webmail

How to access and use webmail Accessing Webmail 1. Browse to portal.office.com 2. Enter your Office 365 email address and password and click Sign In 3. Once you are signed in you will see the following web page. To view emails click

More information

Intellect Platform - The Workflow Engine Basic HelpDesk Troubleticket System - A102

Intellect Platform - The Workflow Engine Basic HelpDesk Troubleticket System - A102 Intellect Platform - The Workflow Engine Basic HelpDesk Troubleticket System - A102 Interneer, Inc. Updated on 2/22/2012 Created by Erika Keresztyen Fahey 2 Workflow - A102 - Basic HelpDesk Ticketing System

More information

Table of Contents. 1. Introduction to the Outlook Mail Client

Table of Contents. 1. Introduction to the Outlook Mail Client M icrosoft Outlook is the Microsoft s flagship messaging tool for email, calendaring and information sharing for Microsoft Exchange Server and is the supported client at. This manual will provide an introduction

More information

Office 365 Employee Email San Jac Outlook 2013

Office 365 Employee Email San Jac Outlook 2013 Office 365 Employee Email San Jac Outlook 2013 Interface Overview 1. Quick Access Toolbar contains shortcuts for the most commonly used tools. 2. File tab (Backstage View) contains tools to manage account

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 Software version 2.3 D14846.03 August 2013 Contents Introduction 4 End user guidance 4 Server requirements 5 Exchange

More information