RoomWizard Exchange Connector. Complete Implementation Guide

Size: px
Start display at page:

Download "RoomWizard Exchange Connector. Complete Implementation Guide"

Transcription

1 RoomWizard Exchange Connector Complete Implementation Guide

2 Exchange Connector Installation Before installing and configuring the Exchange Connector, you will need the following: Windows server with internet access on which to install the connector (details below) Connector package, downloaded and unzipped, on the desktop of the Web Server Local domain service account that can be used to log in to the Web Server and Exchange for PowerShell User account configured in Exchange that the connector will use to connect to Exchange Resources with mailboxes for calendars (one for each RoomWizard) Note: Newly created accounts and resources take some time to replicate throughout Exchange Full mailbox permissions between user account and each resource mailbox Exchange Web Services (EWS) URL for Resource Mailbox Calendar access Connector will use Exchange s autodiscovery to locate the EWS server For Microsoft s Optimization Recommendations, see Appendix D What is autodiscovery and how does it work? Autodiscovery is a process that Microsoft supports for locating Exchange Web Services servers based on an address or domain. This is usually easier than specifying an EWS URL because most people know an address but not the name of a server. To test Exchange Web Services connections, you can use Microsoft s Test Connectivity Analyzer: testconnectivity.microsoft.com What is Impersonation and how does it work? Exchange Impersonation is a mechanism that allows a single Windows Active Directory account (your RoomWizard Service account) to act on behalf of other users on a Microsoft Exchange mailbox (your RoomWizard Resource Mailboxes), as if they were performing the action themselves. This greatly reduces the number of connections counted against the service account. Too many connections by any one account will result in Exchange throttling back access by that account through the EWS API. See Appendix C for configuring Exchange and Impersonation. Also see our Impersonation White Paper included in the software package for more information. 2

3 System Requirements Server 2008, 2012 or 2016 (see Appendix B for details on installing on Server 2012 and 2016) Port 8080 open in Server firewall; this will be used when configuring the Connector Website Server Manager.NET Framework (Features), 4.0 and 4.5 (Programs/Features) microsoft.com/net ASP.NET (Application Development): Install via Server Manager, Web Server (IIS) Role Services, Add Role Services Basic Authentication module (Security): Install via Server Manager, Web Server (IIS) Role Services, Add Role Services IIS (Internet Information Service) IIS 7 or IIS 8 (see Appendix B for details on installing on Server 2012 and 2016) iis.net Web Platform Installer in IIS (Installer only, to be used in later steps) microsoft.com/web/downloads/platform.aspx Web Deploy (Web Deployment Tool) in IIS iis.net/download/webdeploy 3

4 Configure Room Mailboxes The Exchange Connector requires full user access to the room mailboxes managed by the RoomWizard devices. There are several ways that an administrator can provide full access to the RoomWizard service using PowerShell. We have provided a script that can automatically grant full access to resource mailboxes. However, if you choose to bypass the script, we have provided alternative PowerShell instructions. Granting Access Using the PowerShell Script 1. Right-click GrantFullAccess.ps1 and select Run with PowerShell. 4

5 CONFIGURE ROOM MAILBOXES 2. Enter Exchange PowerShell path and the service user s ID (such as RoomWizard, room.wizard, etc.). 3. Enter the mailbox to configure or click Enter to choose a CSV file containing a new, line-delimited list of room identifiers. The CSV file should contain a header named rooms. 5

6 CONFIGURE ROOM MAILBOXES 4. Next, enter a username and password. These credentials are used to log in to your Exchange account and create a PowerShell session. 5. Completing these steps will establish a remote PowerShell session with Outlook and grant the given user full access to the rooms specified in the CSV. 6

7 CONFIGURE ROOM MAILBOXES Granting Application Impersonation Role Manually via PowerShell This section provides the necessary commands to configure a service user that has the Application Impersonation role. To proceed, a working knowledge of PowerShell is recommended. The following command is used to grant the Application Impersonation role: New-ManagementRoleAssignment Name:impersonationAssignmentName Role:ApplicationImpersonation User: <Service User> For example: New-ManagementRoleAssignment Name:impersonationAssignmentName Role:ApplicationImpersonation User: roomwizard@organization.com The following command checks if a user has the Application Impersonation role: Get-ManagementRoleAssignment -RoleAssignee <Service User> -Role ApplicationImpersonation -RoleAssigneeType user For example: Get-ManagementRoleAssignment -RoleAssignee roomwizard@organization.com -Role ApplicationImpersonation -RoleAssigneeType user Reference: Configuring Room Mailbox By default, a room does not auto-accept invitations. In order for the RoomWizard and Exchange Connector to work properly, the room needs to be configured to auto-accept invitations. The room should also be configured to reject conflicting meetings. The following command configures every room s mailbox to auto-accept invitations: Get-Mailbox where{$_.resourcetype -eq Room } Set-CalendarProcessing -AutomateProcessing AutoAccept -AllowConflicts $false If you want to maintain the comments and private flag between the resource and the user, add the following arguments to the command above: -RemovePrivateProperty $false -DeleteComments $false Reference: The following command configures a specific room s mailbox to auto-accept invitations: Get-Mailbox UpstairsConferenceRoom Set-CalendarProcessing -AutomateProcessing AutoAccept By default, the room does not display the original subject of an invitation. Instead, the room shows the organizer s name as the subject. If this format is not desired, the following command will reconfigure the room mailbox to show the invitation subject: Set-CalendarProcessing -Identity $$ResourceName$$ -AddOrganizerToSubject $false -DeleteSubject $false 7

8 Use the Web Platform Installer to Install ASP.NET MVC 3 This section walks through the process of setting up the environment to run the Exchange Connector. You should already have the appropriate software installed as listed in the System Requirements section. 1. Launch the Internet Information Services (IIS) Manager from the Administrative Tools section of your web server. 2. Double-click the Web Platform Installer icon at the bottom of the center pane in the Management window. 3. In the Web Platform Installer, search for MVC. Click the Add button next to ASP.NET MVC 3 (Visual Studio 2010). Click Install. Wait for installation to complete. 8

9 Create a New Website Running on a.net 4.0 Application Pool 1. Right-click on the Sites folder in the left pane of IIS Manager and select Add Web Site to begin. This will open the Add Web Site dialog box. In the Add Web Site dialog box, enter information for these fields: Site name: Enter a name for your website Application pool: Note what Application pool your website is going to use; you will configure that in the next step Physical path: Choose where on the server drive the connector application files will reside. You may need to create a new empty folder for this, such as C:\RoomWizard Binding: Configure the Port section so that it will not conflict with other sites running on the Web Server is used in the example above. Note: Make sure you use a port open within your environment. Click OK to create the site. 9

10 CREATE A NEW WEBSITE RUNNING ON A.NET 4.0 APPLICATION POOL 2. To configure the Application pool, click Application Pools in the left pane to bring up the list of current application pools on the server. Double-click the Application pool you configured for the new site to use. This will bring up the Edit Application Pool dialog box. Select.NET Framework v4.0.xxxxx from the list. Note:. NET Framework v4.0 is default in IIS 10. If it doesn t appear in the list, make sure you have the.net framework version 4 installed. Click OK to save the changes. 10

