SPHOL300 Synchronizing Profile Pictures from On-Premises AD to SharePoint Online

Size: px
Start display at page:

Download "SPHOL300 Synchronizing Profile Pictures from On-Premises AD to SharePoint Online"

Transcription

1 SPHOL300 Synchronizing Profile Pictures from On-Premises AD to SharePoint Online

2 Contents Overview... 3 Introduction... 3 The Contoso Ltd. Scenario... 4 Exercise 1: Member Server Sign up for Office 365 E3 Trial... 5 Lab 1 Start your free 30-day trial : Working with Active Directory Connector : Create & Configure an Active Directory Connector... 6 Exercise 2: Domain Controller Prepare for directory synchronization... 9 Lab 2 Prepare for directory synchronization Incident Management Create, Escalate, Resolve and Close the Incident Exercise 3: Member Server Activate Active Directory Synchronization Lab 3 Activate Active Directory Synchronization Change Management New CR, Add Reviewers, Approver, Manual Activity Exercise 4: Member Server -Install and configure the Directory Sync Tool Exercise 5: Member Server - Verify directory synchronization and activate synchronized users Page 2 of 31

3 Overview Azure Active Directory Dirsync was formerly known as Dirsync, this tool has been updated to allow for the synchronization of local Active Directory passwords to Azure Active Directory. This new feature will allow for Same Sign In with Microsoft cloud services such as Office 365 Education powered by Azure Active Directory since the username and the password from local AD will by synced up to Azure AD. Introduction Estimated time to complete this lab 60 minutes Complete lab time estimate as accurately as possible. Objectives After completing this lab, you will be better able to: Overview of Lab This lab will guide the student through several process automation examples, providing hands on experience with the concepts explained in the student course manual. To provide real-world context, the guide is based on the Contoso, Ltd. scenario, a fictional organizations that is explained here and throughout the course. Virtual Machine Technology The computers in this lab are virtual machines that are implemented using Microsoft Hyper-V. When you have started a virtual machine, log on by clicking on Send CTRL+ALT+END and supply the credentials listed in the lab instructions. Page 3 of 31

4 Computers in this Lab This lab uses virtual machines as described in the following table. Before you begin the lab, you must start the virtual machines and then log on to the computers. Component Windows 2012 R2 AD Domain Controller Server: DC.Contoso.com Windows 2012 Member Server Server: SYNC.Contoso.com Description Runs the Active Directory instance for the Contoso.com domain used by all systems in this Contoso scenario. Runs the Azure Active Directory Dirsync Tool to synch onprem users, groups and contacts to Azure Active Directory. All user accounts in this lab use the password LS1setup! The Contoso Ltd. Scenario Page 4 of 31

5 To provide real-world context for the step-by-step procedures, we have created a fictitious organizational with technical and business challenges described in various scenarios in this lab manual. Our scenario takes place at a fictional company, Contoso Ltd. Exercise 1: System Center Service Manager Active Directory Connector Lab 1 Creating an Active Directory Connector to Import Data from AD Virtual Machines: SYNC Username: CONTOSO\administrator Password: LS1setup! Estimated time to complete: 20 minutes To log onto the virtual machine, press CTRL-ALT-END To switch to full screen mode, press CTRL-ALT-BREAK Scenario: Page 5 of 31

6 Contoso wants evaluate Office 365 E3 Plan. Contoso has decided to import users, groups, and computers from Active Directory since these are the only objects that are covered by the Configurations Management policy for CI objects. To do this, you need to do the following:- 1.1: Sign up for Office 365 E3 Trial In this exercise, you will perform the following actions:- 1. Sign up for office 365 E3 Trial 2. Observe the imported AD Objects into Service Manageer Console 3. Create new user accounts & Update user Properties details in AD 4. Manually synchronize the Active Directory connector 1.2: Create & Configure an Active Directory Connector Task Perform the following tasks on this virtual computer: SYNC.Contoso.com 1. Sign up for Office 365 E3 30- day trial 1. Log on into the Member server SYNC with the CONTOSO\Administrator account 2. Open Internet Explorer. 3. Browse to address to sign up for Office 365 E3 Trial Use Microsoft HQ address if you work outside of the US. One Microsoft Way Redmond, WA Example of signup Page 6 of 31

7 6. Create your new user ID and provide Mobile Phone number to receive security code to unlock this account for lost password and Click create my account. Page 7 of 31

8 7. Setup of SharePoint, Exchange and Lync will take a little time to provision. Page 8 of 31

9 Exercise 2: Domain Controller Prepare for directory synchronization Page 9 of 31

10 Lab 2 Prepare for directory synchronization Virtual Machines: DC Username: CONTOSO\Administrator Password: LS1Setup! Estimated time to complete: 30 minutes Prerequisites: You have signed up for an Office 365 E3 Trial. You will need the following from the sign up form. 1. Organization Name 2. User ID (Example admin@msftetr18lab.onmicrosoft.com) 3. Password Scenario: Contoso Active Directory environment must be properly configured in order for your users to sign-in to Microsoft online services. In particular, the userprincipalname (UPN) attribute, also known as a user logon name, must be set up correctly for each user in a specific way. The UserPrincipalName attribute must use a publically routable domain. Contoso is currently not using a publically routable domain, you will need to update all Contoso users UserPrincipalNames attributes. You need configure a valid UPN for every account in the Contoso Domain. In this exercise, you will perform the following actions:- 1. Add an alternative UPN suffix to Consoto Active Directory Domain. 2. Update all user s UserPrincipalNames attribures in the Consoto Domain to use the new UPN Suffix created. Page 10 of 31

