Guide to Integrate ADSelfService Plus with Outlook Web App

Size: px
Start display at page:

Download "Guide to Integrate ADSelfService Plus with Outlook Web App"

Transcription

1 Guide to Integrate ADSelfService Plus with Outlook Web App

2 Contents Document Summary... 3 ADSelfService Plus Overview... 3 ADSelfService Plus Integration with Outlook Web App... 3 Steps Involved... 4 For OWA 2013:... 4 Step 1: Locate the OWA logon form (logon.aspx file)... 4 Step 2: Configure the logon form to include Reset Password/Unlock Account link... 5 For OWA 2010 and Older: Step 1: Locate the OWA logon form (logon.aspx file) Step 2: Configure the logon form to include Reset Password/Unlock Account link... 12

3 Document Summary This document will guide you through the integration of ADSelfService Plus with Outlook Web App (OWA). The document has been separated into three sections. The first section will give you an overview of ADSelfService Plus and its features, while the second briefly describes about its integration with OWA. The third section gives you a detailed yet simple account of the steps involved in integrating ADSelfService Plus with OWA. This document is written with the assumption that the reader has a basic knowledge of OWA and editing html files. ADSelfService Plus Overview ADSelfService Plus is a secure, web-based, end-user password reset management program. With ADSelfService Plus, end-users can: Self-service Reset Password Self-service Unlock Account Receive Password/Account Expiry Notification Self-service Update directory information Search Corporate/Employee directory Winlogon (Ctrl+Alt+Del) Password Reset It helps administrators to delegate the task of password reset and account unlock to endusers, while minimizing the cost and effort involved with help desk calls. ADSelfService Plus Integration with Outlook Web App To access your Exchange Mailbox, you need to have an client such as Outlook installed on your computer, and it should be always connected to your organization s network. But, what happens when you are on the move or don t have access to a computer with an client installed? Outlook Web App eliminates such dependencies and offers access to your Exchange Mailbox over the internet through a simple web browser.

4 Integrating ADSelfService Plus with Outlook Web App will place a Reset Password/Unlock Account link in the login page of OWA. Hence, even if users forget their passwords and need to access their Exchange Mailbox, they can simply reset their passwords using ADSelfService Plus from OWA login page itself. Steps Involved To integrate ADSelfService Plus with Outlook Web App, you need to edit the Outlook Web App Logon Form to include the Reset Password/Unlock Account link. Please follow the steps given below: For OWA 2013: Step 1: Locate the OWA logon form (logon.aspx file) 1) Open the Internet Information Services (IIS) Manager (Start Administrative Tools Internet Information Services (IIS) Manager) 2) In the left pane of the IIS manger console, expand Sites Default Web Site OWA 3) Right-click auth folder and select Explore

5 4) This will open the auth folder window where you can find the OWA logon form (logon.aspx file) Step 2: Configure the logon form to include Reset Password/Unlock Account link Note: Take a backup copy of logon.aspx file before proceeding with the steps given below. 1) Open the logon.aspx file in a html editor of your choice 2) Locate the following code section: <div class="signininputlabel" id="usernamelabel" ariahidden="true"><%=usernamelabel%></div> <div><input id="username" name="username" class="signininputtext" role="textbox" arialabelledby="usernamelabel"/></div>

6 <div class="signininputlabel" id="passwordlabel" ariahidden="true"><%=localizedstrings.gethtmlencoded(strings.ids.pas swordcolon) %></div> <div><input id="password" onfocus="g_ffcs=0" name="password" value="" type="password" class="signininputtext" arialabelledby="passwordlabel"/></div> <div class="showpasswordcheck checkboxlabel"><input type="checkbox" id="showpasswordcheck" class="chk" onclick="showpasswordclick()" /><%=LocalizedStrings.GetHtmlEncoded(Strings.IDs.ShowPassword)%> </div> <!--ADSSP--> <div class="signininputlabel" style="font-size:14px;"><a style="text-decoration:none;color:#0072c6;" target="_blank" href="[url_to_your_server]">forgot Password?</a></div> <!--END ADSSP--> <% if (ShowPublicPrivateSelection) { %> <div class="signincheckboxtext"> <input id="chkprvt" onclick="clksec()" name="trusted" value="4" type="checkbox" class="chk" checked role="checkbox" aria-labelledby="privatelabel"/> <span id="privatelabel" class="checkboxlabel" ariahidden="true"><%=localizedstrings.gethtmlencoded(strings.ids.thi sisaprivatecomputer)%></span> <%=(IsRtl? " " : " ") + LocalizedStrings.GetHtmlEncoded(Strings.IDs.OpenParentheses)%> <a href="#" class="signincheckboxlink" id="lnkshwsec" onclick="clksecexp('lnkshwsec')" role="link"> <%=LocalizedStrings.GetHtmlEncoded(Strings.IDs.ShowExplanation)% > </a>

7 <a href="#" class="signincheckboxlink" id="lnkhdsec" onclick="clksecexp('lnkhdsec')" style="display:none" role="link"> <%=LocalizedStrings.GetHtmlEncoded(Strings.IDs.HideExplanation)% > </a> <%=LocalizedStrings.GetHtmlEncoded(Strings.IDs.CloseParentheses) + (IsRtl? " " : " ")%> </div> <div id="prvtexp" class="signinexpl" style="display:none" role="note"><%=localizedstrings.gethtmlencoded(strings.ids.priva teexplanation)%></div> <div id="prvtwrn" class="signinwarning" style="display:none" role="note"><%=localizedstrings.gethtmlencoded(strings.ids.priva tewarning)%></div> <% } %> 3) Replace the above section of codes with the code given below: <div class="signininputlabel" id="usernamelabel" ariahidden="true"><%=usernamelabel%></div> <div><input id="username" name="username" class="signininputtext" role="textbox" arialabelledby="usernamelabel"/></div> <div class="signininputlabel" id="passwordlabel" ariahidden="true"><%=localizedstrings.gethtmlencoded(strings.ids.pas swordcolon) %></div> <div><input id="password" onfocus="g_ffcs=0" name="password" value="" type="password" class="signininputtext" arialabelledby="passwordlabel"/></div>