11 CREATE A NEW WEBSITE RUNNING ON A.NET 4.0 APPLICATION POOL 3. Now click back on the new website you created. Next, in the right-hand pane click on Import Application. This will let you import a zipped application bundle into the website. 4. Click Browse and locate the zip file containing the Exchange Connector (this is in the Connector package you downloaded and unzipped on the Desktop of Web Server). Click Next to continue. 11

12 CREATE A NEW WEBSITE RUNNING ON A.NET 4.0 APPLICATION POOL The defaults are correct below. Copy all of the contents of the zip file and click Next to continue. Clear the text in the Application Path box to install it in the root of the site. A dialog box will appear confirming your choice to install the application at the root of the site instead of in a folder beneath the root. Click OK, then click Next to continue. 12

13 CREATE A NEW WEBSITE RUNNING ON A.NET 4.0 APPLICATION POOL On the Overwrite Existing Files page: If this is the first installation, the value chosen here will not matter If you are upgrading an existing Exchange Connector, click Yes Click Next to continue The application has now been installed. Click Finish to exit the site installer. 13

14 CREATE A NEW WEBSITE RUNNING ON A.NET 4.0 APPLICATION POOL 5. Select the site in the left pane, then click Restart in the right-hand pane. 14

15 Configuring Basic Authentication (IIS) Ensure the Basic Authentication module is present. Select the Server Connection from your Connections tree. 1. In the middle pane (IIS), double-click the Modules icon. 15

16 CONFIGURING BASIC AUTHENTICATION (IIS) 2. Click on BasicAuthenticationModule. 3. In the right-hand pane, click Configure Native Modules link. 4. TokenCacheModule should be in the list that appears. Check the box next to it. (If TokenCacheModule does not show in the list, disregard this step.) 5. Click OK. 16

17 CONFIGURING BASIC AUTHENTICATION (IIS) 6. Click BasicAuthenticationModule in the Modules list. 7. In the right-hand pane, if Unlock is present under Edit, click it. The word Lock should now appear below Edit. This indicates that individual sites running on the server can configure the module. 8. Under Connections, select your new website from the Sites list. 9. Double-click the Authentication icon in the middle pane. 10. In the center pane, enable Basic Authentication, and disable all other forms of authentication, including Anonymous Authentication. 17

18 CONFIGURING THE EXCHANGE CONNECTOR Configuring the Exchange Connector NOTE: Prior to browsing the website in order to access the configuration, please momentarily disable IE ESC inn the Server Manager. Your connector is now ready to be configured with your Exchange username, password and license key. Browse your Exchange Connector website, and provide login credentials for your server when prompted. 1. Right-click on your website, select Manage Web Site then Browse. 20

19 CONFIGURING THE EXCHANGE CONNECTOR Your server s web browser will open the web page of your newly installed Connector. This is the configuration page for your connection to Exchange. Note: Since Basic Authentication for this website was enabled in a previous step, you will be asked for credentials from Windows Security. Please log in using the local domain service account you created according to the Connector prerequisites noted on page 2. The URL will be based on how you set up your website. For example if you installed the connector on a server named Server, and configured it to run on port 8080, browse to 2. The Exchange Connector needs three pieces of information to operate: License key or a 90-day Use Demo Username ( address) for the Exchange account for whom you plan to grant administrative rights over RoomWizard room calendars this should be in the form user@domain.com, not domain\user and Password for the Exchange account Application Impersonation setup properly in Exchange, see page 7 above It is imperative that Application Impersonation is set up correctly and functioning properly in Exchange prior to installing this Conn in order to successfully run the Connector. 20

20 Generate a New Configuration To generate a new configuration if you have a license: 1. Enter your license key. 2. Enter the username and password for the Exchange account. 3. Click Test Connection to test the Exchange connection. 4. If Test Connection is successful, click Download New Configuration and Save As Site.conf file over the existing Site.conf in the bin folder of your Connector files (e.g., C:\RoomWizard\bin). If Test Connection is not successful, make sure you are using an Exchange address. If Test Connection continues to fail, check the User Mailbox account and confirm it resides in your Exchange Mailbox database and all replication is completed. 5. Restart the connector website and reload the connector page in your browser to see that the new configuration is live. To use the demo for up to 90 days: 1. Check Use Demo. 2. Follow steps 2-5 from above, as if you have a license. To update your configuration from a demo to a licensed version: Open the configuration web page, then: 1. Enter your license key. 2. Uncheck the Use Demo checkbox. 3. Download and install the new configuration as before. 4. Restart the connector s website. 21

21 Test Connection Using Connector Test Tool 1. Use the URL for the server that the Connector is installed on in Connector URL, including website port. 2. Choose your Time Zone. 3. Click the About Connector button to test the connection to the Connector. 4. Add a meeting via Outlook and confirm acceptance by the Resource Mailbox. Click the Get Bookings button. Response should look similar to below with Calendar bookings. Or you can use the following command in your web browser: date= &range_end_time=000000&format=xml&source=fp&rnd= &devicetype=rw10& room_id=roomid&time_zone=us%2fmountain Make sure to edit the command to match your settings. The example, above right, shows a result code of 0 indicating there are no bookings for the room id used; the test is successful. Be sure to change the highlighted fields to reflect the correct URL, today s date and tomorrow s date, and the correct Room_ID. 22

22 Configuring the RoomWizard The RoomWizard is configured for synchronization in the Synchronization web page via the IP address of the device. 1. Find the IP address of your RoomWizard from the About button on the front panel of the device. Scroll down to the bottom of the main web page and select RoomWizard setup. 2. Log in. The default admin password will be either roomwizard or depending on when the RoomWizard was purchased. It is suggested that your organization change this password and document the change, so be sure to check with your system administrator for an updated password. 3. Select Synchronization. 4. The RoomWizard should be set to Synchronized mode by selecting the radio button Use external source. 23

23 CONFIGURING THE ROOMWIZARD The URL for the connector will be something like: web server:8080/api. 1. Your web server is the server you installed the connector on and 8080 is the port number you used for your website. Please use the local domain service account you created according to the Connector prerequisites on page 2 for username and password. 2. Click the first Save on THIS Wizard button to make the connection to your Connector. 3. In the Room identifier field, enter the name of the mailbox exactly as it is configured in Exchange (e.g., ConferenceRoom@organization.com). Click the second Save on THIS Wizard button to make the Connection to your Exchange Calendar. 24

24 Appendix A Capturing Full Requests and Responses from IIS The easiest way to capture the full request and responses from IIS and the Exchange Connector is to use IIS s Failed Request Tracing: learn.iis.net/page.aspx/266/troubleshooting-failed-requests-using-tracing-in-iis 1. Install IIS: Tracing using the Web Platform Installer. 2. Close the IIS Manager window and open it again. 3. Click Failed Request Tracing in the right-hand pane. 25