11 2.1 Add alternative UPN suffix to Contoso Active Directory and update all users in Contoso domain with the new UPN Suffix Task Perform the following tasks on this virtual computer: DC.Contoso.com 1. Add User Principal Name Suffix to Active Directory You need to add an alternative UPN suffix to simplify administration and user logon processes by providing a single UPN suffix for all users. The UPN suffix is used only within the Active Directory forest, and it is not required to be a valid DNS domain name. You will use the UPN suffix in Office 365 created when you signed up for Trial. 1. Log on as Contoso\Administrator on the DC server 2. Open Active Directory Domains and Trusts. To open Active Directory Domains and Trusts, click Start, click Administrative Tools, and then click Active Directory Domains and Trusts. 3. In the console tree, right-click Active Directory Domains and Trusts, and then click Properties. 4. On the UPN Suffixes tab, type an alternative UPN suffix for the forest, and then click Add. Enter in your UPN from your tenant. Example Admin@MSFTETR18LAB.onmicrosoft.com 5. Click Add Page 11 of 31

12 6. Click OK 2. Update all users in Contoso Domain with the new UPN created above. All users created in the Contoso domain currently have a null UPN attribute. Run Powershell to update all users to use the new UPN suffix.: 1. Log on into the DC server using CONTOSO\Administrator account. 2. From the Task bar, launch Powershell, Right click and Run as Admininistrator. Page 12 of 31

13 3. Run the following powershell to update all user accounts with the new UPN suffix. Get-ADUser -Filter {-not (UserPrincipalName -like '*')} -SearchBase 'CN=Users,DC=contoso,DC=com' % {$CompleteUPN = $_.SamAccountName + "@MSFTETR18LAB.onmicrosoft.com" ; Set- ADUser -Identity $_.DistinguishedName -UserPrincipalName $CompleteUPN} Exercise 3: Member Server Activate Active Directory Synchronization Page 13 of 31

14 Lab 3 Activate Active Directory Synchronization Virtual Machines: SYNC Username: CONTOSO\Administrator Password: LS1Setup! Estimated time to complete: 20 minutes Scenario: You must activate directory synchronization before you install the Directory Sync tool. When you activate directory synchronization, you are turning on this feature across your tenant and all the Microsoft cloud services that you are subscribed to. In this exercise, you will perform the following actions:- 1. Browse to Tenant Admin Portal and Activate Active Directory Synchronization 3.1 Using Tenant Admin Portal Activate Active Directory Synchronization Task Perform the following tasks on this virtual computer: SYNC.Contoso.com Page 14 of 31

15 1. Activate Active Directory Synchronization using Tenant Admin. You need to create the change described above. To do this, Do the following: 1. Log on into the SYNC server using contoso\administrator account. 2. Lanch Internet Explore and browse to tenant admin portal Click Users and groups, click Active Users, click Set up next to Active Directory synchronization, and then proceed to the next step. 4. Select Activate in step 3 to activate Active Directory Synchronization. Exercise 4: Member Server Install DirSync Tool Page 15 of 31

16 Lab 4 Install DirSync Tool Virtual Machines: SYNC Username: CONTOSO\Administrator Password: LS1Setup! Estimated time to complete: 20 minutes Scenario: Once you have activate directory synchronization you can install the Directory Sync tool. In this exercise, you will perform the following actions:- 1. Browse to Tenant Admin Portal to download and install Directory Sync Tool. Exercise 4.1: Member Server Install Directory Sync Tool Page 16 of 31

17 Perform the following tasks on this virtual computer: SYNC.Contoso.com 1. Download Directory Sync tool from tenant admin You need to create the change described above. To do this, Do the following: 1. Log on into the SYNC server using contoso\administrator account. 2. Launch Internet Explore and browse to tenant admin portal Click Users and groups, click Set up next to Active Directory synchronization, and then proceed to the next step. 4. Select Download in step 4 to download Directory Sync Tool. 5. Run Tool. Page 17 of 31

18 6. On the Welcome screen click Next 7. Accept the license agreement and click Next Page 18 of 31

19 8. On the Select Installation Folder page, click Next, the installation will begin. 9. Installation will take 10 minutes or longer depending upon the speed of the computer. Page 19 of 31

20 10. Once Installation is complete click Next. 11. On the Finished page, click finish. 12. On the Welcome page, click next. Page 20 of 31

21 13. Under Microsoft Online Services Credentials, enter your admin credentials. 14. Enter in your Local Active Directory User Name and password. Page 21 of 31

22 Contoso\administrator Password: LS1setup! 15. Enable Hybrid Deployment and Click Next 16. Enable Password Sync and Click Next. Page 22 of 31

23 17. Click Next 18. Select Synchronize your directories now and click Finish Page 23 of 31

24 Exercise 5: Member Server Verify Directory Synchronization and activate synchronized users Page 24 of 31

25 Perform the following tasks on this virtual computer: SYNC.Contoso.com 1. Verify directory synchronizatio n a) Launch IE and navigate to the online portal and log in as the Admin b) Go to Office 365 admin center and click users and groups, click Active Users. If the synchronized users do not appear, refresh the browser window 2. Activate Users a) In the list of users, fill in the checkbox next to a user multiple users can be activated at the same time, select all the accounts you wish to activate at this time. You can do it later as well. b) Select Activate Synced Users on the far right of the screen. Page 25 of 31