8 <div class="showpasswordcheck checkboxlabel"><input type="checkbox" id="showpasswordcheck" class="chk" onclick="showpasswordclick()" /><%=LocalizedStrings.GetHtmlEncoded(Strings.IDs.ShowPassword)%> </div> <!--ADSSP--> <div class="signininputlabel" style="font-size:14px;"><a style="text-decoration:none;color:#0072c6;" target="_blank" href="[url_to_your_server]">forgot Password?</a></div> <!--END ADSSP--> <% if (ShowPublicPrivateSelection) { %> <div class="signincheckboxtext"> <input id="chkprvt" onclick="clksec()" name="trusted" value="4" type="checkbox" class="chk" checked role="checkbox" aria-labelledby="privatelabel"/> <span id="privatelabel" class="checkboxlabel" ariahidden="true"><%=localizedstrings.gethtmlencoded(strings.ids.thi sisaprivatecomputer)%></span> <%=(IsRtl? " " : " ") + LocalizedStrings.GetHtmlEncoded(Strings.IDs.OpenParentheses)%> <a href="#" class="signincheckboxlink" id="lnkshwsec" onclick="clksecexp('lnkshwsec')" role="link"> <%=LocalizedStrings.GetHtmlEncoded(Strings.IDs.ShowExplanation)% > </a> <a href="#" class="signincheckboxlink" id="lnkhdsec" onclick="clksecexp('lnkhdsec')" style="display:none" role="link"> <%=LocalizedStrings.GetHtmlEncoded(Strings.IDs.HideExplanation)% > </a>

9 <%=LocalizedStrings.GetHtmlEncoded(Strings.IDs.CloseParentheses) + (IsRtl? " " : " ")%> </div> <div id="prvtexp" class="signinexpl" style="display:none" role="note"><%=localizedstrings.gethtmlencoded(strings.ids.priva teexplanation)%></div> <div id="prvtwrn" class="signinwarning" style="display:none" role="note"><%=localizedstrings.gethtmlencoded(strings.ids.priva tewarning)%></div> <% } %> Replace [URL_TO_YOUR_SERVER] with ADSelfService Plus server name. For e.g.: <div class="signininputlabel" style="font-size:14px;"><a style="textdecoration:none;color:#0072c6;" target="_blank" href=" Password?</a></div>

10 4) Save and then close the file. Now, open your Outlook Web App page from a browser and verify whether the Reset Password link works properly.

11 For OWA 2010 and Older: Step 1: Locate the OWA logon form (logon.aspx file) 1) Open the Internet Information Services (IIS) Manager (Start Administrative Tools Internet Information Services (IIS) Manager) 2) In the left pane of the IIS manger console, expand Sites Default Web Site OWA 3) Right-click auth folder and select Explore

12 4) This will open the auth folder window where you can find the OWA logon form (logon.aspx file) Step 2: Configure the logon form to include Reset Password/Unlock Account link Note: Take a backup copy of logon.aspx file before proceeding with the steps given below. 1) Open the logon.aspx file in a html editor of your choice 2) Locate the following code section: <table <%=tblstyle%>> <col class="nowrap"> <col class="w100"> <col> <tr> <td nowrap><label for="username"><%=usernamelabel%></label></td> <td class="txtpad"><input id="username" name="username" type="text" class="txt"></td>

13 </tr> <tr> <td nowrap><label for="password"><%=localizedstrings.gethtmlencoded(strings.ids.pa sswordcolon) %></label></td> <td class="txtpad"><input id="password" name="password" type="password" class="txt" onfocus="g_ffcs=0"></td> </tr> <tr> <td colspan=2 align="right" class="txtpad"> <% if (!IsDownLevelClient) { %> <input type="submit" class="btn" value="<%=localizedstrings.gethtmlencoded(strings.ids.logon) %>" onclick="clklgn()" onmouseover="this.classname='btnonmseovr'" onmouseout="this.classname='btn'" onmousedown="this.classname='btnonmsedwn'"> </input> <% } %> <% else { %> <input type="submit" class="btn" value="<%=localizedstrings.gethtmlencoded(strings.ids.logon) %>" onclick="clklgn()"> <% } %> <input name="isutf8" type="hidden" value="1"> </td> </tr> </table> 3) Replace the above section of codes with the code given below: <table <%=tblstyle%>> <col class="nowrap"> <col class="w100"> <col> <tr> <td nowrap><label for="username"><%=usernamelabel%></label></td> <td class="txtpad"><input id="username" name="username" type="text" class="txt"></td> </tr> <tr>

