Lync Server Patching Guide

Size: px
Start display at page:

Download "Lync Server Patching Guide"

Transcription

1 Lync Server Patching Guide Version 1.1 Author: John McCabe Date: 1/12/2011

2

3 Contents 1. Overview Patching References Patching Workflow Patching Procedure Preparing The Server Verify Event viewer and Pending Reboots Verify Patch has not already been installed Downloading the patches Applying Lync Patches Draining a Lync Server Applying the Patch Verifying the patch has installed successfully Testing functionality after patching Verify Services have started Verify Client Connectivity Verify Working Scenarios Patching Devices Prep Download the update Creating a Test Device Uploading the Patch to the lync server Approving the patch Verifying the patch was successful Patching Clients Downloading The Patch Installing the patch on a client Page 3 of 28

4 1. Overview This document aims to provide a process for the IT staff to be able to patch their Lync environment. Follow the procedures as closely as possible. Page 4 of 28

5 2. Patching References Before patching always reference the Lync Update Center located at the below URL. This is the Microsoft Lync Update Center and will provide all the latest information on what patches are available for the environment. The patches for server / client / devices are separated. Ensure you download (if available) the latest patches in each category. NOTE 1: Server Patches usually have a cumulative Installer (Lyncserverupdateinstaller.exe) please use this to patch the server components. This contains all the patches for all roles but will automatically detect only the installed components on the server it is executed on. NOTE 2: Ensure when using the reference site that you read and/or print off the release nodes of the patch. Occasionally there is manual work involved. For Example in Cumulative Update 3 for Lync Server there is a separate command needs to be run from a front end server update the databases. If you do not observe the release notes it could have a drastic effect on your environment. Page 5 of 28

6 3. Patching Workflow NOTE: During any patching deployment you should notify IT Staff and End-Users of potential outage or disruption to the service. Page 6 of 28

7 4. Patching Procedure Due to the possibility of manual configuration (see CU3) it is considered safer to download the patch from the previously mentioned link, rather than using an automated solution to patch the lync environment. 4.1 Preparing The Server Verify Event viewer and Pending Reboots Event Viewer Checks Event ID 1029 will be logged in the application log if an application has been installed that requires a restart. From powershell you can run the following command $rebootreqevents = get-eventlog -log application where {$_.instanceid -eq "1029"} $rebootreqevents This should give the following type of output Check the first entries date and time. In this case it is Oct 22 14:23 Now run the following commands from powershell $lastboot = Get-WmiObject -Class Win32_OperatingSystem write-host "Last Server Reboot:`t" $lastboot.converttodatetime($lastboot.lastbootuptime) You will get the following output As you will see the server was rebooted on the 22 nd November. Proceed with the registry checks to verify nothing is pending. Page 7 of 28

8 Pending Reboot Registry Checks (optional) You can verify the following registry keys to determine if the box has pending reboots before you progress the installation. HKLM\Software\Microsoft\Windows\CurrentVersion\Component Based Servicing\ *****Look for RebootPending Keys***** HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\WindowsUpdate\Auto Update ***** Look for RebootRequired Keys ****** HKLM\SYSTEM\CurrentControlSet\Control\Session Manager\ ***** Look for PendingFileRenameOperations ***** HKLM\SOFTWARE\Microsoft\Updates\ ***** Look for UpdateExeVolatile ***** If the values exist and/or have data populated in the reg keys, It would be recommended to reboot the server before beginning to patch the installation Verify Patch has not already been installed To begin we need to verify the KB Article numbers associated with the patches to be installed. If we navigate to the site Page 8 of 28

9 Click into each individual update relevant to your installation Scroll down the screen until you come to the section Resolution and you will see each KB article number for each patch that is to be deployed Once you have the list gathered, open a powershell prompt and type the following $hotfix = KBXXXXXXX (make sure you replace the XXXXXXX with the actual number) get-wmiobject -class Win32_QuickFixEngineering where {$_.Hotfixid eq $hotfix } This will search the updates applied to the machine and determine if the patch is installed. Page 9 of 28

10 A simple script to help automate this task would be ########################################################################### cls #define the array and initialize [array]$hotfix = $null #store the hotfix numbers you are looking for, you can add more just use $hotfix += "KBXXXXXX" $hotfix += "KB " $hotfix += "KB971033" Foreach ($h in $hotfix) { Write-Host "Processing HotFix:`t" $h $result = get-wmiobject -class Win32_QuickFixEngineering where {$_.hotfixid -eq $h} if ($result -ne $null) { Write-host "$h is installed on this server" } else { Write-Host "$h is not installed on this server" } } ######################################################################## NOTE: If you download the Consolidated Installer (Normally LyncServerUpdateInstaller.exe) it will also detect if a patch has previously been applied. See Page 15 for Screen Shot Downloading the patches The Lync update center located here contains the information necessary to download the latest patches for the environment. When you click on the hyperlink to download the Lync Server 2010 Cumulative Update it will bring you to a page which will give you a link to the LyncServerUpdateInstall.exe (and the individual patches) but also instructions on how to apply the patch correctly. Attention must be paid for manual steps like upgrading the database Page 10 of 28

11 Download Link For Cumulative Installer Manual Steps that need to be performed Pay Attention to this line in regards to your deployment Download the necessary patches for your deployment and save them to a central share. In the next copy the patches that have been downloaded to each server to be patched. The core reason for this logic is that then during each install a set of logs per server will get generated when applying the patch, if the installer is run from a central share the logs will be overwritten each time and will make it difficult to troubleshoot. Page 11 of 28