26 c) Select the Location (United States) and the license options for this user, click next d) Accept the defaults and click activate Click Finish 3. Sign out of 365 Administration Portal using Top Right Navigation bar. 4. Log into Online as Aaronp a) Launch IE and clear the proxy settings completely. b) navigate to c) If the User ID is not blank then select the link Sign in with a different user ID. d) For User ID: enter Aaronp@NNN.onmicrosoft.com where NNN is the name of your tenant Page 26 of 31

27 5. Navigate to OWA by Clicking on Outlook using the top right navigation bar Page 27 of 31

28 6. Select English for Language, Pacific Time Zone and Click Save. 7. Click on people link using top right navigation bar. 8. Notice that user photos are not displaying in people hub due to photo being too large. 9. Resize Aaronp photo in activate directory using 3 rd party tool. Follow these steps to upload or edit a photo in a user s Active Directory to have it display correctly in Lync: 1. First you need to download and install the AD Photo Edit Utility from If you want to edit multiple users at a time, the Bulk Edition of the tool is needed. Page 28 of 31

29 2. After the tool has been installed, AD Photo Edit automatically detects and connects to your Active Directory. In my case it s detecting the contoso.com domain. 3. Search for the user's name or alias and click Edit Image for the selected user. I searched for my alias, which is aaronp and the tool immediately pulled up my contact information. Page 29 of 31

30 10. Resize photo to recommended size <10KB Size Limit 100KB and Click ok. 11. Force the directory synchronization Open Windows PowerShell as administrator. Import the DirSync module by typing import-module DirSync. Type Start-OnlineCoexistenceSync.and press enter. Give the sync 1-2 mins to finish before starting next step. 12. Click on people link using top right navigation bar. 13. Then click All Users under Directory. Page 30 of 31

31 14. Notice the user photo that was resize is now displaying in people hub 15. Click on OneDrive using top right navigation bar to create user s OneDrive (my site) 16. Click ok when prompted Let s get social. After the site loads, click the Newsfeed link in the top navigation bar. Then click About me in the left navigation pane. 17. You will now notice that SharePoint is utilizing the user s photo imported using dirsync tool. Page 31 of 31

LAB 2: Identity Management

LAB 2: Identity Management LAB 2: Identity Management Contents Lab 2: Identity Management... 2 Exercise 1: install and configure prerequisites for configuring AD FS... 3 Tasks... 3 Exercise 2: adding and verifying a standard domain

More information

Test Lab Guide: Creating a Windows Azure AD and Windows Server AD Environment using Azure AD Sync

Test Lab Guide: Creating a Windows Azure AD and Windows Server AD Environment using Azure AD Sync Test Lab Guide: Creating a Windows Azure AD and Windows Server AD Environment using Azure AD Sync Microsoft Corporation Published: December 2014 Author: Mark Grimes Acknowledgements Special thanks to the

More information

LAB 1: Installing Active Directory Federation Services

LAB 1: Installing Active Directory Federation Services LAB 1: Installing Active Directory Federation Services Contents Lab: Installing and Configuring Active Directory Federation Services... 2 Exercise 1: installing and configuring Active Directory Federation

More information

Installing and Configuring Login PI

Installing and Configuring Login PI Installing and Configuring Login PI Login PI Hands-on lab In this lab, you will configure Login PI to provide performance insights for a Windows Server 2012 R2 Remote Desktop Services installation. To

More information

Special thanks to the following people for reviewing and providing invaluable feedback for this document: Joe Davies, Bill Mathers, Andreas Kjellman

Special thanks to the following people for reviewing and providing invaluable feedback for this document: Joe Davies, Bill Mathers, Andreas Kjellman Test Lab Guide: Creating a Microsoft Azure Active Directory and Windows Server Active Directory Environment using Microsoft Azure Active Directory Sync Services Microsoft Corporation Published: December

More information

Introduction to Unified Device Management with Intune and System Center Configuration Manager

Introduction to Unified Device Management with Intune and System Center Configuration Manager Introduction to Unified Device Management with Intune and System Center Configuration Manager Most IT pros and the IT organizations they work for have the challenge of supporting a wide diversity of apps,

More information

Office 365 deployment checklists

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

More information

Mod 2: User Management

Mod 2: User Management Office 365 for SMB Jump Start Mod 2: User Management Chris Oakman Managing Partner Infrastructure Team Eastridge Technology Stephen Hall CEO & SMB Technologist District Computers 1 Jump Start Schedule

More information

Managing Office 365 Identities and Services

Managing Office 365 Identities and Services Course 20346B: Managing Office 365 Identities and Services Course Details Course Outline Module 1: Preparing for Office 365 This module reviews the features of Office 365 and identifies recent improvements

More information

Office 365 deploym. ployment checklists. Chapter 27

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

More information

Migrating Exchange Server to Office 365

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

More information

Managing Office 365 Identities and Services 20346C; 5 Days, Instructor-led

Managing Office 365 Identities and Services 20346C; 5 Days, Instructor-led Managing Office 365 Identities and Services 20346C; 5 Days, Instructor-led Course Description This is a 5-day Instructor Led Training (ILT) course that targets the needs of IT professionals who take part

More information

Course 20346: Managing Office 365 Identities and Services

Course 20346: Managing Office 365 Identities and Services Course 20346: Managing Office 365 Identities and Services Overview About this course This is a 5-day Instructor Led Training (ILT) course that targets the needs of IT professionals who take part in evaluating,

More information

Introduction to DirectAccess in Windows Server 2012

Introduction to DirectAccess in Windows Server 2012 Introduction to DirectAccess in Windows Server 2012 Windows Server 2012 Hands-on lab In this lab, you will configure a Windows 8 workgroup client to access the corporate network using DirectAccess technology,