14 <td nowrap><label for="password"><%=localizedstrings.gethtmlencoded(strings.ids.pa sswordcolon) %></label></td> <td class="txtpad"><input id="password" name="password" type="password" class="txt" onfocus="g_ffcs=0"></td> </tr> <! ADSSP--> <tr> <td><a href=<%="[url_to_your_server]"%> target="_blank">reset Password...</a></td> </tr> <!--END ADSSP--> <tr> <td colspan=2 align="right" class="txtpad"> <% if (!IsDownLevelClient) { %> <input type="submit" class="btn" value="<%=localizedstrings.gethtmlencoded(strings.ids.logon) %>" onclick="clklgn()" onmouseover="this.classname='btnonmseovr'" onmouseout="this.classname='btn'" onmousedown="this.classname='btnonmsedwn'"> </input> <% } %> <% else { %> <input type="submit" class="btn" value="<%=localizedstrings.gethtmlencoded(strings.ids.logon) %>" onclick="clklgn()"> <% } %> <input name="isutf8" type="hidden" value="1"> </td> </tr> </table> Replace [URL_TO_YOUR_SERVER] with ADSelfService Plus server name. For e.g.: <td><a href=<%=" target="_blank">reset Password...</a></td> 4) Save and then close the file.

15 Now, open your Outlook Web App page from a browser and verify whether the Reset Password link works properly.

ADSelfService Plus: 3rd party Winlogon Client Software Support

ADSelfService Plus: 3rd party Winlogon Client Software Support ADSelfService Plus: 3rd party Winlogon Client Software Support 1 Contents ADSelfService Plus - Introduction:... 3 ADSelfService Plus Client Software:... 3 Support for 3rd party GINA/Credential Provider

More information

ADSelfService Plus Client Software Installation Guide

ADSelfService Plus Client Software Installation Guide ADSelfService Plus Client Software Installation Guide ( I n s t a l l a t io n t h r o u g h A DS e l f S e r v ic e P l u s w e b p o r t a l a n d M a n u a l I n s t a l l a t io n ) 1 Table of Contents

More information

ManageEngine ADSelfService Plus. Evaluator s Guide

ManageEngine ADSelfService Plus. Evaluator s Guide ManageEngine ADSelfService Plus Evaluator s Guide Table of Contents Document Summary:...3 ADSelfService Plus Overview:...3 Core Features & Benefits:...4 ADSelfService Plus Architecture:...5 Admin Portal:...

More information

(Installation through ADSelfService Plus web portal and Manual Installation)

(Installation through ADSelfService Plus web portal and Manual Installation) ADSelfService Plus Client Software Installation Guide (Installation through ADSelfService Plus web portal and Manual Installation) 1 Table of Contents Introduction:... 3 ADSelfService Plus Client software:...

More information

Cisco Adaptive Security Appliance (ASA) Web VPN Portal Customization: Solution Brief

Cisco Adaptive Security Appliance (ASA) Web VPN Portal Customization: Solution Brief Guide Cisco Adaptive Security Appliance (ASA) Web VPN Portal Customization: Solution Brief Author: Ashur Kanoon August 2012 For further information, questions and comments please contact ccbu-pricing@cisco.com

More information

HELP DOCUMENTATION SSRPM CITRIX AND MICROSOFT TERMINAL SERVICES

HELP DOCUMENTATION SSRPM CITRIX AND MICROSOFT TERMINAL SERVICES HELP DOCUMENTATION SSRPM CITRIX AND MICROSOFT TERMINAL SERVICES Copyright 1998-2013 Tools4ever B.V. All rights reserved. No part of the contents of this user guide may be reproduced or transmitted in any

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

ecommercesoftwareone Advance User s Guide -www.ecommercesoftwareone.com

ecommercesoftwareone Advance User s Guide -www.ecommercesoftwareone.com Advance User s Guide -www.ecommercesoftwareone.com Contents Background 3 Method 4 Step 1 - Select Advance site layout 4 Step 2 - Identify Home page code of top/left and bottom/right sections 6 Step 3 -

More information

Exchange 2010 PKI Configuration Guide

Exchange 2010 PKI Configuration Guide Exchange 2010 PKI Configuration Guide Overview 1. Summary 2. Environment 3. Configuration a) Active Directory Configuration b) CA Configuration c) Exchange Server IIS Configuration d) Exchange Configuration

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

HTML Tables. IT 3203 Introduction to Web Development

HTML Tables. IT 3203 Introduction to Web Development IT 3203 Introduction to Web Development Tables and Forms September 3 HTML Tables Tables are your friend: Data in rows and columns Positioning of information (But you should use style sheets for this) Slicing

More information

NCH Secure Web Delivery Instructions