25 APPENDIX A 4. Check the Enable box, choose a log file directory, and click OK. 5. Double-click the Failed Request Tracing icon in the middle pane to bring up the Failed Request Tracing Rules. 6. Click Add in the right-hand pane to bring up the dialog to create a new rule. 26

26 APPENDIX A 7. Keep the default All content for the first step and click Next to continue. 8. To capture all requests (which is recommended for debugging purposes), check the Status code(s) box and enter Click Next to continue. 27

27 APPENDIX A 9. Keep the defaults to include all Providers of request and response data. 10. Click Finish to view the new rule, which is ready to capture all of the requests and responses the server receives. 11. Next, resubmit the failing requests, save the log directory that you selected in step 4, and forward to Steelcase at techsupport@steelcase.com. 28

28 Appendix B Installing on Server 2012/2016 with IIS 8.x/IIS 10.x 1. Launch Server Manager. 2. Click on Manage, then select Add Roles and Features. 31

29 APPENDIX B 3. On the Before you Begin screen, click Next. 4. On the Installation Type screen, select Role-based or feature-based installation, then click Next. 32

30 APPENDIX B 5. On the Server Selection screen, select the server. (In this example, we are installing on the local server SP2013.) Click Next. 6. On the Server Roles screen, check the box next to Web Server (IIS). Click Next. 33

31 APPENDIX B 7. Click Add Features. 8. Web Server (IIS) box should now be checked. Click Next. 34

32 APPENDIX B 9. On the Features screen, add any additional features to install. (In this example, we added.net Framework 3.5 Features since it is required.) Click Next. 10. On the Web Server Role (IIS) screen, click Next. 35

33 APPENDIX B 11. On the Role Services screen, select any IIS components to install. We recommend the Windows Authentication role service. After you make your selection(s), click Next. 12. On the Features screen, verify your selections and click Next. 36

34 APPENDIX B 13. Confirm your selections and then click Install. 14. Closing the Server Manager will not affect the installation. If you keep it open, you are able to monitor the progress of the installation. When it completes, click Close. Note: Follow the steps on pages 2 19 to complete the Connector installation and configuration. 37

35 Appendix C Establishing Session with Outlook In order to configure mailbox access permissions, you will need to establish a PowerShell session using your Exchange account. This section assumes you have a working knowledge of PowerShell. Note: You will need to run PowerShell as an Administrator. Granting Delegate Access Manually via PowerShell This section provides the necessary commands to configure a room mailbox that grants the RoomWizard service user full mailbox access. To proceed, a working knowledge of PowerShell is recommended. The following command is used to grant a user full access to a mailbox: Add-MailboxPermission <Mailbox Identifier> -User: <Service User> -AccessRights: FullAccess -InheritanceType: All For example: Add-MailboxPermission UpstairsConferenceRoom -User: room.wizard -AccessRights: FullAccess -InheritanceType: All The following command finds all resources and grants full user access: Get-Mailbox -filter {isresource -eq $True} -Resultsize unlimited Add-MailboxPermission -User: <Service User> -AccessRights: FullAccess -InheritanceType: All Note: You can provide other filtering properties that will reduce the result set. See technet.microsoft.com/en-us/library/bb738155(exchg.80).aspx for more filtering properties. 38

36 Granting Application Impersonation Role Manually via PowerShell This section provides the necessary commands to configure a service user that has the Application Impersonation role. To proceed, a working knowledge of PowerShell is recommended. The following command is used to grant the Application Impersonation role: New-ManagementRoleAssignment Name:impersonationAssignmentName Role:ApplicationImpersonation User: <Service User> For example: New-ManagementRoleAssignment Name:impersonationAssignmentName Role:ApplicationImpersonation User: roomwizard@organization.com The following command checks if a user has the Application Impersonation role: Get-ManagementRoleAssignment -RoleAssignee <Service User> -Role ApplicationImpersonation -RoleAssigneeType user For example: Get-ManagementRoleAssignment -RoleAssignee roomwizard@organization.com -Role ApplicationImpersonation -RoleAssigneeType user Reference: Configuring Room Mailbox By default, a room does not auto-accept invitations. In order for the RoomWizard and Exchange Connector to work properly, the room needs to be configured to auto-accept invitations. The room should also be configured to reject conflicting meetings. The following command configures every room s mailbox to auto-accept invitations: Get-Mailbox where{$_.resourcetype -eq Room } Set-CalendarProcessing -AutomateProcessing AutoAccept -AllowConflicts $false If you want to maintain the comments and private flag between the resource and the user, add the following arguments to the command above: -RemovePrivateProperty $false -DeleteComments $false Reference: The following command configures a specific room s mailbox to auto-accept invitations: Get-Mailbox UpstairsConferenceRoom Set-CalendarProcessing -AutomateProcessing AutoAccept By default, the room does not display the original subject of an invitation. Instead, the room shows the organizer s name as the subject. If this format is not desired, the following command will reconfigure the room mailbox to show the invitation subject: Set-CalendarProcessing -Identity $$ResourceName$$ -AddOrganizerToSubject $false -DeleteSubject $false 39

37 Viewing Attendee Response Status from RoomWizard In order for the Connector to see how attendees have responded to an invitation, the service user requires delegate access to all of the user s mailboxes. The Connector will function without delegate access; however, the attendees' response status will be unknown. The following command finds all users and grants a service user full access: Get-Mailbox -filter {isresource -eq $False} -Resultsize unlimited Add-MailboxPermission -User: <Service User> -AccessRights: FullAccess -InheritanceType: All 40