More information

Managing Office 365 Identities and Services

Managing Office 365 Identities and Services Course 20346B: Managing Office 365 Identities and Services Page 1 of 7 Managing Office 365 Identities and Services Course 20346B: 4 days; Instructor-Led Introduction This is a 4-day Instructor Led Training

More information

Lync Online Deployment Guide. Version 1.0

Lync Online Deployment Guide. Version 1.0 Date 28/07/2014 Table of Contents 1. Provisioning Lync Online... 1 1.1 Operating System Requirements... 1 1.2 Browser Requirements Administrative Centre... 1 2. Obtaining your login Credentials & Logging

More information

Active Directory Deployment and Management Enhancements

Active Directory Deployment and Management Enhancements Active Directory Deployment and Management Enhancements Windows Server 2012 Hands-on lab In this lab, you will learn how to deploy Active Directory domain controllers with Windows Server 2012. You will

More information

Customizing Remote Desktop Web Access by Using Windows SharePoint Services Stepby-Step

Customizing Remote Desktop Web Access by Using Windows SharePoint Services Stepby-Step Customizing Remote Desktop Web Access by Using Windows SharePoint Services Stepby-Step Guide Microsoft Corporation Published: July 2009 Updated: September 2009 Abstract Remote Desktop Web Access (RD Web

More information

AVG Business SSO Connecting to Active Directory

AVG Business SSO Connecting to Active Directory AVG Business SSO Connecting to Active Directory Contents AVG Business SSO Connecting to Active Directory... 1 Selecting an identity repository and using Active Directory... 3 Installing Business SSO cloud

More information

Deploying Personal Virtual Desktops by Using RemoteApp and Desktop Connection Step-by-Step Guide

Deploying Personal Virtual Desktops by Using RemoteApp and Desktop Connection Step-by-Step Guide c623242f-20f0-40fe-b5c1-8412a094fdc7 Deploying Personal Virtual Desktops by Using RemoteApp and Desktop Connection Step-by-Step Guide Microsoft Corporation Published: June 2009 Updated: April 2010 Abstract

More information

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

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

More information

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

Dell One Identity Cloud Access Manager 8.0.1 - How to Configure Microsoft Office 365

Dell One Identity Cloud Access Manager 8.0.1 - How to Configure Microsoft Office 365 Dell One Identity Cloud Access Manager 8.0.1 - How to Configure Microsoft Office 365 May 2015 This guide describes how to configure Microsoft Office 365 for use with Dell One Identity Cloud Access Manager

More information

Cloud Services ADM. User Interface Guide

Cloud Services ADM. User Interface Guide Cloud Services ADM User Interface Guide 10/15/2014 CONTENTS Launching the Hosted Exchange Tab - Active Directory Users and Computers... 1 User Properties... 2 Exchange Properties... 3 Creating a New User...

More information

Agenda. Federation using ADFS and Extensibility options. Office 365 Identity overview. Federation and Synchronization

Agenda. Federation using ADFS and Extensibility options. Office 365 Identity overview. Federation and Synchronization Agenda Office 365 Identity overview 1 Federation and Synchronization Federation using ADFS and Extensibility options 2 3 What s New in Azure AD? Cloud Business App - Overview 4 Identity Management is

More information

Configuring Single Sign-On from the VMware Identity Manager Service to Office 365

Configuring Single Sign-On from the VMware Identity Manager Service to Office 365 Configuring Single Sign-On from the VMware Identity Manager Service to Office 365 VMware Identity Manager JULY 2015 V1 Table of Contents Overview... 2 Passive and Active Authentication Profiles... 2 Adding

More information

Bill Fiddes Learning and Development Specialist Rob Latino Program Manager in Office 365 Support

Bill Fiddes Learning and Development Specialist Rob Latino Program Manager in Office 365 Support Bill Fiddes Learning and Development Specialist Rob Latino Program Manager in Office 365 Support Learning & Development Specialist Customer Support Services Been with Microsoft for 7 years Professionally

More information

Migrating Active Directory to Windows Server 2012 R2

Migrating Active Directory to Windows Server 2012 R2 Migrating Active Directory to Windows Server 2012 R2 Windows Server 2012 R2 Hands-on lab In this lab, you will complete a migration of a Windows Server 2008 R2 domain environment to Windows Server 2012

More information

Centrify Cloud Connector Deployment Guide

Centrify Cloud Connector Deployment Guide C E N T R I F Y D E P L O Y M E N T G U I D E Centrify Cloud Connector Deployment Guide Abstract Centrify provides mobile device management and single sign-on services that you can trust and count on as

More information

SharePoint Server for Business Intelligence

SharePoint Server for Business Intelligence SharePoint Server for Business Intelligence SharePoint Business Intelligence Content Team Summary: Step-by-step, learn how to install and configure SharePoint Server 2010 and SQL Server 2008 to create

More information

Deploying Remote Desktop Web Access with Remote Desktop Connection Broker Step-by- Step Guide

Deploying Remote Desktop Web Access with Remote Desktop Connection Broker Step-by- Step Guide Deploying Remote Desktop Web Access with Remote Desktop Connection Broker Step-by- Step Guide Microsoft Corporation Updated: April 2010 Published: May 2009 Abstract RemoteApp and Desktop Connection provides

More information

What you need to know about DirSync - our experiences with DirSync and Office 365, by David Parizek and Henry Verlander.

What you need to know about DirSync - our experiences with DirSync and Office 365, by David Parizek and Henry Verlander. Installing Azure Active Directory Sync (AADSync, informally known as DirSync) What you need to know about DirSync - our experiences with DirSync and Office 365, by David Parizek and Henry Verlander. DirSync

More information

Kaspersky Lab Mobile Device Management Deployment Guide

Kaspersky Lab Mobile Device Management Deployment Guide Kaspersky Lab Mobile Device Management Deployment Guide Introduction With the release of Kaspersky Security Center 10.0 a new functionality has been implemented which allows centralized management of mobile

More information

How To Configure A Windows 8.1 On A Windows 7.1.1 (Windows) With A Powerpoint (Windows 8) On A Blackberry) On An Ipad Or Ipad (Windows 7) On Your Blackberry Or Black