NCH Secure Web Delivery Instructions NCH Secure Web Delivery Instructions Typically when you send an email to a person, it is sent in Clear Text and can be viewed as it traverses the internet. Email is typically not considered a good vehicle

More information

ADSelfService Plus: Guide to Install SSL Certificate. 1 P a g e

ADSelfService Plus: Guide to Install SSL Certificate. 1 P a g e ADSelfService Plus: Guide to Install SSL Certificate 1 P a g e Contents Document Summary:... 3 ADSelfService Plus Overview:... 3 Why do you need SSL Certification?... 3 Steps for Enabling SSL:... 4 Step

More information

Password Manager Windows Desktop Client

Password Manager Windows Desktop Client Password Manager Windows Desktop Client EmpowerID provides an extension that allows organizations to plug into Password Manager to customize the Windows logon experience beyond that supplied by the standard

More information

Grand Blanc Community Schools

Grand Blanc Community Schools Mailbox Quotas August 1, 2012 Grand Blanc Community Schools The District s Exchange server is in need of software updates in order to maximize server performance. There is not enough space on the server

More information

Table of Contents WELCOME TO AD360... 2. Welcome to AD360... 2. Contact Us... 4 GETTING STARTED... 6. Getting Started... 6. Sysem Requirements...

Table of Contents WELCOME TO AD360... 2. Welcome to AD360... 2. Contact Us... 4 GETTING STARTED... 6. Getting Started... 6. Sysem Requirements... Table of Contents WELCOME TO AD360... 2 Welcome to AD360... 2 Contact Us... 4 GETTING STARTED... 6 Getting Started... 6 Sysem Requirements... 7 Installing AD360... 8 Deployment Scenarios... 9 Working with

More information

WHITEPAPER. Skinning Guide. Let s chat. 800.9.Velaro www.velaro.com info@velaro.com. 2012 by Velaro

WHITEPAPER. Skinning Guide. Let s chat. 800.9.Velaro www.velaro.com info@velaro.com. 2012 by Velaro WHITEPAPER Skinning Guide Let s chat. 2012 by Velaro 800.9.Velaro www.velaro.com info@velaro.com INTRODUCTION Throughout the course of a chat conversation, there are a number of different web pages that

More information

Introducing the FirePass and Microsoft Exchange Server configuration

Introducing the FirePass and Microsoft Exchange Server configuration Deployment Guide Deploying Microsoft Exchange Server/Outlook Web Access and F5 s FirePass Controller Introducing the FirePass and Microsoft Exchange Server configuration Welcome to the FirePass Exchange

More information

McAfee One Time Password

McAfee One Time Password McAfee One Time Password Integration Module Outlook Web App 2010 Module version: 1.3.1 Document revision: 1.3.1 Date: Feb 12, 2014 Table of Contents Integration Module Overview... 3 Prerequisites and System

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

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

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

DIGIPASS Authentication for Microsoft ISA 2006 Single Sign-On for Outlook Web Access

DIGIPASS Authentication for Microsoft ISA 2006 Single Sign-On for Outlook Web Access DIGIPASS Authentication for Microsoft ISA 2006 Single Sign-On for Outlook Web Access With IDENTIKEY Server / Axsguard IDENTIFIER Integration Guidelines Disclaimer Disclaimer of Warranties and Limitations

More information

Protecting Juniper SA using Certificate-Based Authentication. Quick Start Guide

Protecting Juniper SA using Certificate-Based Authentication. Quick Start Guide Protecting Juniper SA using Certificate-Based Authentication Copyright 2013 SafeNet, Inc. All rights reserved. All attempts have been made to make the information in this document complete and accurate.

More information

Contents 1. Introduction 2. Security Considerations 3. Installation 4. Configuration 5. Uninstallation 6. Automated Bulk Enrollment 7.

Contents 1. Introduction 2. Security Considerations 3. Installation 4. Configuration 5. Uninstallation 6. Automated Bulk Enrollment 7. Contents 1. Introduction 2. Security Considerations 3. Installation 4. Configuration 5. Uninstallation 6. Automated Bulk Enrollment 7. Troubleshooting Introduction Adaxes Self-Service Client provides secure

More information

Citrix Single Sign-On Self-Service Password Reset

Citrix Single Sign-On Self-Service Password Reset Citrix Single Sign-On Self-Service Password Reset Citrix Single Sign-On (SSO) Self-Service tools enable you to take control when you forget your password. Using the three security questions you established

More information

SAM Context-Based Authentication Using Juniper SA Integration Guide

SAM Context-Based Authentication Using Juniper SA Integration Guide SAM Context-Based Authentication Using Juniper SA Integration Guide Revision A Copyright 2012 SafeNet, Inc. All rights reserved. All attempts have been made to make the information in this document complete

More information

Directory and Messaging Services Enterprise Secure Mail Services

Directory and Messaging Services Enterprise Secure Mail Services Title: Directory and Messaging Services Enterprise Secure Mail Services Enterprise Secure Mail Services for End Users Attention: Receivers of Secure Mail Retrieval of Secure Mail by the Recipient Once

More information

Table of Contents. Welcome to ADSelfService Plus... 3. Contact AdventNet... 4. Getting Started... 6