38 Appendix D Below is Microsoft s typical optimization recommendation: Change the default SNP offload settings where available, and make sure that RSS is enabled (the default setting in Windows Server 2012 and later). RSS will help scale CPU utilization, especially on 10GbE. RSS and TCP Chimney Offload has to be set both in the OS and in the NIC device configuration to work. This is an official recommendation from PG and is discussed in To set in the OS run the following in an elevated cmd prompt: netsh int tcp set global rss=enabled netsh int tcp set global chimney=automatic When building out Exchange or doing system gap analysis using the latest Exchange storage calculator as found at : Room IOPS Multiplier = ((# Room Wizards/1000)/1.2) Separate IIS server for the connector Similar to Exchange scalability, having a formula that would take the estimated Room Wizard load and potentially incorporating them into multiple instances of the Room Wizard IIS application pool using different impersonation counts. By using the default EWS thresholds for cutoff balance and recharge rate we came up with the following which would estimate a per impersonation account to keep the balance bucket under 60 seconds so that the default 20 second recharge can recharge. This of course can be altered via setting it to all unlimited, but as we can see in test creates a very long delay. Estimated Impersonation Accounts = ((API Calls per Hour/360) x (Room Wizard Instances))/45 Disable Hyper-threading on physical servers and at the VM level for virtualized servers and setting the page file set to RAM+10MB 40

39 Visit Steelcase.com facebook.com/steelcase twitter.com/steelcase youtube.com/steelcasetv 02/ Steelcase Inc. All rights reserved. All specifications subject to change without notice. Trademarks used herein are the property of Steelcase Inc. or of their respective owners. 40

RoomWizard Exchange Connector. Complete Implementation/Upgrade Guide Microsoft Exchange On-Premises Microsoft Office 365

RoomWizard Exchange Connector. Complete Implementation/Upgrade Guide Microsoft Exchange On-Premises Microsoft Office 365 RoomWizard Exchange Connector Complete Implementation/Upgrade Guide Microsoft Exchange On-Premises Microsoft Office 365 Table of Contents RoomWizard Exchange Connector... 1 Getting Started... 4 Before

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 Administrator Guide Software version 2.2 D14197.06 February 2011 Contents Contents... 2 Introduction... 4 Pre-Installation Information...

More information

INTEGRATION TO MICROSOFT EXCHANGE Installation Guide

INTEGRATION TO MICROSOFT EXCHANGE Installation Guide INTEGRATION TO MICROSOFT EXCHANGE Installation Guide V44.1 Last Updated: March 5, 2018 EMS Software emssoftware.com/help 800.440.3994 2018 EMS Software, LLC. All Rights Reserved. Table of Contents CHAPTER

More information

Cisco TelePresence Management Suite Extension for Microsoft Exchange 5.2

Cisco TelePresence Management Suite Extension for Microsoft Exchange 5.2 Cisco TelePresence Management Suite Extension for Microsoft Exchange 5.2 Deployment Guide Last Updated: November 2017 Cisco Systems, Inc. www.cisco.com Introduction Introduction Cisco TelePresence Management

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.1.3 D14890 07 December 2013 Contents Introduction 5 Migration from versions prior to 3.0 unsupported 5

More information

Essentials Wizard Help - Configure Office 365

Essentials Wizard Help - Configure Office 365 For a list of Essentials options and setup instructions, see Step 1 - Set Up Essentials for Office 36 PowerShell Requirements The Essentials Wizard utilizes PowerShell scripts to quickly configure and

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 Deployment Guide Version 4.0 D15111 02 September 2017 Contents Introduction 6 Prerequisites 7 Estimating your deployment size 7 Hardware

More information

Barracuda Threat Scanner for Exchange

Barracuda  Threat Scanner for Exchange The is a free Windows application that allows you to scan onpremises Microsoft Exchange Servers for threats in existing user mailboxes. This tool provides insight into what threats have already entered

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 Administrator Guide Version 3.0 D14891 03 September 2012 Contents Introduction 4 System architecture and overview 5 System overview

More information

Status Web Evaluator s Guide Software Pursuits, Inc.

Status Web Evaluator s Guide Software Pursuits, Inc. Status Web Evaluator s Guide 2018 Table of Contents Introduction... 2 System Requirements... 2 Contact Information... 2 Installing Microsoft IIS... 2 Verifying Microsoft IIS Features... 9 Installing the

More information

IQSweb Installation Instructions Version 5.0

IQSweb Installation Instructions Version 5.0 IQSweb Installation Instructions Version 5.0 Contents Additional References... 3 IQSweb ROSS Connection... 3 IQSweb V5.0 Install/Upgrade Scenarios... 4 IQSweb Configuration Options... 5 A. Single Computer/Server

More information

Workspace ONE UEM Notification Service. VMware Workspace ONE UEM 1811

Workspace ONE UEM  Notification Service. VMware Workspace ONE UEM 1811 Workspace ONE UEM Email Notification Service VMware Workspace ONE UEM 1811 You can find the most up-to-date technical documentation on the VMware website at: https://docs.vmware.com/ If you have comments

More information

Version Installation Guide. 1 Bocada Installation Guide

Version Installation Guide. 1 Bocada Installation Guide Version 19.4 Installation Guide 1 Bocada Installation Guide Copyright 2019 Bocada LLC. All Rights Reserved. Bocada and BackupReport are registered trademarks of Bocada LLC. Vision, Prism, vpconnect, and

More information

Calendar updated presence

Calendar updated presence Calendar updated presence Setting up MiCloud and Microsoft Exchange Server Table of Contents Copyright 2016 Mitel Networks Corporation 1. Preconditions and assumptions... 1 2. Presence synchronization

More information

Have documentation feedback? Submit a Documentation Feedback support ticket using the Support Wizard on support.air-watch.com.

Have documentation feedback? Submit a Documentation Feedback support ticket using the Support Wizard on support.air-watch.com. VMware AirWatch Email Notification Service Installation Guide Providing real-time email notifications to ios devices with AirWatch Inbox and VMware Boxer Workspace ONE UEM v9.7 Have documentation feedback?

More information

EMS WEB APP Configuration Guide

EMS WEB APP Configuration Guide EMS WEB APP Configuration Guide V44.1 Last Updated: August 14, 2018 EMS Software emssoftware.com/help 800.440.3994 2018 EMS Software, LLC. All Rights Reserved. Table of Contents CHAPTER 1: EMS Web App

More information

Delegating Access & Managing Another Person s Mail/Calendar with Outlook. Information Technology

Delegating Access & Managing Another Person s Mail/Calendar with Outlook. Information Technology Delegating Access & Managing Another Person s Mail/Calendar with Outlook Information Technology 1. Click the File tab 2. Click Account Settings, and then click Delegate Access 3. Click Add 4. Type the

More information

Have documentation feedback? Submit a Documentation Feedback support ticket using the Support Wizard on support.air-watch.com.

Have documentation feedback? Submit a Documentation Feedback support ticket using the Support Wizard on support.air-watch.com. VMware AirWatch Email Notification Service Installation Guide Providing real-time email notifications to ios devices with AirWatch Inbox and VMware Boxer AirWatch v9.1 Have documentation feedback? Submit

More information

Have documentation feedback? Submit a Documentation Feedback support ticket using the Support Wizard on support.air-watch.com.

Have documentation feedback? Submit a Documentation Feedback support ticket using the Support Wizard on support.air-watch.com. VMware AirWatch Email Notification Service Installation Guide Providing real-time email notifications to ios devices with AirWatch Inbox and VMware Boxer Workspace ONE UEM v9.4 Have documentation feedback?

More information

Step 1 - Set Up Essentials for Office 365

Step 1 - Set Up Essentials for Office 365 The standalone Office 365 Standalone Email Security option is available for purchase only through the Barracuda Self-Service Gateway or Barracuda MSP. This article assumes you are deploying Barracuda Services

More information

OUTLOOK HOW DO I? 2013

OUTLOOK HOW DO I? 2013 OUTLOOK HOW DO I? Click on a Link to take you to that Section OUTLOOK - GENERAL... 2 GENERAL How Do I Navigate the 2010 Outlook Screen?... 2 GENERAL: How Do I Change the Reading Pane View?... 7 GENERAL:

More information

Installation Manual. Fleet Maintenance Software. Version 6.4

Installation Manual. Fleet Maintenance Software. Version 6.4 Fleet Maintenance Software Installation Manual Version 6.4 6 Terri Lane, Suite 700 Burlington, NJ 08016 (609) 747-8800 Fax (609) 747-8801 Dossier@dossiersystemsinc.com www.dossiersystemsinc.com Copyright

More information

RED IM Integration with Bomgar Privileged Access

RED IM Integration with Bomgar Privileged Access RED IM Integration with Bomgar Privileged Access 2018 Bomgar Corporation. All rights reserved worldwide. BOMGAR and the BOMGAR logo are trademarks of Bomgar Corporation; other trademarks shown are the

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 Deployment Guide Version 4.0.3 D15111 04 September 2017 Contents Introduction 6 Prerequisites 7 Estimating your deployment size 7 Hardware

More information

ControlPoint. Advanced Installation Guide. September 07,

ControlPoint. Advanced Installation Guide. September 07, ControlPoint Advanced Installation Guide September 07, 2017 www.metalogix.com info@metalogix.com 202.609.9100 Copyright International GmbH., 2008-2017 All rights reserved. No part or section of the contents

More information

Symprex Folder Permissions Manager

Symprex Folder Permissions Manager Symprex Folder Permissions Manager User's Guide Version 8.0.. Copyright 017 Symprex Limited. All Rights Reserved. Contents Chapter 1 1 Introduction 1 System Requirements Permissions Requirements Chapter

More information

Password Reset Server Installation

Password Reset Server Installation Password Reset Server Installation Vista/Server 08 and Windows 7/Server 2008 R2 Table of Contents I. Requirements... 4 A. System Requirements... 4 B. Domain Account Requirements... 5 C. Recommendations...

More information

EMS FOR MICROSOFT OUTLOOK Installation Guide

EMS FOR MICROSOFT OUTLOOK Installation Guide EMS FOR MICROSOFT OUTLOOK Installation Guide V44.1 Last Updated: March 5, 2018 EMS Software emssoftware.com/help 800.440.3994 2018 EMS Software, LLC. All Rights Reserved. Table of Contents CHAPTER 1: EMS

More information

IFS TOUCH APPS SERVER INSTALLATION GUIDE

IFS TOUCH APPS SERVER INSTALLATION GUIDE IFS TOUCH APPS SERVER INSTALLATION GUIDE ABSTRACT IFS Touch Apps Server is an On Premise version of the IFS Touch Apps Cloud. The On Premise version doesn t need a separate installation of the IFS Cloud

More information

Phone Inventory 1.1 (1012)

Phone Inventory 1.1 (1012) (1012) 2015 VoIP Integration July 28, 2015 Table of Contents Product Overview... 3 Requirements... 3 Application Requirements... 3 Call Manager... 3 Network Connectivity... 3 IP Phones... 3 Installation

More information

VMware AirWatch Database Migration Guide A sample procedure for migrating your AirWatch database

VMware AirWatch Database Migration Guide A sample procedure for migrating your AirWatch database VMware AirWatch Database Migration Guide A sample procedure for migrating your AirWatch database For multiple versions Have documentation feedback? Submit a Documentation Feedback support ticket using

More information

Coveo Platform 7.0. Microsoft SharePoint Legacy Connector Guide

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

More information

Entrust Connector (econnector) Venafi Trust Protection Platform

Entrust Connector (econnector) Venafi Trust Protection Platform Entrust Connector (econnector) For Venafi Trust Protection Platform Installation and Configuration Guide Version 1.0.5 DATE: 17 November 2017 VERSION: 1.0.5 Copyright 2017. All rights reserved Table of

More information

EMS DESKTOP CLIENT Installation Guide

EMS DESKTOP CLIENT Installation Guide EMS DESKTOP CLIENT Installation Guide Version 44.1 Last Updated: March 5, 2018 EMS Software emssoftware.com/help 800.440.3994 2018 EMS Software, LLC. All Rights Reserved. Table of Contents CHAPTER 1: Introduction

More information

Privileged Identity App Launcher and Session Recording

Privileged Identity App Launcher and Session Recording Privileged Identity App Launcher and Session Recording 2018 Bomgar Corporation. All rights reserved worldwide. BOMGAR and the BOMGAR logo are trademarks of Bomgar Corporation; other trademarks shown are

More information

Getting Started with Cisco WebEx Meeting Applications

Getting Started with Cisco WebEx Meeting Applications CHAPTER 6 Getting Started with Cisco WebEx Meeting Applications Revised: September, 2010, Contents Modifying Your Provisioned Cisco WebEx Account, page 6-1 Setting Proxy Permissions, page 6-5 Productivity

More information

Outlook Desktop Application for Windows

Outlook Desktop Application for Windows Access Your Email There are two common ways to access your mail: via the Outlook Desktop Application and the Outlook Web Application. This document focuses on how to use the Outlook Desktop Application

More information

Microsoft Exchange for IM and Presence Service on Cisco Unified Communications Manager, Release 10.5(1)

Microsoft Exchange for IM and Presence Service on Cisco Unified Communications Manager, Release 10.5(1) Microsoft Exchange for IM and Presence Service on Cisco Unified Communications Manager, Release 10.5(1) First Published: February 07, 2014 Last Modified: April 23, 2014 Americas Headquarters Cisco Systems,

More information

Step 1 - Set Up Essentials for Office 365

Step 1 - Set Up Essentials for Office 365 For each Barracuda Cloud Control account, you can have either a linked Barracuda Email Security Gateway appliance or a Barracuda Email Security Service subscription. You cannot use a single Barracuda Cloud

More information

Zimbra Connector for Microsoft Outlook User Guide. Zimbra Collaboration

Zimbra Connector for Microsoft Outlook User Guide. Zimbra Collaboration Zimbra Connector for Microsoft Outlook User Guide Zimbra Collaboration 8.8.11 Table of Contents Legal Notices............................................................................... 1 1. Introduction..............................................................................

More information

Components Minimum Requirements Recommended Requirements. Computer and Processor 1 GHz processor or higher Processor or higher

Components Minimum Requirements Recommended Requirements. Computer and Processor 1 GHz processor or higher Processor or higher Page 1 1. Deployment Server Components Minimum Requirements Recommended Requirements Computer and Processor 1 GHz processor or higher 2 GHz Dual Core Processor or higher Memory 2 GB Ram or higher 4 GB

More information

CRYPTOCard BlackBerry Token Implementation Guide

CRYPTOCard BlackBerry Token Implementation Guide CRYPTOCard BlackBerry Token Implementation Guide Copyright Copyright 2007 CRYPTOCard Corp. All Rights Reserved. No part of this publication may be reproduced, transmitted, transcribed, stored in a retrieval

More information

Microsoft Windows Server 2003 or Microsoft Windows Server 2008 Windows SharePoint Services 3.0 or Microsoft Office SharePoint Server 2007

Microsoft Windows Server 2003 or Microsoft Windows Server 2008 Windows SharePoint Services 3.0 or Microsoft Office SharePoint Server 2007 README SAS Web Parts 1.1 for Microsoft SharePoint Description The SAS Web Parts for Microsoft SharePoint allow you to bring the power of SAS dashboards and SAS analytics to your SharePoint pages. This

More information

Administration Guide. SAP CRM Groupware Connector 7.0. SAP CRM 5.0 (as of SP09) SAP CRM 5.2 SAP CRM 2007 SAP CRM 7.0 (Including Enhancement Packages)

Administration Guide. SAP CRM Groupware Connector 7.0. SAP CRM 5.0 (as of SP09) SAP CRM 5.2 SAP CRM 2007 SAP CRM 7.0 (Including Enhancement Packages) Administration Guide SAP CRM Groupware Connector 7.0 SAP CRM 5.0 (as of SP09) SAP CRM 5.2 SAP CRM 2007 SAP CRM 7.0 (Including Enhancement Packages) Target Audience Consultants Administrators Public Document

More information

x10data Application Platform v7.1 Installation Guide

x10data Application Platform v7.1 Installation Guide Copyright Copyright 2010 Automated Data Capture (ADC) Technologies, Incorporated. All rights reserved. Complying with all applicable copyright laws is the responsibility of the user. Without limiting the

More information

Resource Account Instructions. Contents

Resource Account Instructions. Contents Resource Account Instructions Instructions for Managing a Resource Account in Exchange 2010 As the owner of an e-mail resource, you have full rights and send as permission for this mailbox. You can access

More information

VMware AirWatch Cloud Connector Guide ACC Installation and Integration

VMware AirWatch Cloud Connector Guide ACC Installation and Integration VMware AirWatch Cloud Connector Guide ACC Installation and Integration Workspace ONE UEM v1810 Have documentation feedback? Submit a Documentation Feedback support ticket using the Support Wizard on support.air-watch.com.

More information

NBC-IG Installation Guide. Version 7.2

NBC-IG Installation Guide. Version 7.2 Installation Guide Version 7.2 2017 Nuance Business Connect 7.2 Installation Guide Document Revision History Revision Date August 8, 2017 Revision List Updated supported SQL Server versions June 14, 2017

More information

Technical installation manual Configure Exchange 2016

Technical installation manual Configure Exchange 2016 Technical installation manual Configure Exchange 2016 Contents 1. Introduction... 2 2. Prerequisites... 2 2.1. Communication Protocols... 2 2.2. Create a room admin account... 3 2.2 Assign Room Admin account

More information

Accops HyWorks v3.0. Installation Guide

Accops HyWorks v3.0. Installation Guide Accops HyWorks v3.0 Installation Guide Last Update: 4/25/2017 2017 Accops Technologies Pvt. Ltd. All rights reserved. The information contained in this document represents the current view of Propalms

More information

PST for Outlook Admin Guide

PST for Outlook Admin Guide PST for Outlook 2013 Admin Guide Document Revision Date: Sept. 25, 2015 PST Admin for Outlook 2013 1 Populating Your Exchange Mailbox/Importing and Exporting.PST Files Use this guide to import data (Emails,

More information

Microsoft Outlook Calendar Integration for the IM and Presence Service, Release 12.0(1)

Microsoft Outlook Calendar Integration for the IM and Presence Service, Release 12.0(1) Microsoft Outlook Calendar Integration for the IM and Presence Service, Release 12.0(1) First Published: 2017-08-17 Last Modified: 2017-12-22 Americas Headquarters Cisco Systems, Inc. 170 West Tasman Drive

More information

Crestron Fusion Cloud On-Premises Software Enterprise Management Platform. Installation Guide Crestron Electronics, Inc.

Crestron Fusion Cloud On-Premises Software Enterprise Management Platform. Installation Guide Crestron Electronics, Inc. Crestron Fusion Cloud On-Premises Software Enterprise Management Platform Installation Guide Crestron Electronics, Inc. Crestron product development software is licensed to Crestron dealers and Crestron

More information

Installation and Deployment Guide for HEAT Service Management

Installation and Deployment Guide for HEAT Service Management Installation and Deployment Guide for HEAT Service Management Supported Deployment Configurations The section briefly describes the deployment configurations that are supported by the HEAT Service Management

More information

Deltek Touch Expense for Ajera. Touch 1.0 Technical Installation Guide

Deltek Touch Expense for Ajera. Touch 1.0 Technical Installation Guide Deltek Touch Expense for Ajera Touch 1.0 Technical Installation Guide June 01, 2018 While Deltek has attempted to verify that the information in this document is accurate and complete, some typographical

More information

EMC ApplicationXtender Web Access.NET eroom Integration 6.0

EMC ApplicationXtender Web Access.NET eroom Integration 6.0 EMC ApplicationXtender Web Access.NET eroom Integration 6.0 Administrator s Guide 300-008-282 REV A01 EMC Corporation Corporate Headquarters: Hopkinton, MA 01748-9103 1-508-435-1000 www.emc.com Copyright

More information

Symprex Out-of-Office Extender

Symprex Out-of-Office Extender Symprex Out-of-Office Extender User's Guide Version 7.0.0. Copyright 017 Symprex Limited. All Rights Reserved. Contents Chapter 1 1 Introduction 1 System Requirements Permissions Requirements Chapter On-Premises

More information

Integrate Microsoft Office 365. EventTracker v8.x and above

Integrate Microsoft Office 365. EventTracker v8.x and above EventTracker v8.x and above Publication Date: March 5, 2017 Abstract This guide provides instructions to configure Office 365 to generate logs for critical events. Once EventTracker is configured to collect

More information

Microsoft Outlook Basics

Microsoft Outlook Basics Microsoft Outlook 2010 Basics 2 Microsoft Outlook 2010 Microsoft Outlook 2010 3 Table of Contents Getting Started with Microsoft Outlook 2010... 7 Starting Microsoft Outlook... 7 Outlook 2010 Interface...

More information

Windows 8.1 User Guide for ANU Staff

Windows 8.1 User Guide for ANU Staff Windows 8.1 User Guide for ANU Staff This guide has been created to assist with basic tasks and navigating Windows 8.1. Further tips for using Windows 8.1 can be found on the IT Services website, or by

More information

VMware Workspace ONE UEM VMware AirWatch Cloud Connector

VMware Workspace ONE UEM VMware AirWatch Cloud Connector VMware AirWatch Cloud Connector VMware Workspace ONE UEM 1811 You can find the most up-to-date technical documentation on the VMware website at: https://docs.vmware.com/ If you have comments about this

More information

Installation Guide. 3CX CRM Plugin for ConnectWise. Single Tenant Version

Installation Guide. 3CX CRM Plugin for ConnectWise. Single Tenant Version Installation Guide 3CX CRM Plugin for ConnectWise Single Tenant Version "Copyright VoIPTools, LLC 2011-2016" Information in this document is subject to change without notice. No part of this document may

More information

Symprex Signature Manager

Symprex  Signature Manager Symprex Email Signature Manager User's Guide Version 7.0.0. Copyright 015 Symprex Limited. All Rights Reserved. Contents Chapter 1 1 Introduction System Requirements 3 Email Signature Manager Overview

More information

Migrate From Version 3.1 to Version 4 Guide Vovici Enterprise 4.0. December 2008

Migrate From Version 3.1 to Version 4 Guide Vovici Enterprise 4.0. December 2008 Migrate From Version 3.1 to Version 4 Guide Vovici Enterprise 4.0 December 2008 For installation support, please contact our Vovici installation experts at installefmc@vovici.com. If phone support is requested

More information

Contents. Anaplan Connector for MuleSoft

Contents. Anaplan Connector for MuleSoft SW Version 1.1.2 Contents 1 Overview... 3 2 Mulesoft Prerequisites... 4 3 Anaplan Prerequisites for the Demos... 5 3.1 export demo mule-app.properties file...5 3.2 import demo mule-app.properties file...5

More information

Workspace ONE UEM Certificate Authentication for EAS with ADCS. VMware Workspace ONE UEM 1902

Workspace ONE UEM Certificate Authentication for EAS with ADCS. VMware Workspace ONE UEM 1902 Workspace ONE UEM Certificate Authentication for EAS with ADCS VMware Workspace ONE UEM 1902 You can find the most up-to-date technical documentation on the VMware website at: https://docs.vmware.com/

More information

Inware Technologies Shuttle IMAP Extractor

Inware Technologies  Shuttle IMAP Extractor Inware Technologies Email Shuttle IMAP Extractor Contents Introduction... 3 Contact Information... 3 Architechture... 4 Prerequisites and System Requirements... 4 Minimum System Requirements... 5 Migrating

More information

ControlPoint. Quick Start Guide. November 09,

ControlPoint. Quick Start Guide. November 09, ControlPoint Quick Start Guide November 09, 2017 www.metalogix.com info@metalogix.com 202.609.9100 Copyright International GmbH., 2008-2017 All rights reserved. No part or section of the contents of this

More information

Healthcare Database Connector

Healthcare Database Connector Healthcare Database Connector Installation and Setup Guide Version: 1.0.x Written by: Product Knowledge, R&D Date: September 2016 2015 Lexmark International Technology, S.A. All rights reserved. Lexmark

More information

RoomWizard. Instructions for Lotus Domino Synchronization Software Installation

RoomWizard. Instructions for Lotus Domino Synchronization Software Installation RoomWizard Instructions for Lotus Domino Synchronization Software Installation RoomWizard TM Instructions for Lotus Domino Synchronization Software Installation Part number 370-0156-05 2017 Steelcase Corporation

More information

Outlook Web App (Exchange 2010) User Guide Computer Training Solutions Version Revision Date

Outlook Web App (Exchange 2010) User Guide Computer Training Solutions Version Revision Date Outlook Web App (Exchange 2010) Computer Training Solutions Version 1.7 Revision Date 2014-December-1 Table of Contents QUICK REFERENCE... 2 OUTLOOK WEB APP URL... 2 MANITOBA EHEALTH SERVICE DESK... 2

More information

Cisco TelePresence Management Suite Extension for Microsoft Exchange 5.5

Cisco TelePresence Management Suite Extension for Microsoft Exchange 5.5 Cisco TelePresence Management Suite Extension for Microsoft Exchange 5.5 Deployment Guide Last Updated: November 2017 Cisco Systems, Inc. www.cisco.com Contents Introduction 8 Prerequisites 9 Estimating

More information

Installation Guide Worksoft Certify

Installation Guide Worksoft Certify Installation Guide Worksoft Certify Worksoft, Inc. 15851 Dallas Parkway, Suite 855 Addison, TX 75001 www.worksoft.com 866-836-1773 Worksoft Certify Installation Guide Version 9.0.3 Copyright 2017 by Worksoft,

More information

Installation Guide. May vovici.com. Vovici Enterprise Version 6.1. Feedback that drives vision.

Installation Guide. May vovici.com. Vovici Enterprise Version 6.1. Feedback that drives vision. Installation Guide Vovici Enterprise Version 6.1 May 2011 For installation support, please contact our Vovici Enterprise installation experts at installefmc@. If phone support is requested an installation

More information

Installation Guide Version May 2017

Installation Guide Version May 2017 Installation Guide Version 2017 5 May 2017 GeoCue Group, Inc 9668 Madison Blvd. Suite 202 Madison, AL 35758 1-256-461-8289 www.geocue.com NOTICES The material in GeoCue Group, Inc. documents is protected

More information

Workflow Server OTD Configuration Guide Polycom RealConnect for Office 365 Cloud Service AQUA

Workflow Server OTD Configuration Guide Polycom RealConnect for Office 365 Cloud Service AQUA Workflow Server OTD Configuration Guide Polycom RealConnect for Office 365 Cloud Service AQUA March 27, 2018 Release Revision 1.6.3.0 1 REVISION HISTORY... 3 INFORMATION ELEMENTS... 3 OVERVIEW... 4 REQUIRED

More information

TECHNICAL REFERENCE GUIDE. GroupWise Microsoft Office 365

TECHNICAL REFERENCE GUIDE. GroupWise Microsoft Office 365 TECHNICAL REFERENCE GUIDE GroupWise Microsoft Office 365 EXECUTIVE SUMMARY This White Paper provides detailed information about how to migrate user mailboxes from GroupWise to Microsoft Office 365. It

More information

Xton Access Manager GETTING STARTED GUIDE

Xton Access Manager GETTING STARTED GUIDE Xton Access Manager GETTING STARTED GUIDE XTON TECHNOLOGIES, LLC PHILADELPHIA Copyright 2017. Xton Technologies LLC. Contents Introduction... 2 Technical Support... 2 What is Xton Access Manager?... 3

More information

TABLE OF CONTENTS. BookIT Room Scheduling Solution

TABLE OF CONTENTS. BookIT Room Scheduling Solution USER GUIDE WWW.BOOKIT.TECH AUGUST 2017 1 2 3 4 5 6 7 8 9 WHAT S IN THE BOX SYSTEM REQUIREMENTS Hardware Exchange / Office 365 Google SETUP Mounting îsurface mounting îrecess mounting îmullion mounting

More information

SOA Software Intermediary for Microsoft : Install Guide

SOA Software Intermediary for Microsoft : Install Guide SOA Software Intermediary for Microsoft : Install Guide SOA Software Intermediary for Microsoft Install Guide SOAIM_60 August 2013 Copyright Copyright 2013 SOA Software, Inc. All rights reserved. Trademarks

More information

kalmstrom.com Business Solutions

kalmstrom.com Business Solutions Contents 1 INTRODUCTION... 2 1.1 LANGUAGES... 2 1.2 REQUIREMENTS... 2 2 THE SHAREPOINT SITE... 3 2.1 PERMISSIONS... 3 3 CONVERTED E-MAILS AND SHAREPOINT TICKETS... 4 3.1 THE CONVERTED E-MAIL... 4 3.2 THE

More information

Installing and Configuring vcloud Connector

Installing and Configuring vcloud Connector Installing and Configuring vcloud Connector vcloud Connector 2.6.0 This document supports the version of each product listed and supports all subsequent versions until the document is replaced by a new

More information

TECHNICAL REFERENCE GUIDE

TECHNICAL REFERENCE GUIDE 2015 TECHNICAL REFERENCE GUIDE Novell GroupWise Microsoft Exchange (2016 / 2013) Copyright 2015 by Transend Corporation EXECUTIVE SUMMARY This White Paper provides detailed information about how to migrate

More information

Administration Guide. SAP CRM Groupware Connector 7.0. SAP CRM 5.0 (as of SP09) SAP CRM 5.2 SAP CRM 2007 SAP CRM 7.0 (Including Enhancement Packages)

Administration Guide. SAP CRM Groupware Connector 7.0. SAP CRM 5.0 (as of SP09) SAP CRM 5.2 SAP CRM 2007 SAP CRM 7.0 (Including Enhancement Packages) Administration Guide SAP CRM Groupware Connector 7.0 SAP CRM 5.0 (as of SP09) SAP CRM 5.2 SAP CRM 2007 SAP CRM 7.0 (Including Enhancement Packages) Target Audience Consultants Administrators Public Document

More information

1 Covene Cohesion Administrator Guide A Modular Platform for Video Conferencing Management October 9, 2017

1 Covene Cohesion Administrator Guide A Modular Platform for Video Conferencing Management October 9, 2017 1 Covene Cohesion Administrator Guide A Modular Platform for Video Conferencing Management October 9, 2017 Software Version 4.5 Document Revision 1.0 2017 Covene LLC, All Rights Reserved. Covene, the Covene

More information

Upgrading Good Messaging and Good Mobile Control

Upgrading Good Messaging and Good Mobile Control Good Mobile Messaging Server Version 8.3.2 (BDB Version) Good Mobile Control Server 2.7.0 for Microsoft Windows Exchange Upgrading Good Messaging and Good Mobile Control Updated: 03/29/16 1 Introduction...

More information

Evoko Room Manager System Administrator s Guide and Manual.

Evoko Room Manager System Administrator s Guide and Manual. Evoko Room Manager System Administrator s Guide and Manual. Read first! Contents 1 Introduction to this guide 3 2 User Guide 4 3 System architecture overview 5 4 Checkpoints before installation and system

More information

VMware Horizon Migration Tool User Guide

VMware Horizon Migration Tool User Guide VMware Horizon Migration Tool User Guide Version 3.0.0 August 2017 VMware End User Computing 1/31 @2017 VMware, Inc. All rights reserved. @2017 VMware, Inc. All rights reserved. This product is protected

More information

INSTALLATION AND USER S GUIDE OfficeCalendar for Microsoft Outlook

INSTALLATION AND USER S GUIDE OfficeCalendar for Microsoft Outlook INSTALLATION AND USER S GUIDE OfficeCalendar for Microsoft Outlook Sharing Microsoft Outlook Calendar and Contacts without Exchange Server Contents What is OfficeCalendar? Sharing Microsoft Outlook Calendars

More information

Netwrix Auditor. Virtual Appliance and Cloud Deployment Guide. Version: /25/2017

Netwrix Auditor. Virtual Appliance and Cloud Deployment Guide. Version: /25/2017 Netwrix Auditor Virtual Appliance and Cloud Deployment Guide Version: 9.5 10/25/2017 Legal Notice The information in this publication is furnished for information use only, and does not constitute a commitment

More information

Migrate From Version 2.2 to Version 3.1 Guide

Migrate From Version 2.2 to Version 3.1 Guide Migrate From Version 2.2 to Version 3.1 Guide EFM Community Fall 2007(Version 3.10) July 2008 For support, contact Vovici Technical Support at (781) 261-4300, ext. 2 or use the web form located at: http://s3.parature.com/ics/support/default.asp?deptid=5474

More information

Kernel Migrator. for SharePoint. Configuration Guide

Kernel Migrator. for SharePoint. Configuration Guide Kernel Migrator for SharePoint Table of Contents 1. System Requirements... 4 1.1 Minimum System Requirements... 4 1.2 Required Operating Systems... 4 1.3 Supported Virtual Environment... 4 1.4 Supported

More information

Installation Guide Worksoft Certify Execution Suite

Installation Guide Worksoft Certify Execution Suite Installation Guide Worksoft Certify Execution Suite Worksoft, Inc. 15851 Dallas Parkway, Suite 855 Addison, TX 75001 www.worksoft.com 866-836-1773 Worksoft Certify Execution Suite Installation Guide Version

More information

Migrating vrealize Automation 6.2 to 7.2

Migrating vrealize Automation 6.2 to 7.2 Migrating vrealize Automation 6.2 to 7.2 vrealize Automation 7.2 This document supports the version of each product listed and supports all subsequent versions until the document is replaced by a new edition.

More information

Installation Guide Worksoft Analyze

Installation Guide Worksoft Analyze Installation Guide Worksoft Analyze Worksoft, Inc. 15851 Dallas Parkway, Suite 855 Addison, TX 75001 www.worksoft.com 866-836-1773 Worksoft Analyze Installation Guide Version 1.0.0 Copyright 2018 by Worksoft,

More information

Quest VROOM Quick Setup Guide for Quest Rapid Recovery for Windows and Quest Foglight vapp Installers

Quest VROOM Quick Setup Guide for Quest Rapid Recovery for Windows and Quest Foglight vapp Installers Quest VROOM Quick Setup Guide for Quest Rapid Recovery for Windows and Quest Foglight vapp Installers INTRODUCTION Setup of Quest VROOM requires installation of Rapid Recovery and Foglight for Virtualization

More information

Symprex Signature Manager

Symprex  Signature Manager Symprex Email Signature Manager User's Guide Version 8.0.1. Copyright 017 Symprex Limited. All Rights Reserved. Contents Chapter 1 1 Introduction System Requirements 3 Email Signature Manager Overview

More information

EMS MASTER CALENDAR Installation Guide

EMS MASTER CALENDAR Installation Guide EMS MASTER CALENDAR Installation Guide V44.1 Last Updated: May 2018 EMS Software emssoftware.com/help 800.440.3994 2018 EMS Software, LLC. All Rights Reserved. Table of Contents CHAPTER 1: Introduction

More information

IBM NetBAY Virtual Console Software. Installer and User Guide

IBM NetBAY Virtual Console Software. Installer and User Guide IBM NetBAY Virtual Console Software Installer and User Guide INSTRUCTIONS This symbol is intended to alert the user to the presence of important operating and maintenance (servicing) instructions in the

More information

ControlPoint. Installation Guide for SharePoint August 23,

ControlPoint. Installation Guide for SharePoint August 23, ControlPoint Installation Guide for SharePoint 2007 August 23, 2017 www.metalogix.com info@metalogix.com 202.609.9100 Copyright International GmbH., 2008-2017 All rights reserved. No part or section of

More information