How To Configure A Windows 8.1 On A Windows 7.1.1 (Windows) With A Powerpoint (Windows 8) On A Blackberry) On An Ipad Or Ipad (Windows 7) On Your Blackberry Or Black Introduction to Cloud-Based Mobile Device Management with Intune Information in this document, including URLs and other Internet Web site references, is subject to change without notice. Unless otherwise

More information

AUTOMATED DISASTER RECOVERY SOLUTION USING AZURE SITE RECOVERY FOR FILE SHARES HOSTED ON STORSIMPLE

AUTOMATED DISASTER RECOVERY SOLUTION USING AZURE SITE RECOVERY FOR FILE SHARES HOSTED ON STORSIMPLE AUTOMATED DISASTER RECOVERY SOLUTION USING AZURE SITE RECOVERY FOR FILE SHARES HOSTED ON STORSIMPLE Copyright This document is provided "as-is." Information and views expressed in this document, including

More information

Deploying Remote Desktop IP Virtualization Step-by-Step Guide

Deploying Remote Desktop IP Virtualization Step-by-Step Guide Deploying Remote Desktop IP Virtualization Step-by-Step Guide Microsoft Corporation Updated: April 2010 Published: July 2009 Abstract Remote Desktop IP Virtualization provides administrators the ability

More information

SQL Server Business Intelligence

SQL Server Business Intelligence SQL Server Business Intelligence Setup and Configuration Guide Himanshu Gupta Technology Solutions Professional Data Platform Contents 1. OVERVIEW... 3 2. OBJECTIVES... 3 3. ASSUMPTIONS... 4 4. CONFIGURE

More information

How to install and use the File Sharing Outlook Plugin

How to install and use the File Sharing Outlook Plugin How to install and use the File Sharing Outlook Plugin Thank you for purchasing Green House Data File Sharing. This guide will show you how to install and configure the Outlook Plugin on your desktop.

More information

Cloud-Accelerated Hybrid Scenarios with SharePoint and Office 365

Cloud-Accelerated Hybrid Scenarios with SharePoint and Office 365 Cloud-Accelerated Hybrid Scenarios with SharePoint and Office 365 Contents Contents 1 About this guide 3 Overview 9 Authentication and authorization 10 Getting started with identity integration 26 Getting

More information

Microsoft Office 365 from Vodafone. Administrator s Guide for Midsize Businesses and Enterprises

Microsoft Office 365 from Vodafone. Administrator s Guide for Midsize Businesses and Enterprises Microsoft Office 365 from Vodafone Administrator s Guide for Midsize Businesses and Enterprises Contents Footer bar Return to contents page Go to next of section Return to start of section Previous page

More information

MICROSOFT BITLOCKER ADMINISTRATION AND MONITORING (MBAM)

MICROSOFT BITLOCKER ADMINISTRATION AND MONITORING (MBAM) MICROSOFT BITLOCKER ADMINISTRATION AND MONITORING (MBAM) MICROSOFT BITLOCKER ADMINISTRATION AND MONITORING (MBAM) Microsoft BitLocker Administration and Monitoring (MBAM) provides a simplified administrative

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

Windows Azure Pack Installation and Initial Configuration

Windows Azure Pack Installation and Initial Configuration Windows Azure Pack Installation and Initial Configuration Windows Server 2012 R2 Hands-on lab In this lab, you will learn how to install and configure the components of the Windows Azure Pack. To complete

More information

Table of Contents Introduction... 2 Azure ADSync Requirements/Prerequisites:... 2 Software Requirements... 2 Hardware Requirements...

Table of Contents Introduction... 2 Azure ADSync Requirements/Prerequisites:... 2 Software Requirements... 2 Hardware Requirements... Table of Contents Introduction... 2 Azure ADSync Requirements/Prerequisites:... 2 Software Requirements... 2 Hardware Requirements... 2 Service Accounts for Azure AD Sync Tool... 3 On Premises Service

More information

Step-By-Step Guide to Deploying Lync Server 2010 Enterprise Edition

Step-By-Step Guide to Deploying Lync Server 2010 Enterprise Edition Step-By-Step Guide to Deploying Lync Server 2010 Enterprise Edition The installation of Lync Server 2010 is a fairly task-intensive process. In this article, I will walk you through each of the tasks,

More information

Using Protection Engine for Cloud Services for URL Filtering, Malware Protection and Proxy Integration Hands-On Lab

Using Protection Engine for Cloud Services for URL Filtering, Malware Protection and Proxy Integration Hands-On Lab Using Protection Engine for Cloud Services for URL Filtering, Malware Protection and Proxy Integration Hands-On Lab Description In this hands-on session, you will learn how to turn your proxy into a security

More information

CDP-H210 Introduction to Azure Active Directory

CDP-H210 Introduction to Azure Active Directory CDP-H210 Introduction to Azure Active Directory This is an infrastructure lab, useful to both ITPro s and Developers to learn the basics of Azure Active Directory. The main focus is on understanding the