12 4.2 Applying Lync Patches Before the actual application of the lync patches please re-confirm the following steps to ensure a smooth process. Read and Understand the steps necessary for the patch (i.e. what the patch is fixing / how it is to be applied / are there manual elements to it) Verify there is no pending reboots on the servers or previously failed patches. Notify Users of the downtime during the patching period. If you use a monitoring product place the servers in maintenance mode Complete change control processes if subject to them. Apply patch in a test environment if available Draining a Lync Server The follow are the steps required to take to drain a Lync server before any patching cycle begins NOTE: Draining a server is a good way to minimize disruptions but it must be noted that some disruption will occur, Server draining only allows calls that are currently active to stay up and running until they terminate. This does not apply for other areas in the lync client. The client will after a small period of time log back into another server and operate as normally. But you can imagine doing a patch cycle on all servers and moving users from one server to another (if it happens to be round robin) could lead to disruption for the user Log on to the Lync server with CS Administrators Credentials Click Start All Programs Microsoft Lync Server 2010 Microsoft Lync Management Shell At the prompt type get-cswindowsservice and hit enter (The first time you run this it may take a while) Page 12 of 28

13 The following should resemble the output It should display which services have active users on it Type stop-cswindowsservice graceful and hit enter Once stop-cswindowsservice returns the cli, repeat Step to check on the state of the services. Once they are all stopped then you can move to the next step. NOTE: Once a server is patched and rebooted it will automatically start the services again. If a reboot is carried out prior to patching, set all the lync services to disabled Applying the Patch Navigate to the central share that the patches have been downloaded to Copy the patch to a local directory on the server (i.e. C:\lync install\cu4) Navigate to the local copy of the patch and double click the LyncServerUpdateInstaller.exe Page 13 of 28

14 The following screen should appear Notice the column Latest Installed and observe which patches have a Green Check Circle (i.e. it has the latest patch installed for that component) or a Red X Circle (i.e. it does not have the latest patch installed for that component). NOTE: Having mixed results for the latest patches is normal, the latest released patches may not update all components in the system When you are ready to start the patching process Click Install Updates. This will begin the patch process which is automated from here. Monitor the deployment to ensure all goes successfully Once the process has complete the installer screen will have updated itself if the patches have been installed successfully Page 14 of 28