Table of Contents. Welcome to ADSelfService Plus... 3. Contact AdventNet... 4. Getting Started... 6 Table of Contents Welcome to ADSelfService Plus... 3 Contact AdventNet... 4 Getting Started... 6 System Requirements for ADSSP... 7 Installing ADSelfService Plus... 8 Working with ADSelfService Plus...

More information

ManageEngine ADSolutions

ManageEngine ADSolutions ManageEngine ADSolutions We Think. We Innovate. We dare to differ. So that you go home happy. Apu Pavithran Product Consultant apupavithran@manageengine.com ADSolutions: Innovations We Introduced Pioneers

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

Monash Health Self Service

Monash Health Self Service Monash Health Self Service Table of Contents Monash Health Self Service Password Reset \ Account Unlock via a Non-Monash Workstation... 2 Monash Health Self Service Password Reset \ Account Unlock via

More information

Employee Active Directory Self-Service Quick Setup Guide

Employee Active Directory Self-Service Quick Setup Guide Employee Active Directory Self-Service Quick Setup Guide (V2.0) Last update: 11/5/2014 Copyright 2014 InfraDog Inc. All rights reserved Corporate Phone: +1 (416) 473-4096, Fax: +1 (888) 863-3936, Email:

More information

How to Guide Outlook Web Access 2010

How to Guide Outlook Web Access 2010 How to Guide Outlook Web Access 2010 If you have questions about any of the items in this guide, contact the IS Service Desk at 85-2400 or 414-326-2400. Outlook Web Access (OWA) provides Web-based email

More information

USER GUIDE WWPass Security for Email (Outlook) For WWPass Security Pack 2.4

USER GUIDE WWPass Security for Email (Outlook) For WWPass Security Pack 2.4 USER GUIDE WWPass Security for Email (Outlook) For WWPass Security Pack 2.4 March 2014 TABLE OF CONTENTS Chapter 1 Welcome... 4 Introducing WWPass Security for Email (Outlook)... 5 Supported Outlook Products...

More information

Collaborate.ets.org Password Setup & Recovery Guide. Table of Contents

Collaborate.ets.org Password Setup & Recovery Guide. Table of Contents MyPassword is a self-service password management tool. Collaborate.ets.org Password Setup & Recovery Guide https://mypassword.ets.org/ Table of Contents Create/Edit Your Profile (First time use)... I Change

More information

Entrust Managed Services PKI

Entrust Managed Services PKI Entrust Managed Services PKI Entrust Managed Services PKI Windows Smart Card Logon Configuration Guide Using Web-based applications Document issue: 1.0 Date of Issue: June 2009 Copyright 2009 Entrust.

More information

Outlook Web Access Tipsheets

Outlook Web Access Tipsheets You can use a Web browser to access your Outlook mailbox from any computer with an Internet connection. You can use Outlook Web Access with Microsoft Internet Explorer, Mozilla Firefox and many other browsers.

More information

Email - Outlook Web App

Email - Outlook Web App ITS Computing Guide IT Services www.its.salford.ac.uk Email - Outlook Web App Web access to an email account provides the following benefits: Access your email from a computer with an internet connection,

More information

Outlook Web App (Online)... 3 Outlook 2013 (Desktop)... 16 Apple Mail Mobile Devices... 33 Android... 33 iphone... 40

Outlook Web App (Online)... 3 Outlook 2013 (Desktop)... 16 Apple Mail Mobile Devices... 33 Android... 33 iphone... 40 Webmail Tutorials Page 2 Table of Contents Outlook Web App (Online)... 3 How do I send an email?... 3 How do I create rules to manage my email?... 3 How do I forward email to my personal account?... 4

More information

Script Handbook for Interactive Scientific Website Building

Script Handbook for Interactive Scientific Website Building Script Handbook for Interactive Scientific Website Building Version: 173205 Released: March 25, 2014 Chung-Lin Shan Contents 1 Basic Structures 1 11 Preparation 2 12 form 4 13 switch for the further step

More information

Working with RD Web Access in Windows Server 2012

Working with RD Web Access in Windows Server 2012 Working with RD Web Access in Windows Server 2012 Introduction to RD Web Access So far in this series we have talked about how to successfully deploy and manage a Microsoft Windows Server 2012 VDI environment.

More information

CS412 Interactive Lab Creating a Simple Web Form

CS412 Interactive Lab Creating a Simple Web Form CS412 Interactive Lab Creating a Simple Web Form Introduction In this laboratory, we will create a simple web form using HTML. You have seen several examples of HTML pages and forms as you have worked

More information

Course Outline: Course 10165: Updating Your Skills from Microsoft Exchange Server 2003 or Exchange

Course Outline: Course 10165: Updating Your Skills from Microsoft Exchange Server 2003 or Exchange Course Outline: Course 10165: Updating Your Skills from Microsoft Exchange Server 2003 or Exchange Server 2007 to Exchange Server 2010 Learning Method: Instructor-led Classroom Learning Duration: 5.00

More information

PAHO Self-Service Password Management Quick Reference Guide December 2014

PAHO Self-Service Password Management Quick Reference Guide December 2014 PAHO Self-Service Password Management Quick Reference Guide December 2014 Information Technology Services (ITS) PAHO Network Password Management and Recovery Using ADSelfService Quick Reference Guide NOTE:

More information

Active Directory Self-Service Bundle

Active Directory Self-Service Bundle Active Directory Self-Service Bundle Makes life easier for the IT department ZervicePoint Active Directory Self-Service Bundle include a set of services that makes life easier for the IT department that

More information

3. Viewing and Restoring Email Items and Files from the Mimosa Archive

3. Viewing and Restoring Email Items and Files from the Mimosa Archive 1. Introduction The Mimosa Archive Self-service Retrieve (SSR) Client provides access to email items archived using the NearPoint system. You can use the Mimosa Archive SSR Client to perform the following

More information

What s New in Exchange 2010?

What s New in Exchange 2010? What s New in Exchange 2010? A quick guide to the most significant changes you will see when your account is migrated to Exchange 2010 The Top 10 Changes in Exchange 2010..2 Email Retention and Archives..3

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

Active Directory Management. User Interface Guide

Active Directory Management. User Interface Guide Active Directory Management User Interface Guide Document Revision Date: April 15, 2013 Active Directory Management User Interface Guide i Contents Launching the Hosted Exchange Tab - Active Directory

More information

Getting Started with your Hosted Microsoft Exchange 2010 Administrators Quick Start Guide to Hosted Exchange 2010

Getting Started with your Hosted Microsoft Exchange 2010 Administrators Quick Start Guide to Hosted Exchange 2010 Administrators Quick Start Guide to Hosted Exchange 2010 Copyright 2010 Plateau Ltd. dba active-server.com Page 1 Contents Getting Started with Hosted Microsoft Exchange Server 2010... 3 Part 1 - Administrative

More information

Website Login Integration

Website Login Integration SSO Widget Website Login Integration October 2015 Table of Contents Introduction... 3 Getting Started... 5 Creating your Login Form... 5 Full code for the example (including CSS and JavaScript):... 7 2

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

User guide. Business Email

User guide. Business Email User guide Business Email June 2013 Contents Introduction 3 Logging on to the UC Management Centre User Interface 3 Exchange User Summary 4 Downloading Outlook 5 Outlook Configuration 6 Configuring Outlook

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

Using Internet or Windows Explorer to Upload Your Site

Using Internet or Windows Explorer to Upload Your Site Using Internet or Windows Explorer to Upload Your Site This article briefly describes what an FTP client is and how to use Internet Explorer or Windows Explorer to upload your Web site to your hosting

More information

Exchange Server 2003 Management Pack Guide for Operations Manager 2007

Exchange Server 2003 Management Pack Guide for Operations Manager 2007 Exchange Server 2003 Management Pack Guide for Operations Manager 2007 Running the Exchange Server 2003 Management Pack Configuration Wizard This section covers Configuration Wizard requirements and options

More information

Password Policy Enforcer

Password Policy Enforcer Password Policy Enforcer Evaluator s Guide V7.6 Copyright 1998-2013 ANIXIS. All rights reserved. ANIXIS, ANIXIS Password Reset, Password Policy Enforcer, PPE/Web, Password Policy Client, Password Policy

More information

Intell-a-Keeper Reporting System Technical Programming Guide. Tracking your Bookings without going Nuts! http://www.acorn-is.

Intell-a-Keeper Reporting System Technical Programming Guide. Tracking your Bookings without going Nuts! http://www.acorn-is. Intell-a-Keeper Reporting System Technical Programming Guide Tracking your Bookings without going Nuts! http://www.acorn-is.com 877-ACORN-99 Step 1: Contact Marian Talbert at Acorn Internet Services at

More information

We optimize your enterprise using Active Directory

We optimize your enterprise using Active Directory Global leader in systems management and security solutions for Active Directory & Group Policy based environment. With extensive real world knowledge and experience, JiJi Technologies Private Limited maximizes

More information

Microsoft Exchange Hosted Archive (MEHA)

Microsoft Exchange Hosted Archive (MEHA) Microsoft Exchange Hosted Archive (MEHA) All the Features of NYSeMAIL Archiving including Using for Business Continuity Using MEHA Using MEHA The Microsoft Exchange Hosted Archive (MEHA) can be accessed

More information

Managing Web Authentication

Managing Web Authentication Obtaining a Web Authentication Certificate, page 1 Web Authentication Process, page 4 Choosing the Default Web Authentication Login Page, page 7 Using a Customized Web Authentication Login Page from an

More information

Introduction to XHTML. 2010, Robert K. Moniot 1

Introduction to XHTML. 2010, Robert K. Moniot 1 Chapter 4 Introduction to XHTML 2010, Robert K. Moniot 1 OBJECTIVES In this chapter, you will learn: Characteristics of XHTML vs. older HTML. How to write XHTML to create web pages: Controlling document

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 Archiving and Storage

Outlook Archiving and Storage Outlook Archiving and Storage This document provides information related to storing and archiving e-mail in Outlook, including Outlook s auto archive feature, techniques for avoiding reaching your mailbox

More information

How-to Guide Technical instructions for quick, easy and customizable web tools.