More information

How to integrate Microsoft Intune and System Center 2012 R2 Configuration Manager with Single Sign-On Part 1: Introduction and prerequisites

How to integrate Microsoft Intune and System Center 2012 R2 Configuration Manager with Single Sign-On Part 1: Introduction and prerequisites How to integrate Microsoft Intune and System Center 2012 R2 Configuration Manager with Single Sign-On Part 1: Introduction and prerequisites Introduction In this blog series I m going to show how to setup

More information

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

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

More information

How To Install And Configure Windows Server 2003 On A Student Computer

How To Install And Configure Windows Server 2003 On A Student Computer Course: WIN310 Student Lab Setup Guide Microsoft Windows Server 2003 Network Infrastructure (70-291) ISBN: 0-470-06887-6 STUDENT COMPUTER SETUP Hardware Requirements All hardware must be on the Microsoft

More information

How To Manage Your Online Experiences On Windows Achemosade Online (Windows) And On-Premises) With A Free Version Of Windows.Com (Windows.Com) On A Microsoft Powerbook (Windows).Com) For Free Recipe

How To Manage Your Online Experiences On Windows Achemosade Online (Windows) And On-Premises) With A Free Version Of Windows.Com (Windows.Com) On A Microsoft Powerbook (Windows).Com) For Free Recipe https://login.microsoftonline.com Sign in to Windows Azure AD manage your identity data in Windows Azure Active Directory Windows Azure Windows Azure Your account is being created Windows Azure Maria

More information

MICROSOFT 70-346 EXAM QUESTIONS & ANSWERS

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

More information

OneLogin Integration User Guide

OneLogin Integration User Guide OneLogin Integration User Guide Table of Contents OneLogin Account Setup... 2 Create Account with OneLogin... 2 Setup Application with OneLogin... 2 Setup Required in OneLogin: SSO and AD Connector...

More information

Password Reset Server Installation Guide Windows 8 / 8.1 Windows Server 2012 / R2

Password Reset Server Installation Guide Windows 8 / 8.1 Windows Server 2012 / R2 Password Reset Server Installation Guide Windows 8 / 8.1 Windows Server 2012 / R2 Last revised: November 12, 2014 Table of Contents Table of Contents... 2 I. Introduction... 4 A. ASP.NET Website... 4 B.

More information

Appendix B Lab Setup Guide

Appendix B Lab Setup Guide JWCL031_appB_467-475.indd Page 467 5/12/08 11:02:46 PM user-s158 Appendix B Lab Setup Guide The Windows Server 2008 Applications Infrastructure Configuration title of the Microsoft Official Academic Course

More information

Deploy the client as an Azure RemoteApp program

Deploy the client as an Azure RemoteApp program Microsoft Dynamics AX 2012 R3 Deploy the client as an Azure RemoteApp program Microsoft Azure RemoteApp helps you provide secure, remote access to applications from many different user devices. This white

More information

SharePoint AD Information Sync Installation Instruction

SharePoint AD Information Sync Installation Instruction SharePoint AD Information Sync Installation Instruction System Requirements Microsoft Windows SharePoint Services V3 or Microsoft Office SharePoint Server 2007. License management Click the trial link

More information

2X Cloud Portal v10.5

2X Cloud Portal v10.5 2X Cloud Portal v10.5 URL: www.2x.com E-mail: info@2x.com Information in this document is subject to change without notice. Companies, names, and data used in examples herein are fictitious unless otherwise

More information

Introduction to Hyper-V High- Availability with Failover Clustering

Introduction to Hyper-V High- Availability with Failover Clustering Introduction to Hyper-V High- Availability with Failover Clustering Lab Guide This lab is for anyone who wants to learn about Windows Server 2012 R2 Failover Clustering, focusing on configuration for Hyper-V

More information

PassTest. Bessere Qualität, bessere Dienstleistungen!

PassTest. Bessere Qualität, bessere Dienstleistungen! PassTest Bessere Qualität, bessere Dienstleistungen! Q&A Exam : 70-346 Title : Managing Office 365 Identities and Requirements Version : Demo 1 / 13 1.A company migrates to Office 365.2,000 active users

More information

Trial environment setup. Exchange Server Archiver - 3.0

Trial environment setup. Exchange Server Archiver - 3.0 Trial environment setup Exchange Server Archiver - 3.0 Introduction This document describes how you can set up a trial environment for using Exchange Server Archiver with Exchange Server 2007. You do not

More information

IIS, FTP Server and Windows

IIS, FTP Server and Windows IIS, FTP Server and Windows The Objective: To setup, configure and test FTP server. Requirement: Any version of the Windows 2000 Server. FTP Windows s component. Internet Information Services, IIS. Steps:

More information

Hosted Microsoft Exchange Client Setup & Guide Book

Hosted Microsoft Exchange Client Setup & Guide Book Hosted Microsoft Exchange Client Setup & Guide Book Section 1 Microsoft Outlook Web Access (OWA) access directions Section 2 Windows Mobile Phone ActiveSync setup & configuration Section 3 - Apple iphone

More information

Installing Windows Rights Management Services with Service Pack 2 Step-by- Step Guide

Installing Windows Rights Management Services with Service Pack 2 Step-by- Step Guide Installing Windows Rights Management Services with Service Pack 2 Step-by- Step Guide Microsoft Corporation Published: October 2006 Author: Brian Lich Editor: Carolyn Eller Abstract This step-by-step guide

More information

owncloud Configuration and Usage Guide