15 Once the patches have been successfully deployed, any manual steps must Be carried out. In the case of CU3 and CU4 you need to run a database update script. To perform this task refer to the Lync Update Center (here) for full instructions In CU3 and CU4 a Lync Management shell is required to be launched (and the following command be executed Install-CsDatabase -Update -ConfiguredDatabases -SqlServerFqdn <EEBE.Fqdn> -UseDefaultSqlPaths NOTE: Please follow the notes regarding the co-location of the archiving server and backend server published in respect to executing this command. Reference the Lync Update Center for more information The SQLServerFqdn needs to be determined and can easily be found by running the following command Get-CSService -UserDatabase This DB upgrade must complete successfully, monitor the progress of the update. Page 15 of 28

16 4.2.3 Verifying the patch has installed successfully To verify the patch has been installed successfully we can re-run the Lyncserverupdateinstaller.exe and verify all Latest Update column has the Green Check Circle. As in the applying patch procedure. Using the PowerShell script in step it will also determine if the patches have been installed and registered correctly. Finally to ensure the DB has been upgraded you can perform the following steps On the server where the sql backend is located, open SQL Management Studio Connect to the RTC Instance Expand the RTC Database Expand Tables Locate the table dbo.dbconfigint Right click the table and select Top 1000 Rows In the results pain locate the Name DbVersionUpgrade and check its value In CU3 the value was 1 In CU4 the value is 3 Page 16 of 28

17 4.3 Testing functionality after patching Verify Services have started Open a lync management shell Type get-cswindowsservice and press enter Verify all the services are running Verify Client Connectivity Perform the following tests from a client perspective and validate operation Automatic Sign In Name resolution from address book Peer To Peer IM Peer To Peer Audio Call Peer To Peer Video Call Web Conference (Whiteboard / Sharing / PPT) Group IM PSTN Breakout (if Enterprise Voice is Enabled) Inbound PSTN (if Enterprise Voice is Enabled) External User Access NOTE: Some of these tests can be automated through the use of synthetic transactions on the server. In the Microsoft Lync Resource Kit, the troubleshooting chapter details more information, it can be found here. Page 17 of 28

18 4.3.3 Verify Working Scenarios Depending on the environment you may also want to test scenarios relevant to your organization around the following Response Group Scenarios Dialin Conference (Web and PSTN Bridge) PSTN Routing NOTE: Some of these tests can be automated through the use of synthetic transactions on the server. In the Microsoft Lync Resource Kit, the troubleshooting chapter details more information, it can be found here. 4.4 Patching Devices Prep Download the update The Lync Update resource center (here) will also notify of any device updates Verify your edition of phone against this and determine if an update is required Click on the applicable link for your device estate Page 18 of 28

19 Scroll down the page until the resolution section and click the Download the UCUpdates.exe package now (see above) This will bring you to the download center and from which the update can be obtained Once the update is downloaded, double click it. A self-extractor will launch Select the language appropriate for your region and click next Page 19 of 28

20 Agree to the EULA and click next Select a location to extract the patch to and click next Press finish when prompted to complete the wizard Navigate to where you have extracted the files and locate ucupdates.cab, copy this file to the lync server Page 20 of 28

21 4.4.2 Creating a Test Device NOTE: Before starting this procedure ensure you have obtained the MAC address of the device you are nominating as a test device. You can obtain the settings from Menu -> System Information on the Device Open the Lync Control Panel Navigate to Clients (in the left hand menu) and then Test Devices (on the top menu) Click New Global Test Device (or Site Test Device depending on your requirements) Page 21 of 28

22 Populate the field device name and its MAC address that you collected earlier. Press Commit to confirm Verify the new test device appears in the Test Device Screen Uploading the Patch to the lync server Open a Lync Management Shell Instance At the prompt type get-csservice webserver fl identity and press enter Page 22 of 28

23 This will return the identity of the webserver you need to use when uploading the device update. For later we will need the full string WebServer:lync-01.corp.contoso.com Type import-csdeviceupdate identity WebServer:lync-01.corp.contoso.com filename c:\users\administrator\downloads\ucupdates.cab and press return NOTE: This will import the patch into Lync but you will receive no notification to say the import was successful Open the Lync control panel Navigate to Clients and then to devices Verify the update applied NOTE: After you have imported the patch the update will automatically roll out to the test devices previously created. This update will reboot the phones to apply the update Page 23 of 28

24 4.4.4 Approving the patch Select the updates you want to approve Click Action Approve Notice how the updates have changed from pending version to approved version Page 24 of 28

25 4.4.5 Verifying the patch was successful Click Menu on the Lync Device Click System Information Verify the Version that is applied to the phone versus what you have uploaded and approved. 4.5 Patching Clients Downloading The Patch Navigate to the Lync Resource Center (here) to Obtain the client patches Click on the Lync 2010 link to take you to the download page Navigate to the resolution section of the lync 2010 page and download the package appropriate to your clients. There are 32bit and 64bit packages. Page 25 of 28

26 4.5.2 Installing the patch on a client Navigate to the folder that you have downloaded the patch to Double click the lync.msp file Click Next on the welcome screen Page 26 of 28

27 Click Update to start the patch installation Click Finish to complete the patch installation NOTE: Deploying patches via a patch management solution or gpo is supported. A Sample string for silently installing the patch with these solutions is msiexec /qn ALLUSERS=2 /p Lync.MSP REBOOT=ReallySuppress Page 27 of 28

28 Page 28 of 28

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

HOW TO SILENTLY INSTALL CLOUD LINK REMOTELY WITHOUT SUPERVISION

HOW TO SILENTLY INSTALL CLOUD LINK REMOTELY WITHOUT SUPERVISION HOW TO SILENTLY INSTALL CLOUD LINK REMOTELY WITHOUT SUPERVISION Version 1.1 / Last updated November 2012 INTRODUCTION The Cloud Link for Windows client software is packaged as an MSI (Microsoft Installer)

More information

Preparing an IIS Server for EmpowerID installation

Preparing an IIS Server for EmpowerID installation Preparing an IIS Server for EmpowerID installation By: Jamis Eichenauer Last Updated: October 7, 2014 Contents Hardware preparation... 3 Software preparation... 3 IIS preparation... 4 Disabling User Account

More information

Active Directory Management. Agent Deployment Guide

Active Directory Management. Agent Deployment Guide Active Directory Management Agent Deployment Guide Document Revision Date: April 26, 2013 Active Directory Management Deployment Guide i Contents System Requirements... 1 Hardware Requirements... 2 Agent

More information

SQL Server 2008 R2 Express Edition Installation Guide

SQL Server 2008 R2 Express Edition Installation Guide Hardware, Software & System Requirements for SQL Server 2008 R2 Express Edition To get the overview of SQL Server 2008 R2 Express Edition, click here. Please refer links given below for all the details

More information

Ascend Interface Service Installation

Ascend Interface Service Installation Ascend Interface Service Installation 1. If this is a new installation, make sure IIS is installed and running on your machine first, and make sure ASP is enabled under Extensions in IIS. 2. If you are

More information

Migrating MSDE to Microsoft SQL 2008 R2 Express

Migrating MSDE to Microsoft SQL 2008 R2 Express How To Updated: 11/11/2011 2011 Shelby Systems, Inc. All Rights Reserved Other brand and product names are trademarks or registered trademarks of the respective holders. If you are still on MSDE 2000,

More information

Cloud Services ADM. Agent Deployment Guide

Cloud Services ADM. Agent Deployment Guide Cloud Services ADM Agent Deployment Guide 10/15/2014 CONTENTS System Requirements... 1 Hardware Requirements... 1 Installation... 2 SQL Connection... 4 AD Mgmt Agent... 5 MMC... 7 Service... 8 License

More information

Table of Contents. CHAPTER 1 About This Guide... 9. CHAPTER 2 Introduction... 11. CHAPTER 3 Database Backup and Restoration... 15

Table of Contents. CHAPTER 1 About This Guide... 9. CHAPTER 2 Introduction... 11. CHAPTER 3 Database Backup and Restoration... 15 Table of Contents CHAPTER 1 About This Guide......................... 9 The Installation Guides....................................... 10 CHAPTER 2 Introduction............................ 11 Required

More information

Support Document: Microsoft SQL Server - LiveVault 7.6X

Support Document: Microsoft SQL Server - LiveVault 7.6X Contents Preparing to create a Microsoft SQL backup policy... 2 Adjusting the SQL max worker threads option... 2 Preparing for Log truncation... 3 Best Practices... 3 Microsoft SQL Server 2005, 2008, or

More information

Backup and Restore the HPOM for Windows 8.16 Management Server

Backup and Restore the HPOM for Windows 8.16 Management Server Backup and Restore the HPOM for Windows 8.16 Management Server White Paper version 2.0 Backup and Restore the HPOM for Windows 8.16 Management Server... 1 Change record... 2 Conceptual Overview... 3 Understanding

More information

Bosch Video Management System Patch Setup

Bosch Video Management System Patch Setup Bosch Video Management System Patch Setup en Technical Service Note Bosch Video Management System Table of contents en 3 Table of contents 1 Introduction 4 2 Deliverables 5 2.1 The.msp File 5 2.2 The

More information

Install SQL Server 2014 Express Edition

Install SQL Server 2014 Express Edition How To Install SQL Server 2014 Express Edition Updated: 2/4/2016 2016 Shelby Systems, Inc. All Rights Reserved Other brand and product names are trademarks or registered trademarks of the respective holders.

More information

InventoryControl for use with QuoteWerks Quick Start Guide

InventoryControl for use with QuoteWerks Quick Start Guide InventoryControl for use with QuoteWerks Quick Start Guide Copyright 2013 Wasp Barcode Technologies 1400 10 th St. Plano, TX 75074 All Rights Reserved STATEMENTS IN THIS DOCUMENT REGARDING THIRD PARTY

More information

Out n About! for Outlook Electronic In/Out Status Board. Administrators Guide. Version 3.x

Out n About! for Outlook Electronic In/Out Status Board. Administrators Guide. Version 3.x Out n About! for Outlook Electronic In/Out Status Board Administrators Guide Version 3.x Contents Introduction... 1 Welcome... 1 Administration... 1 System Design... 1 Installation... 3 System Requirements...

More information

Shearwater Research Dive Computer Software Manual

Shearwater Research Dive Computer Software Manual Shearwater Research Dive Computer Software Manual Revision 1.3 Table of Contents 1. Basic overview of components 2. O/S IrDA driver installation 2.1 USB IrDA installation for Windows XP Home/Pro editions

More information

Nintex Workflow 2010 Installation Guide. Installation Guide. 2012 Nintex USA LLC, All rights reserved. Errors and omissions excepted.

Nintex Workflow 2010 Installation Guide. Installation Guide. 2012 Nintex USA LLC, All rights reserved. Errors and omissions excepted. Installation Guide 2012 Nintex USA LLC, All rights reserved. Errors and omissions excepted. Table of Contents 1. Installing Nintex Workflow 2010... 3 1.1 Run the Installer... 3 1.2 Deploy the Solution

More information

Active Directory Management. Agent Deployment Guide

Active Directory Management. Agent Deployment Guide Active Directory Management Agent Deployment Guide Document Revision Date: June 12, 2014 Active Directory Management Deployment Guide i Contents System Requirements...1 Hardware Requirements...1 Installation...3

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

Parallels Virtuozzo Containers 4.6 for Windows

Parallels Virtuozzo Containers 4.6 for Windows Parallels Parallels Virtuozzo Containers 4.6 for Windows Upgrade Guide Copyright 1999-2010 Parallels Holdings, Ltd. and its affiliates. All rights reserved. Parallels Holdings, Ltd. c/o Parallels International

More information

Slide Index. Technical Support Training

Slide Index. Technical Support Training MessageStats 7.1 Slide Index Learning Objectives- Slide 3 Product Overview- Slides 4-5 Common Issues- Slides 6-7 Troubleshooting Checklist- Slides 9-23 Common Error Messages- Slide 24 29 MessageStats Report

More information

Installing and Administering VMware vsphere Update Manager

Installing and Administering VMware vsphere Update Manager Installing and Administering VMware vsphere Update Manager Update 1 vsphere Update Manager 5.1 This document supports the version of each product listed and supports all subsequent versions until the document

More information

Keynote DeviceAnywhere/HP Application Lifecycle Management (HP ALM/QC) Integration Guide. TCE Automation 5.2

Keynote DeviceAnywhere/HP Application Lifecycle Management (HP ALM/QC) Integration Guide. TCE Automation 5.2 Keynote DeviceAnywhere/HP Application Lifecycle Management (HP ALM/QC) Integration Guide TCE Automation 5.2 Copyright Copyright 2012 Keynote DeviceAnywhere. All Rights Reserved. August 2012. Notice 2012

More information

Workflow Conductor for SharePoint 2010

Workflow Conductor for SharePoint 2010 Workflow Conductor for SharePoint 2010 Release 1.6 (SA08) Overview System Requirements Installing Workflow Conductor Configuring Workflow Conductor Using Workflow Conductor Studio Managing Workflows Licensing

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

Issue Tracking Anywhere Installation Guide

Issue Tracking Anywhere Installation Guide TM Issue Tracking Anywhere Installation Guide The leading developer of version control and issue tracking software Table of Contents Introduction...3 Installation Guide...3 Installation Prerequisites...3

More information

Core Solutions of Microsoft Lync Server 2013

Core Solutions of Microsoft Lync Server 2013 Course 20336A: Core Solutions of Microsoft Lync Server 2013 Length: Audience(s): 5 Days Level: 300 IT Professionals Technology: Microsoft Lync Server 2013 Type: Delivery Method: Course Instructor-led (classroom)

More information

Kaseya Server Instal ation User Guide June 6, 2008

Kaseya Server Instal ation User Guide June 6, 2008 Kaseya Server Installation User Guide June 6, 2008 About Kaseya Kaseya is a global provider of IT automation software for IT Solution Providers and Public and Private Sector IT organizations. Kaseya's

More information

Option 1 Using the Undelete PushInstall Wizard.

Option 1 Using the Undelete PushInstall Wizard. Installing Undelete on Your Network Undelete can be installed in a variety of ways. If you are installing Undelete onto a single computer, no special actions are needed. Simply double-click the Undelete

More information

To install Multifront you need to have familiarity with Internet Information Services (IIS), Microsoft.NET Framework and SQL Server 2008.

To install Multifront you need to have familiarity with Internet Information Services (IIS), Microsoft.NET Framework and SQL Server 2008. Znode Multifront - Installation Guide Version 6.2 1 System Requirements To install Multifront you need to have familiarity with Internet Information Services (IIS), Microsoft.NET Framework and SQL Server

More information

DocAve Upgrade Guide. From Version 4.1 to 4.5

DocAve Upgrade Guide. From Version 4.1 to 4.5 DocAve Upgrade Guide From Version 4.1 to 4.5 About This Guide This guide is intended for those who wish to update their current version of DocAve 4.1 to the latest DocAve 4.5. It is divided into two sections:

More information

XMap 7 Administration Guide. Last updated on 12/13/2009

XMap 7 Administration Guide. Last updated on 12/13/2009 XMap 7 Administration Guide Last updated on 12/13/2009 Contact DeLorme Professional Sales for support: 1-800-293-2389 Page 2 Table of Contents XMAP 7 ADMINISTRATION GUIDE... 1 INTRODUCTION... 5 DEPLOYING

More information

GETTING STARTED WITH SQL SERVER

GETTING STARTED WITH SQL SERVER GETTING STARTED WITH SQL SERVER Download, Install, and Explore SQL Server Express WWW.ESSENTIALSQL.COM Introduction It can be quite confusing trying to get all the pieces in place to start using SQL. If

More information

INSTALLATION GUIDE Datapolis Process System v 4.2.0.4294

INSTALLATION GUIDE Datapolis Process System v 4.2.0.4294 Datapolis.com, ul Wiktorska 63, 02-587 Warsaw, Poland tel. (+48 22) 398-37-53; fax. (+ 48 22) 398-37-93, office@datapolis.com INSTALLATION GUIDE Datapolis Process System v 4.2.0.4294 Last modification

More information

CONFIGURING MICROSOFT SQL SERVER REPORTING SERVICES

CONFIGURING MICROSOFT SQL SERVER REPORTING SERVICES CONFIGURING MICROSOFT SQL SERVER REPORTING SERVICES TECHNICAL ARTICLE November/2011. Legal Notice The information in this publication is furnished for information use only, and does not constitute a commitment

More information

ACTIVE DIRECTORY DEPLOYMENT

ACTIVE DIRECTORY DEPLOYMENT ACTIVE DIRECTORY DEPLOYMENT CASAS Technical Support 800.255.1036 2009 Comprehensive Adult Student Assessment Systems. All rights reserved. Version 031809 CONTENTS 1. INTRODUCTION... 1 1.1 LAN PREREQUISITES...

More information

CloudPortal Services Manager Version 11.0 CU2 Deployment Guide

CloudPortal Services Manager Version 11.0 CU2 Deployment Guide CloudPortal Services Manager Version 11.0 CU2 Deployment Guide Contents Install... 3 Requirements... 3 Recommended deployment procedure... 3 Impacted Servers... 3 Prerequisites... 4 Upgrade the database...

More information

QMX ios MDM Pre-Requisites and Installation Guide

QMX ios MDM Pre-Requisites and Installation Guide QMX ios MDM Pre-Requisites and Installation Guide QMX System Requirements The following requirements apply to the system that QMX will be installed on. This system will host the QMX MDM Service. These

More information

System Administration Training Guide. S100 Installation and Site Management

System Administration Training Guide. S100 Installation and Site Management System Administration Training Guide S100 Installation and Site Management Table of contents System Requirements for Acumatica ERP 4.2... 5 Learning Objects:... 5 Web Browser... 5 Server Software... 5

More information

Insight Video Net. LLC. CMS 2.0. Quick Installation Guide

Insight Video Net. LLC. CMS 2.0. Quick Installation Guide Insight Video Net. LLC. CMS 2.0 Quick Installation Guide Table of Contents 1. CMS 2.0 Installation 1.1. Software Required 1.2. Create Default Directories 1.3. Create Upload User Account 1.4. Installing

More information

SOLARWINDS ORION. Patch Manager Evaluation Guide for ConfigMgr 2012

SOLARWINDS ORION. Patch Manager Evaluation Guide for ConfigMgr 2012 SOLARWINDS ORION Patch Manager Evaluation Guide for ConfigMgr 2012 About SolarWinds SolarWinds, Inc. develops and markets an array of network management, monitoring, and discovery tools to meet the diverse

More information

Bosch ReadykeyPRO Unlimited Installation Guide, product version 6.5. This guide is item number DOC-110-2-029, revision 2.029, May 2012.

Bosch ReadykeyPRO Unlimited Installation Guide, product version 6.5. This guide is item number DOC-110-2-029, revision 2.029, May 2012. Bosch ReadykeyPRO Unlimited Installation Guide, product version 6.5. This guide is item number DOC-110-2-029, revision 2.029, May 2012. Copyright 1995-2012 Lenel Systems International, Inc. Information

More information

Docufide Client Installation Guide for Windows

Docufide Client Installation Guide for Windows Docufide Client Installation Guide for Windows This document describes the installation and operation of the Docufide Client application at the sending school installation site. The intended audience is

More information

3M Command Center. Installation and Upgrade Guide

3M Command Center. Installation and Upgrade Guide 3M Command Center Installation and Upgrade Guide Copyright 3M, 2015. All rights reserved., 78-8129-3760-1d 3M is a trademark of 3M. Microsoft, Windows, Windows Server, Windows Vista and SQL Server are

More information

TECHNICAL DOCUMENTATION SPECOPS DEPLOY / APP 4.7 DOCUMENTATION

TECHNICAL DOCUMENTATION SPECOPS DEPLOY / APP 4.7 DOCUMENTATION TECHNICAL DOCUMENTATION SPECOPS DEPLOY / APP 4.7 DOCUMENTATION Contents 1. Getting Started... 4 1.1 Specops Deploy Supported Configurations... 4 2. Specops Deploy and Active Directory...5 3. Specops Deploy

More information

Lync Online. Basic Administration Guide

Lync Online. Basic Administration Guide Basic Administration Guide Table of Contents Introduction... 3 Audience... 3 Document Location... 3 Special information... 3 1. Download and install Lync... 4 2. Set External Communications... 6 3. Modify

More information

Perceptive Intelligent Capture. Product Migration Guide. with Supervised Learning. Version 5.5 SP3

Perceptive Intelligent Capture. Product Migration Guide. with Supervised Learning. Version 5.5 SP3 Perceptive Intelligent Capture with Supervised Learning Product Migration Guide Version 5.5 SP3 Written by: Product Documentation, QA Date: March 2014 2014 Perceptive Software, Inc.. All rights reserved

More information

NetWrix File Server Change Reporter. Quick Start Guide

NetWrix File Server Change Reporter. Quick Start Guide NetWrix File Server Change Reporter Quick Start Guide Introduction... 3 Product Features... 3 Licensing... 3 How It Works... 4 Getting Started... 5 System Requirements... 5 Setup... 5 Additional Considerations...

More information

Installing GFI MailArchiver

Installing GFI MailArchiver Installing GFI MailArchiver Introduction This chapter highlights important points you should take into consideration before installing GFI MailArchiver on your network, so that you can make the best decisions

More information

Team Foundation Server 2010, Visual Studio Ultimate 2010, Team Build 2010, & Lab Management Beta 2 Installation Guide

Team Foundation Server 2010, Visual Studio Ultimate 2010, Team Build 2010, & Lab Management Beta 2 Installation Guide Page 1 of 243 Team Foundation Server 2010, Visual Studio Ultimate 2010, Team Build 2010, & Lab Management Beta 2 Installation Guide (This is an alpha version of Benjamin Day Consulting, Inc. s installation

More information

Preparing a SQL Server for EmpowerID installation

Preparing a SQL Server for EmpowerID installation Preparing a SQL Server for EmpowerID installation By: Jamis Eichenauer Last Updated: October 7, 2014 Contents Hardware preparation... 3 Software preparation... 3 SQL Server preparation... 4 Full-Text Search

More information

Management Utilities Configuration for UAC Environments

Management Utilities Configuration for UAC Environments Management Utilities Configuration for UAC Environments For optimal use of SyAM Management Utilities, Windows client machines should be configured with User Account Control disabled or set to the least

More information

Chapter 3 Installing Foundation 2013 onto Windows Server

Chapter 3 Installing Foundation 2013 onto Windows Server Terms This Windows SharePoint Services Operations Guide (WSSOPS) from the Computer Information Agency is provided as is. Every effort has been made by the author to ensure that information provided is

More information

Microsoft Corporation. Project Server 2010 Installation Guide

Microsoft Corporation. Project Server 2010 Installation Guide Microsoft Corporation Project Server 2010 Installation Guide Office Asia Team 11/4/2010 Table of Contents 1. Prepare the Server... 2 1.1 Install KB979917 on Windows Server... 2 1.2 Creating users and groups

More information

Bitrix Site Manager ASP.NET. Installation Guide

Bitrix Site Manager ASP.NET. Installation Guide Bitrix Site Manager ASP.NET Installation Guide Contents Introduction... 4 Chapter 1. Checking for IIS Installation... 5 Chapter 2. Using An Archive File to Install Bitrix Site Manager ASP.NET... 7 Preliminary

More information

Microsoft 20336 - Core Solutions of Microsoft Lync Server 2013

Microsoft 20336 - Core Solutions of Microsoft Lync Server 2013 1800 ULEARN (853 276) www.ddls.com.au Microsoft 20336 - Core Solutions of Microsoft Lync Server 2013 Length 5 days Price $4070.00 (inc GST) Version B Overview This instructor-led course teaches IT professionals

More information

SAP BusinessObjects Business Intelligence Suite Document Version: 4.1 Support Package 3-2014-05-07. Patch 3.x Update Guide

SAP BusinessObjects Business Intelligence Suite Document Version: 4.1 Support Package 3-2014-05-07. Patch 3.x Update Guide SAP BusinessObjects Business Intelligence Suite Document Version: 4.1 Support Package 3-2014-05-07 Table of Contents 1 Document History....3 2 Introduction....4 2.1 About this Document....4 2.1.1 Constraints....4

More information

How To Configure CU*BASE Encryption

How To Configure CU*BASE Encryption How To Configure CU*BASE Encryption Configuring encryption on an existing CU*BASE installation INTRODUCTION This booklet was created to assist CU*Answers clients with the configuration of encrypted CU*BASE

More information

10533A: Deploying, Configuring, and Administering Microsoft Lync Server 2010

10533A: Deploying, Configuring, and Administering Microsoft Lync Server 2010 10533A: Deploying, Configuring, and Administering Microsoft Lync Server 2010 Course Overview This instructor-led course teaches IT professionals how to deploy, configure, and administer a Microsoft Lync

More information

MSSQL quick start guide

MSSQL quick start guide C u s t o m e r S u p p o r t MSSQL quick start guide This guide will help you: Add a MS SQL database to your account. Find your database. Add additional users. Set your user permissions Upload your database

More information

SYSTEM REQUIREMENTS...

SYSTEM REQUIREMENTS... Contents INTRODUCTION... 1 BillQuick HR Setup Checklist... 2 SYSTEM REQUIREMENTS... 3 HARDWARE REQUIREMENTS... 3 SOFTWARE REQUIREMENTS... 3 Operating System Requirements... 3 Other System Requirements...

More information

Core Solutions of Microsoft Lync Server 2013

Core Solutions of Microsoft Lync Server 2013 About this Course Core Solutions of Microsoft Lync This instructor-led course teaches IT professionals how to plan, design, deploy, configure, and administer a Microsoft Lync solution. The course emphasizes

More information

Administrator s Guide

Administrator s Guide Attachment Save for Exchange Administrator s Guide document version 1.8 MAPILab, December 2015 Table of contents Intro... 3 1. Product Overview... 4 2. Product Architecture and Basic Concepts... 4 3. System

More information

InformationNOW Upgrading to Microsoft SQL Server 2008

InformationNOW Upgrading to Microsoft SQL Server 2008 InformationNOW Upgrading to Microsoft SQL Server 2008 About this Document This document provides the steps necessary to update the district s InformationNOW database and reporting engine platform from

More information

PROJECTIONS SUITE. Database Setup Utility (and Prerequisites) Installation and General Instructions. v0.9 draft prepared by David Weinstein

PROJECTIONS SUITE. Database Setup Utility (and Prerequisites) Installation and General Instructions. v0.9 draft prepared by David Weinstein PROJECTIONS SUITE Database Setup Utility (and Prerequisites) Installation and General Instructions v0.9 draft prepared by David Weinstein Introduction These are the instructions for installing, updating,

More information

NETWRIX EVENT LOG MANAGER

NETWRIX EVENT LOG MANAGER NETWRIX EVENT LOG MANAGER ADMINISTRATOR S GUIDE Product Version: 4.0 July/2012. Legal Notice The information in this publication is furnished for information use only, and does not constitute a commitment

More information

Lab 07: Configuring High Availability and Disaster Recovery in Microsoft Lync Server 2013

Lab 07: Configuring High Availability and Disaster Recovery in Microsoft Lync Server 2013 Lab 07: Configuring High Availability and Disaster Recovery in Microsoft Lync Server 2013 DISCLAIMER 2013 Microsoft Corporation. All rights reserved. Microsoft, Active Directory, Forefront, Hyper-V, Internet

More information

STATISTICA VERSION 9 STATISTICA ENTERPRISE INSTALLATION INSTRUCTIONS FOR USE WITH TERMINAL SERVER

STATISTICA VERSION 9 STATISTICA ENTERPRISE INSTALLATION INSTRUCTIONS FOR USE WITH TERMINAL SERVER Notes: STATISTICA VERSION 9 STATISTICA ENTERPRISE INSTALLATION INSTRUCTIONS FOR USE WITH TERMINAL SERVER 1. These instructions focus on installation on Windows Terminal Server (WTS), but are applicable

More information

Rogue Wave HostAccess 7.40J Installation Guide... 1

Rogue Wave HostAccess 7.40J Installation Guide... 1 Rogue Wave HostAccess 7.40J Installation Guide... 1 Rogue Wave HostAccess 7.40J Installation Guide... 1 HostAccess Installations... 2 Standard Installation - Desktop and Windows Terminal Server/Citrix

More information

NSi Mobile Installation Guide. Version 6.2

NSi Mobile Installation Guide. Version 6.2 NSi Mobile Installation Guide Version 6.2 Revision History Version Date 1.0 October 2, 2012 2.0 September 18, 2013 2 CONTENTS TABLE OF CONTENTS PREFACE... 5 Purpose of this Document... 5 Version Compatibility...

More information

Core Solutions of Microsoft Lync Server 2013

Core Solutions of Microsoft Lync Server 2013 MS20336 Längd: 5 dagar Core Solutions of Microsoft Lync Server 2013 This instructor-led course teaches IT professionals how to plan, design, deploy, configure, and administer a Microsoft Lync Server 2013

More information

Cisco TelePresence Management Suite Extension for Microsoft Exchange

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

More information

Parallels Containers for Windows 6.0

Parallels Containers for Windows 6.0 Parallels Containers for Windows 6.0 Upgrade Guide June 11, 2014 Copyright 1999-2014 Parallels IP Holdings GmbH and its affiliates. All rights reserved. Parallels IP Holdings GmbH Vordergasse 59 8200 Schaffhausen

More information

Core Solutions of Microsoft Lync Server 2013

Core Solutions of Microsoft Lync Server 2013 Course 20336B: Core Solutions of Microsoft Lync Server 2013 Course Details Course Outline Module 1: Architecture and Design Approach for Microsoft Lync Server 2013 This module will help you to plan and

More information

NETWRIX USER ACTIVITY VIDEO REPORTER

NETWRIX USER ACTIVITY VIDEO REPORTER NETWRIX USER ACTIVITY VIDEO REPORTER ADMINISTRATOR S GUIDE Product Version: 1.0 January 2013. Legal Notice The information in this publication is furnished for information use only, and does not constitute

More information

TROUBLESHOOTING GUIDE

TROUBLESHOOTING GUIDE Lepide Software LepideAuditor Suite TROUBLESHOOTING GUIDE This document explains the troubleshooting of the common issues that may appear while using LepideAuditor Suite. Copyright LepideAuditor Suite,

More information

XenDesktop Implementation Guide

XenDesktop Implementation Guide Consulting Solutions WHITE PAPER Citrix XenDesktop XenDesktop Implementation Guide Pooled Desktops (Local and Remote) www.citrix.com Contents Contents... 2 Overview... 4 Initial Architecture... 5 Installation

More information

Welcome to the QuickStart Guide

Welcome to the QuickStart Guide QuickStart Guide Welcome to the QuickStart Guide This QuickStart Guide provides the information you need to install and start using Express Software Manager. For more comprehensive help on using Express

More information

ms-help://ms.technet.2005mar.1033/security/tnoffline/security/smbiz/winxp/fwgrppol...

ms-help://ms.technet.2005mar.1033/security/tnoffline/security/smbiz/winxp/fwgrppol... Page 1 of 16 Security How to Configure Windows Firewall in a Small Business Environment using Group Policy Introduction This document explains how to configure the features of Windows Firewall on computers

More information

Setting Up a Windows Virtual Machine for SANS FOR526

Setting Up a Windows Virtual Machine for SANS FOR526 Setting Up a Windows Virtual Machine for SANS FOR526 As part of the Windows Memory Forensics course, SANS FOR526, you will need to create a Windows virtual machine to use in class. We recommend using VMware

More information

Workflow approval via email

Workflow approval via email Microsoft Dynamics AX Workflow approval via email White Paper This document highlights the functionality in Microsoft Dynamics AX 2012 R2 that allows workflow to be configured so that a user can take approval

More information

DriveLock Quick Start Guide

DriveLock Quick Start Guide Be secure in less than 4 hours CenterTools Software GmbH 2012 Copyright Information in this document, including URL and other Internet Web site references, is subject to change without notice. Unless otherwise

More information

How to deploy Internet Explorer 11 using SCCM 2012 R2

How to deploy Internet Explorer 11 using SCCM 2012 R2 Home Exchange Lync System Center Windows OS Misc Faq Downloads Support About Me How to deploy Internet Explorer 11 using SCCM 2012 R2 In this post we will see how to deploy internet explorer 11 using SCCM

More information

Lync User Guide. 1 P a g e

Lync User Guide. 1 P a g e Lync User Guide The Lync 200 client allows you to access the University of Arizona s Unified Communications solution. Lync provides real-time instant message (IM) Audio and Video calling and also provides

More information

GlobalSCAPE DMZ Gateway, v1. User Guide

GlobalSCAPE DMZ Gateway, v1. User Guide GlobalSCAPE DMZ Gateway, v1 User Guide GlobalSCAPE, Inc. (GSB) Address: 4500 Lockhill-Selma Road, Suite 150 San Antonio, TX (USA) 78249 Sales: (210) 308-8267 Sales (Toll Free): (800) 290-5054 Technical

More information

ICONICS Using the Azure Cloud Connector

ICONICS Using the Azure Cloud Connector Description: Guide to use the Azure Cloud Connector General Requirement: Valid account for Azure, including Cloud Service, SQL Azure and Azure Storage. Introduction Cloud Connector is a FrameWorX Server

More information

How To Create An Easybelle History Database On A Microsoft Powerbook 2.5.2 (Windows)

How To Create An Easybelle History Database On A Microsoft Powerbook 2.5.2 (Windows) Introduction EASYLABEL 6 has several new features for saving the history of label formats. This history can include information about when label formats were edited and printed. In order to save this history,

More information

DocuShare Installation Guide

DocuShare Installation Guide DocuShare Installation Guide Publication date: February 2011 This document supports DocuShare Release 6.6.1 Prepared by: Xerox Corporation DocuShare Business Unit 3400 Hillview Avenue Palo Alto, California

More information

Monitoring Replication

Monitoring Replication Monitoring Replication Article 1130112-02 Contents Summary... 3 Monitor Replicator Page... 3 Summary... 3 Status... 3 System Health... 4 Replicator Configuration... 5 Replicator Health... 6 Local Package

More information

Exchange Server Backup and Restore

Exchange Server Backup and Restore WHITEPAPER BackupAssist Version 6 www.backupassist.com Cortex I.T. 2001-2007 2 Contents 1. Introduction... 3 1.1 Overview... 3 1.2 Requirements... 3 1.3 Requirements for remote backup of Exchange 2007...

More information

How To Deploy Lync 2010 Client Using SCCM 2012 R2

How To Deploy Lync 2010 Client Using SCCM 2012 R2 prajwaldesai.com http://prajwaldesai.com/how-to-deploy-lync-2010-client-using-sccm-2012-r2/ How To Deploy Lync 2010 Client Using SCCM 2012 R2 Prajwal Desai In this post we will see how to deploy Lync 2010

More information

Pulse Secure Client. Customization Developer Guide. Product Release 5.1. Document Revision 1.0. Published: 2015-02-10

Pulse Secure Client. Customization Developer Guide. Product Release 5.1. Document Revision 1.0. Published: 2015-02-10 Pulse Secure Client Customization Developer Guide Product Release 5.1 Document Revision 1.0 Published: 2015-02-10 Pulse Secure, LLC 2700 Zanker Road, Suite 200 San Jose, CA 95134 http://www.pulsesecure.net

More information

1/4/12 Installing and Configuring WebDAV on IIS 7 : WebDAV for IIS 7.0 : Publishing Content to Web Sites : T

1/4/12 Installing and Configuring WebDAV on IIS 7 : WebDAV for IIS 7.0 : Publishing Content to Web Sites : T Home > Learn > Deploying Web Sites on IIS 7 > Publishing Content to Web Sites > WebDAV for IIS 7.0 > Installing and Configuring WebDAV on IIS 7 Installing and Configuring WebDAV on IIS 7 Author: Robert

More information

GFI LANguard 9.0 ReportPack. Manual. By GFI Software Ltd.

GFI LANguard 9.0 ReportPack. Manual. By GFI Software Ltd. GFI LANguard 9.0 ReportPack Manual By GFI Software Ltd. http://www.gfi.com E-mail: info@gfi.com Information in this document is subject to change without notice. Companies, names, and data used in examples

More information

IBM Connections Plug-In for Microsoft Outlook Installation Help

IBM Connections Plug-In for Microsoft Outlook Installation Help IBM Connections Version 5 IBM Connections Plug-In for Microsoft Outlook Installation Help Edition Notice Note: Before using this information and the product it supports, read the information in "Notices."

More information

Lync for Mac Get Help Guide

Lync for Mac Get Help Guide How do I download the Lync Client Tool for Mac? The Lync Client allows you to use your computer as a telephone as well as enabling the unified communication features. Part 1: Installing the Lync Client

More information

Installation Guide. Version 1.5. May 2015 Edition 2002-2015 ICS Learning Group

Installation Guide. Version 1.5. May 2015 Edition 2002-2015 ICS Learning Group Installation Guide Version 1.5 May 2015 Edition 2002-2015 ICS Learning Group 1 Disclaimer ICS Learning Group makes no representations or warranties with respect to the contents or use of this manual, and

More information

How To Set Up Safetica Insight 9 (Safetica) For A Safetrica Management Service (Sms) For An Ipad Or Ipad (Smb) (Sbc) (For A Safetaica) (

How To Set Up Safetica Insight 9 (Safetica) For A Safetrica Management Service (Sms) For An Ipad Or Ipad (Smb) (Sbc) (For A Safetaica) ( SAFETICA INSIGHT INSTALLATION MANUAL SAFETICA INSIGHT INSTALLATION MANUAL for Safetica Insight version 6.1.2 Author: Safetica Technologies s.r.o. Safetica Insight was developed by Safetica Technologies

More information

Portions of this product were created using LEADTOOLS 1991-2009 LEAD Technologies, Inc. ALL RIGHTS RESERVED.

Portions of this product were created using LEADTOOLS 1991-2009 LEAD Technologies, Inc. ALL RIGHTS RESERVED. Installation Guide Lenel OnGuard 2009 Installation Guide, product version 6.3. This guide is item number DOC-110, revision 1.038, May 2009 Copyright 1992-2009 Lenel Systems International, Inc. Information

More information