How-to Guide Technical instructions for quick, easy and customizable web tools. Advertising Toolkit for Healthcare Providers How-to Guide Technical instructions for quick, easy and customizable web tools. contents Advertising Toolkit...3 Custom Apply Link...4 Sample Webpage...5 Payment

More information

Live@edu User Guide. Please visit the Helpdesk website for more information: http://www.smu.edu.sg/iits/helpdesk_support/index.asp

Live@edu User Guide. Please visit the Helpdesk website for more information: http://www.smu.edu.sg/iits/helpdesk_support/index.asp IITS Main Office SINGAPORE MANAGEMENT UNIVERSITY Administration Building, Level 11 81, Victoria Street Singapore 188065 Phone: 65-6828 1930 Email: iits@smu.edu.sg Please visit the Helpdesk website for

More information

MS 10135B Configuring, Managing and Troubleshooting Microsoft Exchange Server 2010

MS 10135B Configuring, Managing and Troubleshooting Microsoft Exchange Server 2010 MS 10135B Configuring, Managing and Troubleshooting Microsoft Exchange Server 2010 Description: Days: 5 Prerequisites: This course will provide you with the knowledge and skills to configure and manage

More information

Microsoft Exchange 2010 and 2007

Microsoft Exchange 2010 and 2007 Microsoft Exchange 2010 and 2007 Download the server certificate and intermediate certificates. Perform the following procedure for each of the intermediate certificates and then for the server certificate.

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

econtrol 3.5 for Active Directory & Exchange Self-Service Guide

econtrol 3.5 for Active Directory & Exchange Self-Service Guide econtrol 3.5 for Active Directory & Exchange Self-Service Guide This Guide Welcome to the econtrol 3.5 for Active Directory and Exchange Self-Service Guide. This guide is econtrol end-users who have been

More information

AD Certificate Distribution

AD Certificate Distribution Technical Brief AD Certificate Distribution Contents Introduction 2 Preparation 2 Server Actions 4 Active Directory Actions 5 Appendix A: Scripts zip 10 INTRODUCTION M86-Security provides a solution for

More information

DIRECTORY PASSWORD V1.2 Quick Start Guide

DIRECTORY PASSWORD V1.2 Quick Start Guide DIRECTORY PASSWORD V1.2 Quick Start Guide Directory Password is a self-service password reset / account unlock tool that is an optional add-on for Directory Update v2.5. Directory Update must be installed

More information

Active Directory Self-Service FAQ

Active Directory Self-Service FAQ Active Directory Self-Service FAQ General Information: info@cionsystems.com Online Support: support@cionsystems.com CionSystems Inc. Mailing Address: 16625 Redmond Way, Ste M106 Redmond, WA. 98052 http://www.cionsystems.com

More information

Mobility Manager 9.5. Users Guide

Mobility Manager 9.5. Users Guide Mobility Manager 9.5 Users Guide LANDESK MOBILITY MANAGER Copyright 2002-2013, LANDesk Software, Inc. and its affiliates. All rights reserved. LANDesk and its logos are registered trademarks or trademarks

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

Configuration Task 3: (Optional) As part of configuration, you can deploy rules. For more information, see "Deploy Inbox Rules" below.

Configuration Task 3: (Optional) As part of configuration, you can deploy rules. For more information, see Deploy Inbox Rules below. Configure the E-mail Router After the E-mail Router has been installed, you can configure several aspects of it. Some of these configuration tasks are mandatory. Others are optional in that you use them

More information

Outlook Web App User Guide

Outlook Web App User Guide Outlook Web App Table of Contents QUICK REFERENCE... 2 OUTLOOK WEB APP URL... 2 Imagine! Help Desk...... 2 OUTLOOK WEB APP MAIN WINDOW... 2 KEY NEW FEATURES... 3 GETTING STARTED WITH OUTLOOK... 4 LOGGING

More information

Mobile Iron User Guide

Mobile Iron User Guide 2015 Mobile Iron User Guide Information technology Sparrow Health System 9/1/2015 Contents...0 Introduction...2 Changes to your Mobile Device...2 Self Service Portal...3 Registering your new device...4

More information

Administrator s Plus. Backup Process. A Get Started Guide

Administrator s Plus. Backup Process. A Get Started Guide Administrator s Plus Backup Process A Get Started Guide Table of Contents Create a Backup... 1 Schedule an Automatic Backup... 3 Create a Backup Backing up your information is an important part of data

More information

DIRECTORY PASSWORD V1.0 Quick Start Guide

DIRECTORY PASSWORD V1.0 Quick Start Guide DIRECTORY PASSWORD V1.0 Quick Start Guide Directory Password is a self-service password reset / account unlock tool that is an optional add-on for Directory Update v2.0. Using Directory Password involves

More information

Administrators Help Manual

Administrators Help Manual Administrators Help Manual Lepide Active Directory Self Service Lepide Software Private Limited Page 1 Administrators Help Manual for Active Directory Self-Service Lepide Active Directory Self Service

More information

AskCody Connect Connect your Outlook or AD to AskCody s solutions seamlessly. Everything included!