owncloud Configuration and Usage Guide owncloud Configuration and Usage Guide This guide will assist you with configuring and using YSUʼs Cloud Data storage solution (owncloud). The setup instructions will include how to navigate the web interface,

More information

Active Directory integration with CloudByte ElastiStor

Active Directory integration with CloudByte ElastiStor Active Directory integration with CloudByte ElastiStor Prerequisite Change the time and the time zone of the Active Directory Server to the VSM time and time zone. Enabling Active Directory at VSM level

More information

Course: WIN310. Student Lab Setup Guide. Summer 2010. Microsoft Windows Server 2003 Network Infrastructure (70-291)

Course: WIN310. Student Lab Setup Guide. Summer 2010. Microsoft Windows Server 2003 Network Infrastructure (70-291) Course: WIN310 Student Lab Setup Guide Summer 2010 Microsoft Windows Server 2003 Network Infrastructure (70-291) ISBN: 0-470-06887-6 Published by Wiley & Sons 1 STUDENT COMPUTER SETUP Hardware Requirements

More information

EMC ViPR Controller Add-in for Microsoft System Center Virtual Machine Manager

EMC ViPR Controller Add-in for Microsoft System Center Virtual Machine Manager EMC ViPR Controller Add-in for Microsoft System Center Virtual Machine Manager Version 2.3 Installation and Configuration Guide 302-002-080 01 Copyright 2013-2015 EMC Corporation. All rights reserved.

More information

Hosted Microsoft Exchange Client Setup & Guide Book

Hosted Microsoft Exchange Client Setup & Guide Book Hosted Microsoft Exchange Client Setup & Guide Book Section 1 Microsoft Outlook Web Access (OWA) access directions Section 2 Windows 10 Mail App setup & configuration Section 3 Windows Mobile Phone ActiveSync

More information

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

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

More information

Installation of MicroSoft Active Directory

Installation of MicroSoft Active Directory Installation of MicroSoft Active Directory Before you start following this article you must be aware this is simply a lab setup and you need to assign relevant ip address, hostnames & domain names which

More information

SPHOL325: SharePoint Server 2013 Search Connectors and Using BCS

SPHOL325: SharePoint Server 2013 Search Connectors and Using BCS 2013 SPHOL325: SharePoint Server 2013 Search Connectors and Using BCS Hands-On Lab Lab Manual This document is provided as-is. Information and views expressed in this document, including URL and other

More information

Specops Command. Installation Guide

Specops Command. Installation Guide Specops Software. All right reserved. For more information about Specops Command and other Specops products, visit www.specopssoft.com Copyright and Trademarks Specops Command is a trademark owned by Specops

More information

Good Morning Wireless! SSID: MSFTOPEN No Username or Password Required

Good Morning Wireless! SSID: MSFTOPEN No Username or Password Required Good Morning Wireless! SSID: MSFTOPEN No Username or Password Required 2 Today s Agenda - 9:00-10:30 - Windows Azure Infrastructure Services - 10:30-10:45 - Break - 10:45-12:00 - Windows Azure Infrastructure

More information

Configuration Guide. BES12 Cloud

Configuration Guide. BES12 Cloud Configuration Guide BES12 Cloud Published: 2016-04-08 SWD-20160408113328879 Contents About this guide... 6 Getting started... 7 Configuring BES12 for the first time...7 Administrator permissions you need

More information

Setting up Hyper-V for 2X VirtualDesktopServer Manual

Setting up Hyper-V for 2X VirtualDesktopServer Manual Setting up Hyper-V for 2X VirtualDesktopServer Manual URL: www.2x.com E-mail: info@2x.com Information in this document is subject to change without notice. Companies, names, and data used in examples herein

More information

Managing users. Account sources. Chapter 1

Managing users. Account sources. Chapter 1 Chapter 1 Managing users The Users page in Cloud Manager lists all of the user accounts in the Centrify identity platform. This includes all of the users you create in the Centrify for Mobile user service

More information

Microsoft Virtual Labs. Administering the IIS 7 File Transfer Protocol (FTP) Server

Microsoft Virtual Labs. Administering the IIS 7 File Transfer Protocol (FTP) Server Microsoft Virtual Labs Administering the IIS 7 File Transfer Protocol (FTP) Server Table of Contents Exercise 1 Installing the Microsoft FTP Publishing Service for the IIS 7... 1 Exercise 2 Introducing

More information

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

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

More information

Get started with cloud hybrid search for SharePoint

Get started with cloud hybrid search for SharePoint Get started with cloud hybrid search for SharePoint This document supports a preliminary release of the cloud hybrid search feature for SharePoint 2013 with August 2015 PU and for SharePoint 2016 Preview,

More information

Lotus Notes 6.x Client Installation Guide for Windows. Information Technology Services. CSULB

Lotus Notes 6.x Client Installation Guide for Windows. Information Technology Services. CSULB The goal of this document This document was created by the Information Technology Services department to assist the Lotus Notes Coordinators in the successful installation of Lotus Notes release 6 (R6)

More information

WebSpy Vantage Ultimate 2.2 Web Module Administrators Guide

WebSpy Vantage Ultimate 2.2 Web Module Administrators Guide WebSpy Vantage Ultimate 2.2 Web Module Administrators Guide This document is intended to help you get started using WebSpy Vantage Ultimate and the Web Module. For more detailed information, please see

More information

Installing Samsung SDS CellWe EMM cloud connectors and administrator consoles

Installing Samsung SDS CellWe EMM cloud connectors and administrator consoles Appendix 1 Installing Samsung SDS CellWe EMM cloud connectors and administrator consoles This section explains how you use the Cloud Management Suite installation wizard for the following purposes: To

More information

Hands on Lab: Building a Virtual Machine and Uploading VM Images to the Cloud using Windows Azure Infrastructure Services

Hands on Lab: Building a Virtual Machine and Uploading VM Images to the Cloud using Windows Azure Infrastructure Services Hands on Lab: Building a Virtual Machine and Uploading VM Images to the Cloud using Windows Azure Infrastructure Services Windows Azure Infrastructure Services provides cloud based storage, virtual networks

More information

EVault for Data Protection Manager. Course 321 Protecting Exchange 2010 with DPM

EVault for Data Protection Manager. Course 321 Protecting Exchange 2010 with DPM EVault for Data Protection Manager Course 321 Protecting Exchange 2010 with DPM Table of Contents Objectives... 3 Scenario... 3 Estimated Time to Complete This Lab... 3 Requirements for This Lab... 3 Computers

More information

Lab Answer Key for Module 9: Active Directory Domain Services. Table of Contents Lab 1: Exploring Active Directory Domain Services 1

Lab Answer Key for Module 9: Active Directory Domain Services. Table of Contents Lab 1: Exploring Active Directory Domain Services 1 Lab Answer Key for Module 9: Active Directory Domain Services Table of Contents Lab 1: Exploring Active Directory Domain Services 1 Information in this document, including URL and other Internet Web site

More information

How to monitor AD security with MOM

How to monitor AD security with MOM How to monitor AD security with MOM A article about monitor Active Directory security with Microsoft Operations Manager 2005 Anders Bengtsson, MCSE http://www.momresources.org November 2006 (1) Table of

More information

FaxCore Ev5 Email-To-Fax Setup Guide

FaxCore Ev5 Email-To-Fax Setup Guide 1 FaxCore Ev5 - Email-To-Fax Setup Guide Version 1.0.0 FaxCore Ev5 Email-To-Fax Setup Guide 2 FaxCore Ev5 - Email-To-Fax Setup Guide Contents The Email To Fax Setup Guide... 3 FaxCore Email Integration

More information

Citrix Virtual Classroom. Deliver file sharing and synchronization services using Citrix ShareFile. Self-paced exercise guide

Citrix Virtual Classroom. Deliver file sharing and synchronization services using Citrix ShareFile. Self-paced exercise guide Deliver file sharing and synchronization services using Citrix ShareFile Self-paced exercise guide Table of Contents Table of Contents... 2 Overview... 3 Exercise 1: Setting up a ShareFile Account... 6

More information

VMware Identity Manager Administration

VMware Identity Manager Administration VMware Identity Manager Administration VMware Identity Manager 2.4 This document supports the version of each product listed and supports all subsequent versions until the document is replaced by a new

More information

LepideAuditor Suite for File Server. Installation and Configuration Guide

LepideAuditor Suite for File Server. Installation and Configuration Guide LepideAuditor Suite for File Server Installation and Configuration Guide Table of Contents 1. Introduction... 4 2. Requirements and Prerequisites... 4 2.1 Basic System Requirements... 4 2.2 Supported Servers

More information

SonicWALL CDP 5.0 Microsoft Exchange User Mailbox Backup and Restore

SonicWALL CDP 5.0 Microsoft Exchange User Mailbox Backup and Restore SonicWALL CDP 5.0 Microsoft Exchange User Mailbox Backup and Restore Document Scope This solutions document describes how to configure and use the Microsoft Exchange User Mailbox Backup and Restore feature

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

Enabling Kerberos SSO in IBM Cognos Express on Windows Server 2008

Enabling Kerberos SSO in IBM Cognos Express on Windows Server 2008 Enabling Kerberos SSO in IBM Cognos Express on Windows Server 2008 Nature of Document: Guideline Product(s): IBM Cognos Express Area of Interest: Infrastructure 2 Copyright and Trademarks Licensed Materials

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

Installation Guide v3.0

Installation Guide v3.0 Installation Guide v3.0 Shepherd TimeClock 4465 W. Gandy Blvd. Suite 800 Tampa, FL 33611 Phone: 813-882-8292 Fax: 813-839-7829 http://www.shepherdtimeclock.com The information contained in this document

More information

Windows XP Exchange Client Installation Instructions

Windows XP Exchange Client Installation Instructions WINDOWS XP with Outlook 2003 or Outlook 2007 1. Click the Start button and select Control Panel: 2. If your control panel looks like this: Click Switch to Classic View. 3. Double click Mail. 4. Click show

More information

Windows Phone 8 Device Management

Windows Phone 8 Device Management Windows Phone 8 Device Management with Windows Intune and System Center Configuration Manager SP1 This white paper is part of a series of technical papers designed to help IT professionals evaluate Windows

More information

Microsoft Office 365 with MailDefender

Microsoft Office 365 with MailDefender (PC) for Microsoft Office 365 with MailDefender V1.0 Contents 1 Logging in to the Office 365 Portal... 3 1.1 Outlook Web Access Exchange & Lync... 3 1.2 Team Site SharePoint Online... 3 2 Configuring your

More information

Lab 00: Configuring the Microsoft Lync Ignite Environment Cloud Hosted Version

Lab 00: Configuring the Microsoft Lync Ignite Environment Cloud Hosted Version Lab 00: Configuring the Microsoft Lync Ignite Environment Cloud Hosted Version DISCLAIMER 2013 Microsoft Corporation. All rights reserved. Microsoft, Active Directory, Forefront, Hyper-V, Internet Explorer,

More information