AskCody Connect Connect your Outlook or AD to AskCody s solutions seamlessly. Everything included! AskCody Connect Connect your Outlook or AD to AskCody s solutions seamlessly. Everything included! Integrate the solutions from AskCody with your existing calendar system and create a complete, dynamic

More information

HelpDesk / Technical Support * 1350 Euclid Avenue Ste 1500 * Cleveland, OH 44115-1832 * 877-422- 4570

HelpDesk / Technical Support * 1350 Euclid Avenue Ste 1500 * Cleveland, OH 44115-1832 * 877-422- 4570 HelpDesk / Technical Support * 1350 Euclid Avenue Ste 1500 * Cleveland, OH 44115-1832 * 877-422- 4570 Enterprise Vault Quick Usage Guide GCA Services Group is now using Enterprise Vault (EV) to manage

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

Changing Passwords in Cisco Unity 8.x

Changing Passwords in Cisco Unity 8.x CHAPTER 9 Changing Passwords in Cisco Unity 8.x This chapter contains the following sections: Changing Passwords for the Cisco Unity 8.x Service Accounts (Without Failover), page 9-1 Changing Passwords

More information

Secrets of Event Viewer for Active Directory Security Auditing Lepide Software

Secrets of Event Viewer for Active Directory Security Auditing Lepide Software Secrets of Event Viewer for Active Directory Security Auditing Windows Event Viewer doesn t need any introduction to the IT Administrators. However, some of its hidden secrets, especially those related

More information

Getting Started with Exchange Unified Messaging

Getting Started with Exchange Unified Messaging Getting Started with Exchange Unified Messaging Welcome to Exchange Unified Messaging. This system will replace Clark s existing voice mail system and provide additional functionality. Microsoft Exchange

More information

Trend ScanMail. for Microsoft Exchange. Quick Start Guide

Trend ScanMail. for Microsoft Exchange. Quick Start Guide Trend ScanMail for Microsoft Exchange Quick Start Guide Trend ScanMail for Microsoft Exchange ScanMail for Exchange This Quick Start Guide provides a step-by-step guide to installing ScanMail for Exchange,

More information

Steps for: POP (Post Office Protocol) and IMAP (Internet Message Access Protocol) setup on MAC Platforms

Steps for: POP (Post Office Protocol) and IMAP (Internet Message Access Protocol) setup on MAC Platforms Steps for: POP (Post Office Protocol) and IMAP (Internet Message Access Protocol) setup on MAC Platforms The following instructions offer options for POP and IMAP e-mail retrieval locally on your MAC.

More information

CUNY TUMBLEWEED (SECURE TRANSPORT) USER GUIDE

CUNY TUMBLEWEED (SECURE TRANSPORT) USER GUIDE CUNY TUMBLEWEED (SECURE TRANSPORT) USER GUIDE INTRODUCTION Tumbleweed (Secure Transport) is used to provide secure file transfer of critical business files, financial transactions and sensitive data such

More information

Hosted Exchange 2010

Hosted Exchange 2010 Hosted Exchange 2010 More email flexibility. Less server hassle and cost. Add/remove mailboxes at any time to suit your needs Unlimited web traffic Choice of Premium or Basic mailboxes Hosted Exchange

More information

Introduction to Web Design Curriculum Sample

Introduction to Web Design Curriculum Sample Introduction to Web Design Curriculum Sample Thank you for evaluating our curriculum pack for your school! We have assembled what we believe to be the finest collection of materials anywhere to teach basic

More information

MUTUAL OF OMAHA SECURE EMAIL SYSTEM CLIENT/PARTNER USER GUIDE

MUTUAL OF OMAHA SECURE EMAIL SYSTEM CLIENT/PARTNER USER GUIDE MUTUAL OF OMAHA SECURE EMAIL SYSTEM CLIENT/PARTNER USER GUIDE Mutual of Omaha Secure Email Client/Partner User Guide April 2015 TABLE OF CONTENTS INTRODUCTION 3 About this Guide 3 CREATING A MUTUAL OF

More information

SAS Agent for Outlook Web Access

SAS Agent for Outlook Web Access SAS Agent for Outlook Web Access CUSTOMER RELEASE NOTES Version: 1.06 Build: 1.06.27725 Issue Date: 4 February 2015 Document Part Number: 007-012888-001, Rev. D Contents Product Description... 2 Release

More information

MailStore Outlook Add-in Deployment

MailStore Outlook Add-in Deployment MailStore Outlook Add-in Deployment A MailStore Server installation deploys the MailStore Outlook Add-in as a Windows Installer package (MSI) that can be installed on client machines using software distribution.

More information

UP L18 Enhanced MDM and Updated Email Protection Hands-On Lab

UP L18 Enhanced MDM and Updated Email Protection Hands-On Lab UP L18 Enhanced MDM and Updated Email Protection Hands-On Lab Description The Symantec App Center platform continues to expand it s offering with new enhanced support for native agent based device management

More information

For details for obtaining this later version; see the Known issues & Limitations, section at the end of this document.

For details for obtaining this later version; see the Known issues & Limitations, section at the end of this document. Note: This is the version of Entourage which comes as part of the Microsoft Office 2008 for Mac suite. Microsoft has now released Entourage 2008 Web Services Edition, in our testing this later version

More information