Acuo Workflow Services

Size: px
Start display at page:

Download "Acuo Workflow Services"

Transcription

1 Acuo Workflow Services Product Guide Version: Written by: Product Knowledge, R&D Date: February 2016

2 Lexmark. All rights reserved. Lexmark is a trademark of Lexmark International Inc., registered in the U.S. and/or other countries. All other trademarks are the property of their respective owners. No part of this publication may be reproduced, stored, or transmitted in any form without the prior written permission of Lexmark.

3 Table of Contents Acuo Workflow Services - Overview... 4 Acuo Workflow Services - Install and Configuration... 4 Install Acuo Workflow Services... 4 Configure Acuo Workflow Services... 5 Configure Microsoft Distributed Transaction Coordinator... 6 Configure Route Destinations... 6 Automated Configuration... 6 Stored procedure - Install... 7 Stored procedure - Uninstall... 8 Create TagMapper directory... 8 Patient Management REST Web Service... 8 Delete Patient... 8 Delete Study... 9 Delete Study from All Databases... 9 Delete Series... 9 Delete Series from All Databases Delete Image Delete Image from All Databases Batch Move Web Services BatchMoveStudy MoveStudyCancel GetMoveStudyStatus WakeUp SetNews Batch move WSDL access TagMapper Web Service MoveStudy MoveStudyCancel GetMoveStudyStatus Processsing Overview Replace MatchAndReplace TagMapper WSDL access

4 Acuo Workflow Services - Overview Acuo Workflow Service enables web service driven, enterprise level orchestration and offers alternative access to Acuo s Universal Clinical Platform (UCP) functionality, UCP3. This includes real time DICOM federation across disparate systems as well as inbound and outbound metadata morphing. The system is designed to match a facility's unique workflow without custom software engineering efforts. All web services and REST endpoints are self hosted (no IIS requirement) and are configurable through the app.config configuration mechanism. Acuo Workflow Services is comprised of the following web services. Patient Management REST Service: Web Service controlled delete operations at all DICOM levels. Batch Move Web Service: Web Service controlled DICOM C Move. Tag Mapper Web Service: Web Service driven tag morphing. Web Service controlled federated DICOM C Find (part of AcuoAccess). OData access to Workflow Services status tables, BatchQueues tables, HisRis database tables Acuo Workflow Services - Install and Configuration Install Acuo Workflow Services To install Acuo Workflow Services, complete the following steps. 1. In the <Acuo Workflow Services>\DiskImages\DISK1 folder, right-click Setup.exe and select Run as Administrator. 2. Click Next to continue the InstallShield Wizard. 3. Accept the license agreement. 4. Click Next. 5. In the Service Logon Information dialog box, enter the username and password. 6. Click Next. 7. In the SQL Server Connection dialog box, select a database server from the drop-down menu and select an authentication method. 8. Click Next. 9. In the Database Installation dialog box, use the default settings for the SQL database file and log file. 10. Click Next. 11. In the Setup Type dialog box, choose a setup type. 4

5 12. Click Next. 13. Click Install to begin the installation. 14. Click Finish to close the InstallSheild Wizard. Configure Acuo Workflow Services To configure Acuo Workflow Services, complete the following steps. 1. Complete one of the following substeps. 1. Give the Acuo Workflow Services service user administrator rights. 2. Reserve the HTTP namespaces by running the following command. Note HOSTNAME should be entered explicitly as an IP or an actual host name (do not use localhost ). netsh http add urlacl url= user=hostname\acuoserviceuser netsh http add urlacl url= user=hostname\acuoserviceuser netsh http add urlacl url= user=hostname\acuoserviceuser netsh http add urlac url= user=hostname\acuoserviceuser netsh http add urlac url= user=hostname\acuoserviceuser 2. To configure the Acuo Web Service XML file, complete the following substeps. 1. Locate the AcuoWebServicesService.exe.xml file in the following directory. Program Files (x86)\acuo Technologies\Workflow Services 2. Update the file using the following configurations. Edit baseaddress= Edit baseaddress= Edit connectionstring, Data Source=HOSTNAME\SQLinstance; Edit connectionstring, Data Source=HOSTNAME\SQLInstance; Edit Key, <add key="acuomedservername" value="hostname" /> 3. Start the Acuo Workflow Services service. 3. To configure the Acuo Patient Management REST Service XML file, complete the following substeps. 1. Locate the AcuoPatientManagement.exe.xml file in the following directory. Program Files (x86)\acuo Technologies\Workflow Services 2. Update the file using the following configurations. Edit connectionstring, Data Source=HOSTNAME\SQLInstance; 3. If not present, add the following configurations to the file: <appsettings> <add key="pmrestaddress" value=" /> <add key="remrestaddress" value=" /> </appsettings> 4. Start the Acuo Patient Management REST Service. 5

6 Configure Microsoft Distributed Transaction Coordinator Complete the following steps to configure Microsoft Distributed Transaction Coordinator (MSDTC). 1. From the Control Panel, select Administrative Tools > Component Services > Computers > My Computer > Distributed Transaction Coordinator. 2. Right-click Local DTC and select Properties. 3. On the Security tab, under Security Settings, select the Network DTC Access check box. 4. Under Transaction Manager Communication, select the Allow Inbound and Allow Outbound check boxes. 5. Click OK. 6. Click Yes to restart the MSDTC service. Configure Route Destinations Route destinations should have a priority level of Direct. To configure a destination to use the direct mode priority, complete the following steps. 1. Right-click the route you want to configure and select Properties. 2. In the DICOM Command Options dialog box, under C-STORE Batch Process Settings, select Direct from the Priority drop-down menu. Automated Configuration Built-in stored procedures can be used to automatically configure certain AcuoMed objects that are used for the TagMapper workflow service. Each time it s executed, the stored procedure successfully configures the following components in AcuoMed. Two external devices. For example, Pacs1 and Pacs2. Two routes, one to each device created above. After it is created, the destination external device has tagmapper enabled and it will point to a command file that does not yet exist. The script mentioned below creates the necessary directories and command files. For example, createtagmapperdirectory. C-Store batch process settings with a Direct priority. One local CalledAE SCP One Move/Route mapping assignment 6

7 Stored procedure - Install The first stored procedure is located in the AcuoMed database and is labeled TAGMAPPER_AWS_INSTALL. Example The following example script executes the install stored procedure. A description of each parameter is listed in the table below. Use AcuoMed int = = = = = = = = = 4321 SELECT 'Return Value' value The CalledAeName for the Source PACS. When the example above is executed, it creates an external device with a label of FIND_PACS1 with a CalledAeName of PACS1. The hostname used for source PACS. The port used for source PACS. The CalledAeName for the destination PACS. When the example above is executed, it will create an external device with a label of STORE_PACS2 with a CalledAeName of PACS2. The hostname used for dest PACS. Optional. This parameter can be used to add a prefix to AE name (TM used if not specified). The port used for Destination PACS. The port of the local AE. 7

8 Stored procedure - Uninstall The second stored procedure is labeled TAGMAPPER_AWS_UNINSTALL and can be used to uninstall or remove configuration. Example The following example script executes the stored procedure. Note Running this script removes all settings configured during the stored install procedure. USE [AcuoMed] GO int = = = = 'PRE' SELECT 'Return Value' Create TagMapper directory The batch script, CreateTagMapperDirectory, can be used to automatically create TagMapper directories. This will save time creating directories manually in situations where multiple configurations are used. To create the directory, complete the following steps. 1. Locate the CreateTagMapperDirectory script in the following directory. \Program Files (x86)\acuo Technologies\TagMapper\Configuration 2. Execute the script. 3. Enter the desired name for the directory. 4. Click Enter. Step result The directory is created in the \Program Files (x86)\acuo Technologies\TagMapper directory and the command file is copied from the WebServices directory. Patient Management REST Web Service The Patient Management REST web service can be used to perform delete operations at all DICOM levels. When implementing a WCF service, you define a number of contracts that describe the service and the data that it sends and receives. The Patient Management REST web service is comprised of the following operational contracts. Delete Patient The Delete Patient operation deletes the patient from a specified DICOM database. Listed below are the [WebInvoke(UriTemplate = "{dicomdbfriendlyname}/patient/{id}", Method = "DELETE")] void DeletePatient(string dicomdbfriendlyname, string id); 8

9 dicomdbfriendlyname id DICOM database from which the patient is to be deleted. Value matches the DICOM Database Destination friendly name (name assigned in the AcuoMed DICOM Database Properties). PatientID of the patient to be deleted. Delete Study The Delete Study operation deletes the study from a specified DICOM database. Listed below are the [WebInvoke(UriTemplate = "{dicomdbfriendlyname}/study/{uid}", Method = "DELETE")] void DeleteStudy(string dicomdbfriendlyname, string uid); dicomdbfriendlyname uid DICOM database from which the study is to be deleted. Value matches the DICOM Database Destination friendly name (name assigned in the AcuoMed DICOM Database Properties). StudyInstanceUID of the study to be deleted. Delete Study from All Databases The Delete All Studies operation deletes the study from all DICOM databases. Listed below are the [WebInvoke(UriTemplate = "delete/all/studies/{uid}", Method = "DELETE")] void DeleteAllStudies(string uid); uid StudyInstanceUID of the study to be deleted. Delete Series The Delete Series operation deletes the series from a specified DICOM database. Listed below are the [WebInvoke(UriTemplate = "{dicomdbfriendlyname}/series/{studyuid}/{seriesuid}", Method = "DE LETE")] void DeleteSeries(string dicomdbfriendlyname, string studyuid, string seriesuid); 9

10 dicomdbfriendlyname studyuid seriesuid DICOM database from which the series is to be deleted. Value matches the DICOM Datbase Destination friendly name (name assigned in the AcuoMed DICOM Database Properties). StudyInstanceUID of the study containing the series to be deleted. SeriesInstanceUID of the series to be deleted. Delete Series from All Databases The Delete All Series operation deletes the series from all DICOM databases. Listed below are the [WebInvoke(UriTemplate = "delete/all/series/{studyuid}/{seriesuid}", Method = "DELETE")] void DeleteAllSeries(string studyuid, string seriesuid); studyuid seriesuid StudyInstanceUID of the study containing the series to be deleted. SeriesInstanceUID of the series to be deleted. Delete Image The Delete Image operation deletes the image from a specified DICOM database. Listed below are the [WebInvoke(UriTemplate = "{dicomdbfriendlyname}/image/{seriesuid}/{imageuid}", Method = "DEL ETE")] void DeleteImage(string dicomdbfriendlyname, string seriesuid, string imageuid); dicomdbfriendlyname seriesuid imageuid DICOM database from which the image is to be deleted. Value matches the DICOM Datbase Destination friendly name (name assigned in the AcuoMed DICOM Database Properties). SeriesInstanceUID of the series containing the image to be deleted. SOPInstanceUID of the image to be deleted. 10

11 Delete Image from All Databases The Delete All Images operation deletes the image from all DICOM databases. Listed below are the [WebInvoke(UriTemplate = "delete/all/images/{seriesuid}/{imageuid}", Method = "DELETE")] void DeleteAllImages(string seriesuid, string imageuid); seriesuid imageuid SeriesInstanceUID of the series containing the image to be deleted. SOPInstanceUID of the image to be deleted. Batch Move Web Services Batch move web services allows more flexibility with batch move data. Through this web service, you can execute the following procedures. Batch move jobs The batch web service can be used to table a batch move job. Wake up Once a batch move job has been tabled, a wake up call can be placed to AcuoMed to tell it to proceed with the move now that there is a job to be performed. Status The status of a batch move job can be retrieved, or changed to cancelled or paused. There are also counts that can be returned consisting of In Progress jobs or Completed jobs. The batch move web service provides web service-controlled DICOM C-Moves. When implementing a WCF service, you define a number of contracts that describe the service and the data that it sends and receives. The Batch Move Web Service is comprised of the following operations. BatchMoveStudy The BatchMoveStudy operation defines the MoveStudy interface. Listed below are the operational parameters. transactionid transactionsource movepriority movestartdelayinseconds moveretryintervalinseconds User-defined and is sent back on the callback. User-defined string. The priority for the batch move request. This value is added to the current time to delay when the batch move is scheduled. If value is present, the batch move is retried after the delay. 11

12 movetimetoliveinseconds alreadymovedseconds sourceroutename xmlsourcedicommatchingtag destinationae callbackurl Stops the polled move. Note This value must be present if moveretryintervalinseconds is provided. If value is present, a new batch move request is not issued if a batch move request was already issued for this patient ID and accession number within the given timeframe (previous number of seconds specified in parameter). The source route name for the move. The matching tags that are the key for the Tag Mapper table. The Destination Move AE Title for the DICOM Move request. This is used by the source to send images back to Perceptive. The URL to call back with the status of the move. MoveStudyCancel The BatchMoveStudy operation defines the MoveStudyCancel interface. Listed below are the operational parameters. MoveStudyCancel(int acuoid); acuoid - To cancel a request pass in the Id returned from the MoveStudy request. An alternative would be to use OData to obtain the Id. GetMoveStudyStatus The BatchMoveStudy operation defines the MoveStudyStatus interface. Listed below are the operational parameters. GetMoveStudyStatus(int acuoid); acuoid - To request the status of a Batch Move Job, pass in the Id returned from the MoveStudy request. An 12

13 WakeUp The BatchMoveStudy operation defines the WakeUp interface. Listed below are the operational parameters. WakeUp(string server); String Server To request a server to Wakeup pass the server name. This can be used SetNews The BatchMoveStudy operation defines the move study interface. Listed below are the operational parameters. (string server, long jobnumber, priority, string moveaetitle, String moveroutename); Route GUID, datetime, wakeup) String Server, job number, job priority, moveaetitle, moveroutename, Roure GUID, datatime,wakeup) Batch move WSDL access The following example URL can be used to access the WSDL for BatchServices. 13

14 TagMapper Web Service The TagMapper web service can be used to transform DICOM tag data while moving from a source to a destination. When implementing a WCF service, you define a number of contracts that describe the service and the data that it sends and receives. The TagMapper web service is comprised of the following operational contracts. MoveStudy The MoveStudy operation defines the MoveStudy interface. Listed below are the transactionid transactionsource movepriority movestartdelayinseconds moveretryintervalinseconds movetimetoliveinseconds sourceroutename xmlsourcedicommatchingtag destinationae xmldicomtagtransformations callbackurl User defined and is sent back on the callback. User defined string. The priority for the Batch Move Request. This value will be added to the current time to delay when the Batch Move is scheduled. If value is present we will retry the Batch Move after this delay. This value needs to be present if moveretryintervalinseconds is provided. Stops the Polled Move. This is the Source Route Name for the Move. These are the Matching Tags that will be the key for the Tag Mapper table. This is the Destination Move AE Title for the DICOM Move request. This is used by the source to send images back to us. These are the transformations for the images. These are converted to Tag Mapper commands. This is the URL to call back with the status of the Move. MoveStudyCancel The MoveStudyCancel operation defines the the MoveStudyCancel interface. Listed below are the MoveStudyCancelStatus MoveStudyCancel(int acuoid); acuoid. To cancel a request pass in the Id returned from the MoveStudy request. An alternative would be to use OData to obtain the Id. 14

15 GetMoveStudyStatus The GetMoveStudyStatus operation defines the MoveStudyStatus interface. Listed below are the GetMoveStudyStatus GetMoveStudyStatus(int acuoid); acuoid. To request the status of a Batch Move Job, pass in the Id returned from the MoveStudy request. An alternative would be to use OData to obtain the Id. Processsing Overview The xmlsourcedicommatchingtag parameter is based on the DICOM Starndard Supplement 118 for representing DICOM tags in XML. The source matching tags that are currently supported are PID and Accession Number. The xmldicomtagtransformation parameter is also based on DICOM Starndard Supplement 118. The matching tags that are currently supported are Replace and MatchAndReplace for sequences. Below is the sequence of events for the TagMapper web service. 1. The move study request is received and validated. 2. A batch move is tabled to run based on the input parameters. Note The Interval and Time to Live values support a polled moved. To run the batch move only once, theses values should equal zero. 3. As the images are moved from the sourceroutename to the destinationae, the xmldicomtagtransformations are applied to the images. 4. If a CallBack URL is provided, the system calls back with the status of the request. The following diagram demonstrates the sequence of events outlined above. There are two types of transforms currently supported, Replace and MatchAndReplace. 15

16 Replace The Replace transform replaces the current tag with the supplied value. Example Replace PID Tag (Patient ID) is transformed to PID Replace Accession Number Tag (Accesion Number) is transformed to Accession MatchAndReplace The MatchAndReplace (sequences only) transform replaces the tag based on matching criteria. Example MatchAndReplace Tag 0040A372 (Requestd Procedure Code) is transformed as follows. Transform matchitem="1" replaceitem="3" If the sequence values match Item 1 "ABC/CSD", they are transformed to Item 3 "CPT04/CPT. Transform matchitem="2" replaceitem="3" If the sequence values match Item 2 "DEF/CSD", they are transformed to Item 3 "CPT04/CPT. Transform matchitem="*" replaceitem="3" If the sequence exists, they are transformed to Item 3 "CPT04/CPT. Transform matchitem="+" replaceitem="3" The sequence is added with the values of Item 3 "CPT04/CPT. TagMapper WSDL access The following example URL can be used to access the WSDL for TagMapper web services. 16

Workflow Services. Operations Guide

Workflow Services. Operations Guide Workflow Services Operations Guide Release 6.0 Revision A Last Updated: 2/18/2013 Acuo Workflow Services - Operations Guide Copyright 2008 Acuo Technologies All Rights Reserved Printed in the United States

More information

ECM-VNA Convergence Connector

ECM-VNA Convergence Connector ECM-VNA Convergence Connector Installation and Setup Guide Version: 1.0.x Written by: Product Knowledge, R&D Date: September 2016 2016 Lexmark. All rights reserved. Lexmark is a trademark of Lexmark International

More information

XDS Connector. Installation and Setup Guide. Version: 1.0.x

XDS Connector. Installation and Setup Guide. Version: 1.0.x XDS Connector Installation and Setup Guide Version: 1.0.x Written by: Product Knowledge, R&D Date: November 2016 2016 Lexmark. All rights reserved. Lexmark is a trademark of Lexmark International Inc.,

More information

Perceptive Content VNA for Healthcare

Perceptive Content VNA for Healthcare Perceptive Content VNA for Healthcare Exercise Guide Enterprise Software Education Services 2017 Lexmark. All rights reserved. Lexmark, the Lexmark logo, AccessVia, Acuo, AcuoStore, Claron, Code Dash,

More information

Perceptive VNA. Technical Specifications. 6.0.x

Perceptive VNA. Technical Specifications. 6.0.x Perceptive VNA Technical Specifications 6.0.x Written by: Product Knowledge, R&D Date: February 2015 2015 Perceptive Software. All rights reserved. Lexmark and Perceptive Software are trademarks of Lexmark

More information

AccessVia Publishing Platform

AccessVia Publishing Platform AccessVia Publishing Platform Installation and Setup Guide Publishing Platform Manager Version: 8.6.x Written by: Product Documentation, R&D Date: February 2014 2014 Perceptive Software. All rights reserved

More information

PACS Scan Mobile. Installation Guide. Version: Written by: Product Knowledge, R&D Date: September 2016 LX-DOC-PSM2.0.

PACS Scan Mobile. Installation Guide. Version: Written by: Product Knowledge, R&D Date: September 2016 LX-DOC-PSM2.0. PACS Scan Mobile Installation Guide Version: 2.0.1 Written by: Product Knowledge, R&D Date: September 2016 2016 Lexmark. All rights reserved. Lexmark is a trademark of Lexmark International Inc., registered

More information

Image Link. User Help. Version: Written by: Product Knowledge, R&D Date: August 2017 LX-DOC-IL1.1.0-UH-EN-REVA

Image Link. User Help. Version: Written by: Product Knowledge, R&D Date: August 2017 LX-DOC-IL1.1.0-UH-EN-REVA Image Link User Help Version: 1.1.0 Written by: Product Knowledge, R&D Date: August 2017 Regulations and Compliance Tel: 1-844-535-1404 Email: es_support@lexmark.com 2017 Lexmark. Lexmark and the Lexmark

More information

PACSgear Core Server

PACSgear Core Server PACSgear Core Server Installation and Setup Guide LX-DOC-PCS3.6.0-IN-EN-REVA Version 3.6.0 Regulations and Compliance Tel: 1-844-535-1404 Email: TS_PACSGEAR@hyland.com 2018 Hyland. Hyland and the Hyland

More information

PACS Scan Mobile. User Help. Version: Written by: Product Knowledge, R&D Date: September 2016 LX-DOC-PSM2.0.1-UH-EN-REVB

PACS Scan Mobile. User Help. Version: Written by: Product Knowledge, R&D Date: September 2016 LX-DOC-PSM2.0.1-UH-EN-REVB PACS Scan Mobile User Help Version: 2.0.1 Written by: Product Knowledge, R&D Date: September 2016 2016 Lexmark. All rights reserved. Lexmark is a trademark of Lexmark International Inc., registered in

More information

AcuoSemantix. Installation and Operations Guide

AcuoSemantix. Installation and Operations Guide AcuoSemantix Installation and Operations Guide Release 6.0.1 Last Updated: December 2014 AcuoSemantix Installation and Operations Guide Copyright 2013 Acuo Technologies - All Rights Reserved License Agreement

More information

ModLink Web Forms. Installation Guide LX-DOC-MLF2.0.0-IN-EN-REVB. Version 2.0.0

ModLink Web Forms. Installation Guide LX-DOC-MLF2.0.0-IN-EN-REVB. Version 2.0.0 ModLink Web Forms Installation Guide Version 2.0.0 Regulations and Compliance Tel: 1-844-535-1404 Email: TS_PACSGEAR@hyland.com 2018 Hyland. Hyland and the Hyland logo are trademarks of Hyland LLC, registered

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

AcuoSemantix. Installation and Operations Guide. Release 6.0.0

AcuoSemantix. Installation and Operations Guide. Release 6.0.0 AcuoSemantix Installation and Operations Guide Release 6.0.0 Last Updated: 9/5/2013 AcuoSemantix Installation and Operations Guide Copyright 2013 Acuo Technologies - All Rights Reserved License Agreement

More information

Media Writer. Installation Guide LX-DOC-MW5.1.9-IN-EN-REVB. Version 5.1.9

Media Writer. Installation Guide LX-DOC-MW5.1.9-IN-EN-REVB. Version 5.1.9 Media Writer Installation Guide Version 5.1.9 Regulations and Compliance Tel: 1-844-535-1404 Email: TS_PACSGEAR@hyland.com 2018 Hyland. Hyland and the Hyland logo are trademarks of Hyland LLC, registered

More information

WF-distiller Installation Guide

WF-distiller Installation Guide WF-distiller Installation Guide Version 4.0 SP2 September 2016 prepared by WF-distiller Engineering 2016 Lexmark. All rights reserved. Lexmark is a trademark of Lexmark International Inc., registered in

More information

PACSgear Core Server

PACSgear Core Server PACSgear Core Server Installation and Setup Guide LX-DOC-PCS4.0.0-IN-EN-REVA Version 4.0.0 Regulations and Compliance Tel: 1-844-535-1404 Email: TS_PACSGEAR@hyland.com 2018 Hyland. Hyland and the Hyland

More information

Cluster Resource Monitor

Cluster Resource Monitor Cluster Resource Monitor Installation and Setup Guide Version: 7.2.x Written by: Product Knowledge, R&D Date: April 2017 2017 Lexmark. All rights reserved. Lexmark is a trademark of Lexmark International

More information

Perceptive Interact for Epic Release of Information

Perceptive Interact for Epic Release of Information Perceptive Interact for Epic Release of Information Installation Guide Version: 10.1.x Written by: Product Knowledge, R&D Date: September 2016 2015 Lexmark International Technology, S.A. All rights reserved.

More information

Perceptive TransForm E-Forms Manager Data Source

Perceptive TransForm E-Forms Manager Data Source Perceptive TransForm E-Forms Manager Data Source Getting Started Guide Version: 8.14.x Date: February 2017 2017 Lexmark. All rights reserved. Lexmark is a trademark of Lexmark International Inc., registered

More information

Perceptive Connect. Installation and Setup Guide. Beta version: Compatible with ImageNow, versions 6.6.x and 6.7.x

Perceptive Connect. Installation and Setup Guide. Beta version: Compatible with ImageNow, versions 6.6.x and 6.7.x Perceptive Connect Installation and Setup Guide Beta version: 0.12.1 Compatible with ImageNow, versions 6.6.x and 6.7.x Written by: Product Documentation, R&D Date: November 2013 2013 Perceptive Software.

More information

Healthcare Database Connector

Healthcare Database Connector Healthcare Database Connector Installation and Setup Guide Version: 3.0.0 Written by: Product Knowledge, R&D Date: February 2017 2015-2017 Lexmark. All rights reserved. Lexmark is a trademark of Lexmark

More information

Perceptive Process Mining

Perceptive Process Mining Perceptive Process Mining Installation and Setup Guide Version: 2.8.x Written by: Product Knowledge, R&D Date: September 2016 2014-2016 Lexmark. All rights reserved. Lexmark is a trademark of Lexmark International,

More information

Forescout. eyeextend for ServiceNow. Configuration Guide. Version 2.0

Forescout. eyeextend for ServiceNow. Configuration Guide. Version 2.0 Forescout Version 2.0 Contact Information Forescout Technologies, Inc. 190 West Tasman Drive San Jose, CA 95134 USA https://www.forescout.com/support/ Toll-Free (US): 1.866.377.8771 Tel (Intl): 1.408.213.3191

More information

METADATA FRAMEWORK 6.3. and High Availability

METADATA FRAMEWORK 6.3. and High Availability METADATA FRAMEWORK 6.3 and High Availability Publishing Information Software version 6.3.160 Document version 4 Publication date May 22, 2017 Copyright (c) 2005-2017 Varonis Systems Inc. All rights reserved.

More information

Installation, Upgrade, and Setup Guide Version: 10.2

Installation, Upgrade, and Setup Guide Version: 10.2 Perceptive Enterprise Search Installation, Upgrade, and Setup Guide Version: 10.2 Written by: Product Documentation, R&D Date: March 2013 2013 Perceptive Software. All rights reserved CaptureNow, ImageNow,

More information

Perceptive TransForm E-Forms Manager

Perceptive TransForm E-Forms Manager Perceptive TransForm E-Forms Manager Installation and Setup Guide Version: 8.x Date: February 2017 2016-2017 Lexmark. All rights reserved. Lexmark is a trademark of Lexmark International Inc., registered

More information

Perceptive Experience Healthcare Apps

Perceptive Experience Healthcare Apps Perceptive Experience Healthcare Apps Release Notes Version: 1.2.1 Written by: Product Knowledge, R&D Date: September 2016 2016 Lexmark. All rights reserved. Lexmark is a trademark of Lexmark International,

More information

Perceptive Intelligent Capture

Perceptive Intelligent Capture Perceptive Intelligent Capture Update Guide Version: 5.8.x Written by: Product Knowledge, R&D Date: Friday, December 08, 2017 2017 Lexmark. All rights reserved. Lexmark is a trademark of Lexmark International

More information

OpenText RightFax 10.0 Connector for Microsoft SharePoint 2007 Administrator Guide

OpenText RightFax 10.0 Connector for Microsoft SharePoint 2007 Administrator Guide OpenText RightFax 10.0 Connector for Microsoft SharePoint 2007 Administrator Guide OpenText RightFax 10.0 Connector for Microsoft SharePoint 2007 Administrator Guide ii Edition OpenText RightFax 10.0 Connector

More information

BLUEPRINT TEAM REPOSITORY. For Requirements Center & Requirements Center Test Definition

BLUEPRINT TEAM REPOSITORY. For Requirements Center & Requirements Center Test Definition BLUEPRINT TEAM REPOSITORY Installation Guide for Windows For Requirements Center & Requirements Center Test Definition Table Of Contents Contents Table of Contents Getting Started... 3 About the Blueprint

More information

Perceptive Connector for Microsoft Dynamics AX

Perceptive Connector for Microsoft Dynamics AX Perceptive Connector for Microsoft Dynamics AX Installation and Setup Guide Version: 2.4.x Written by: Product Knowledge, R&D Date: February 2018 2016 Lexmark. All rights reserved. Lexmark is a trademark

More information

Installation Guide For IM Sequencer 6.0

Installation Guide For IM Sequencer 6.0 Installation Guide For IM Sequencer 6.0 Copyright 2007-2015 Traxion. All rights reserved. The software contains proprietary information of Traxion. It is provided under a license agreement containing restrictions

More information

PaperVision Message Manager. User Guide. PaperVision Message Manager Release 71

PaperVision Message Manager. User Guide. PaperVision Message Manager Release 71 PaperVision Message Manager User Guide PaperVision Message Manager Release 71 June 2010 Information in this document is subject to change without notice and does not represent a commitment on the part

More information

Skills Management Automated Install and Upgrade Guide

Skills Management Automated Install and Upgrade Guide Skills Management 8.5.648 Automated Install and Upgrade Guide Information contained herein is proprietary and confidential and cannot be disclosed or duplicated without the prior written consent of Genesys

More information

Perceptive Voucher Build Connector for PeopleSoft

Perceptive Voucher Build Connector for PeopleSoft Perceptive Voucher Build Connector for PeopleSoft Installation Guide Version: 2.1.x Date: September 2017 2017 Lexmark. All rights reserved. Lexmark is a trademark of Lexmark International Inc., registered

More information

Contents Upgrading BFInventory iii

Contents Upgrading BFInventory iii Upgrading ii Upgrading Contents Upgrading.............. 1 Upgrading to IBM Tivoli Endpoint Manager for Software Use Analysis version 2.0....... 1 Planning and preparing for the upgrade.... 2 Installing

More information

Perceptive Media Connector

Perceptive Media Connector Perceptive Media Connector Installation and Setup Guide Version: 1.0.x Compatible with ImageNow, version 6.7.x Written by: Product Documentation, R&D Date: August 2016 2015 Perceptive Software. All rights

More information

MOVEit Mobile Server. Installation Guide

MOVEit Mobile Server. Installation Guide MOVEit Mobile Server Installation Guide Copyright 1991-2015 Ipswitch, Inc. All rights reserved. This document, as well as the software described in it, is furnished under license and may be used or copied

More information

AccuRoute Web Client v2.0 installation and configuration guide

AccuRoute Web Client v2.0 installation and configuration guide AccuRoute Web Client v2.0 installation and configuration guide July 22, 2009 Omtool, Ltd. 6 Riverside Drive Andover, MA 01810 Phone: +1/1 978 327 5700 Toll-free in the US: +1/1 800 886 7845 Fax: +1/1 978

More information

NeuralStar Installation Guide

NeuralStar Installation Guide NeuralStar Installation Guide Version 9.8 Release 3 May 2012 1st Edition Preface Software License Agreement Software is defined as the Kratos Technology & Training Solutions, Inc. computer programs with

More information

ForeScout Extended Module for ServiceNow

ForeScout Extended Module for ServiceNow ForeScout Extended Module for ServiceNow Version 1.2 Table of Contents About ServiceNow Integration... 4 Use Cases... 4 Asset Identification... 4 Asset Inventory True-up... 5 Additional ServiceNow Documentation...

More information

Perceptive Document Composition

Perceptive Document Composition Perceptive Document Composition Client Product Guide PDC Version: 5.4 Written by: Product Documentation, R&D Date: February 2014 2014 Perceptive Software. All rights reserved Perceptive Software is a trademark

More information

Deltek winsight Dashboard 6.5. Installation Guide

Deltek winsight Dashboard 6.5. Installation Guide Deltek winsight Dashboard 6.5 Installation Guide August 17, 2012 While Deltek has attempted to verify that the information in this document is accurate and complete, some typographical or technical errors

More information

Connect Install Guide

Connect Install Guide Connect Install Guide Version 3.2 Publication Date: December 16, 2013 Copyright Metalogix International GmbH 2008-2013. All Rights Reserved. This software is protected by copyright law and international

More information

Perceptive Interact for EpicCare Link

Perceptive Interact for EpicCare Link Perceptive Interact for EpicCare Link Installation and Setup Guide Version: 1.2.x Written by: Product Knowledge, R&D Date: February 2017 2016-2017 Lexmark. All rights reserved. Lexmark is a trademark of

More information

Perceptive Interact for Microsoft Dynamics AX

Perceptive Interact for Microsoft Dynamics AX Perceptive Interact for Microsoft Dynamics AX Installation and Setup Guide Version 1.2 Compatible with ImageNow, version 6.7.x Written by: Product Documentation, R&D Date: September 2016 2013 Perceptive

More information

WORKFLOW BUILDER TM FOR MICROSOFT ACCESS

WORKFLOW BUILDER TM FOR MICROSOFT ACCESS WORKFLOW BUILDER TM FOR MICROSOFT ACCESS Application Guide Version 06.05.2008 This document is copyright 2007-2008 OpenGate Software. The information contained in this document is subject to change without

More information

Perceptive Workgroup Search

Perceptive Workgroup Search Perceptive Workgroup Search Installation, Upgrade, and Setup Guide Version: 10.2 Written by: Perceptive Search, R&D Date: September 2016 2013 Perceptive Software. All rights reserved CaptureNow, ImageNow,

More information

Perceptive XML Integration for Epic

Perceptive XML Integration for Epic Perceptive XML Integration for Epic Installation and Setup Guide Version: 2.0.x Written by: Product Knowledge, R&D Date: May 2018 2008-2018 Hyland Software, Inc. and its affiliates. Table of Contents About

More information

Microsoft Windows Servers 2012 & 2016 Families

Microsoft Windows Servers 2012 & 2016 Families Version 8 Installation Guide Microsoft Windows Servers 2012 & 2016 Families 2301 Armstrong St, Suite 2111, Livermore CA, 94551 Tel: 925.371.3000 Fax: 925.371.3001 http://www.imanami.com Installation Guide

More information

Perceptive Interact for Epic

Perceptive Interact for Epic Perceptive Interact for Epic Installation and Setup Guide Version: 7.1.x Written by: Product Knowledge, R&D Date: March 2017 2015-2017 Lexmark. All rights reserved. Lexmark is a trademark of Lexmark International

More information

SUMMATION PRO INSTALLATION AND UPGRADE GUIDE MULTI-SERVER VERSION 6.0

SUMMATION PRO INSTALLATION AND UPGRADE GUIDE MULTI-SERVER VERSION 6.0 SUMMATION PRO INSTALLATION AND UPGRADE GUIDE MULTI-SERVER VERSION 6.0 REV. OCTOBER 13, 2015 CONTENTS About this System Maintenance Guide... 4 Other Guides... 4 About the System Specification Guide... 4

More information

Team Foundation Server Integration using QTfsListener

Team Foundation Server Integration using QTfsListener VaraLogix Q Team Foundation Server Integration using QTfsListener Table of Contents Introducing QTfsListener... 2 1. QTfsListener executable command line options... 4 2. Register QTfsListener as a service...

More information

PlexService 2.5 Installation Guide

PlexService 2.5 Installation Guide PlexService 2.5 Installation Guide Copyright 2000-2003 K-Plex Inc. All rights reserved Page 1 Table of Contents 1 Introduction... 3 2 System Requirements... 4 2.1 Hardware... 4 2.2 Software... 4 3 Installation...

More information

UC for Enterprise (UCE) NEC Centralized Authentication Service (NEC CAS)

UC for Enterprise (UCE) NEC Centralized Authentication Service (NEC CAS) UC for Enterprise (UCE) NEC Centralized Authentication Service (NEC CAS) Installation Guide NEC NEC Corporation October 2010 NDA-30362, Revision 15 Liability Disclaimer NEC Corporation reserves the right

More information

Perceptive Reflect. Installation and Setup Guide. Version: 2.3.x

Perceptive Reflect. Installation and Setup Guide. Version: 2.3.x Perceptive Reflect Installation and Setup Guide Version: 2.3.x Written by: Product Documentation, R&D Date: September 2016 2012 Lexmark International Technology SA. All rights reserved Perceptive Reflect

More information

ForeScout Extended Module for ServiceNow

ForeScout Extended Module for ServiceNow ForeScout Extended Module for ServiceNow Version 1.1.0 Table of Contents About this Integration... 4 Use Cases... 4 Asset Identification... 4 Asset Inventory True-up... 5 Additional ServiceNow Documentation...

More information

Perceptive Enterprise Deployment Suite

Perceptive Enterprise Deployment Suite Perceptive Enterprise Deployment Suite Installation Guide PEDS Version: 1.2 Environment: Windows Written by: Product Documentation, R&D Date: July 2012 2012 Perceptive Software. All rights reserved CaptureNow,

More information

USB-MIDI Driver installation and settings...1 Windows XP users... 1

USB-MIDI Driver installation and settings...1 Windows XP users... 1 Installation Guide Table of Contents USB-MIDI Driver installation and settings...1 Windows XP users... 1 Installing the KORG USB-MIDI Driver... 1 Allowing driver installation without a digital signature...

More information

December P Xerox FreeFlow Core Installation Guide

December P Xerox FreeFlow Core Installation Guide 5.1.0.0 December 2017 702P06246 2017 Xerox Corporation. All rights reserved. Xerox, Xerox and Design, and FreeFlow are trademarks of Xerox Corporation in the United States and/or other countries. This

More information

Silk Performance Manager Installation and Setup Help

Silk Performance Manager Installation and Setup Help Silk Performance Manager 18.5 Installation and Setup Help Micro Focus The Lawn 22-30 Old Bath Road Newbury, Berkshire RG14 1QN UK http://www.microfocus.com Copyright 2004-2017 Micro Focus. All rights reserved.

More information

Perceptive Workgroup Search

Perceptive Workgroup Search Perceptive Workgroup Search Installation, Upgrade, and Setup Guide Version: 10.5 Written by: Product Knowledge, R&D Date: November 2015 Written by: Product Documentation, R&D 2015 Lexmark International

More information

Perceptive Connect Runtime

Perceptive Connect Runtime Perceptive Connect Runtime Installation and Setup Guide Version: 1.0.x Compatible with ImageNow: Version 6.7.x or higher Written by: Product Knowledge, R&D Date: August 2016 2015 Perceptive Software. All

More information

Microsoft Dynamics CRM Integration with Bomgar Remote Support

Microsoft Dynamics CRM Integration with Bomgar Remote Support Microsoft Dynamics CRM Integration with Bomgar Remote Support 2017 Bomgar Corporation. All rights reserved worldwide. BOMGAR and the BOMGAR logo are trademarks of Bomgar Corporation; other trademarks shown

More information

SonicDICOM PACS. Integration Manual. https://sonicdicom.com/ 19 June, JIUN Corporation. All rights reserved.

SonicDICOM PACS. Integration Manual. https://sonicdicom.com/ 19 June, JIUN Corporation. All rights reserved. SonicDICOM PACS Integration Manual 19 June, 2017 https://sonicdicom.com/ 2017 JIUN Corporation. All rights reserved. Contents Integration Manual... 3 Version history... 3 1. Login... 4 2. Login by another

More information

Installation Guide. Mobile Print for Business version 1.0. July 2014 Issue 1.0

Installation Guide. Mobile Print for Business version 1.0. July 2014 Issue 1.0 Installation Guide Mobile Print for Business version 1.0 July 2014 Issue 1.0 Fuji Xerox Australia 101 Waterloo Road North Ryde NSW 2113 For technical queries please contact the Fuji Xerox Australia Customer

More information

Audit Record Repository Manager

Audit Record Repository Manager Audit Record Repository Manager Technical Specifications Version: 2.0.x Written by: Product Knowledge, R&D Date: April 2017 2017 Lexmark. All rights reserved. Lexmark is a trademark of Lexmark International

More information

OpenText RightFax 10.6

OpenText RightFax 10.6 OpenText RightFax 10.6 Connector for IBM Filenet Administrator Guide Edition OpenText RightFax 10.6 Connector for IBM Filenet. This document was last updated January 22, 2014. Trademarks OpenText is a

More information

NTP Software File Auditor for Windows Edition

NTP Software File Auditor for Windows Edition NTP Software File Auditor for Windows Edition An NTP Software Installation Guide Abstract This guide provides a short introduction to installation and initial configuration of NTP Software File Auditor

More information

Microsoft Dynamics CRM Integration with Remote Support

Microsoft Dynamics CRM Integration with Remote Support Microsoft Dynamics CRM Integration with Remote Support 2003-2018 BeyondTrust, Inc. All Rights Reserved. BEYONDTRUST, its logo, and JUMP are trademarks of BeyondTrust, Inc. Other trademarks are the property

More information

Metasys Database Manager Installation Instructions Code No. LIT Software Release 9.0 Issued August 2017

Metasys Database Manager Installation Instructions Code No. LIT Software Release 9.0 Issued August 2017 Code No. LIT-12011553 Software Release 9.0 Issued August 2017 Refer to the QuickLIT website for the most up-to-date version of this document. Document Introduction...2 Summary of Changes...2 Metasys Database

More information

User Manual. ARK for SharePoint-2007

User Manual. ARK for SharePoint-2007 User Manual ARK for SharePoint-2007 Table of Contents 1 About ARKSP (Admin Report Kit for SharePoint) 1 1.1 About ARKSP 1 1.2 Who can use ARKSP? 1 1.3 System Requirements 2 1.4 How to activate the software?

More information

Creating Column Profiles on LDAP Data Objects

Creating Column Profiles on LDAP Data Objects Creating Column Profiles on LDAP Data Objects Copyright Informatica LLC 1993, 2017. Informatica LLC. No part of this document may be reproduced or transmitted in any form, by any means (electronic, photocopying,

More information

Contents Overview... 5 Upgrading Primavera Gateway... 7 Using Gateway Configuration Utilities... 9

Contents Overview... 5 Upgrading Primavera Gateway... 7 Using Gateway Configuration Utilities... 9 Gateway Upgrade Guide for On-Premises Version 17 August 2017 Contents Overview... 5 Downloading Primavera Gateway... 5 Upgrading Primavera Gateway... 7 Prerequisites... 7 Upgrading Existing Gateway Database...

More information

Perceptive Matching Engine

Perceptive Matching Engine Perceptive Matching Engine Installation and Setup Guide Version: 1.0.x Written by: Product Development, R&D Date: March 2018 2018 Hyland Software, Inc. and its affiliates. Table of Contents Overview...

More information

LPR for Windows 95/98/Me/2000 TCP/IP Printing User s Guide

LPR for Windows 95/98/Me/2000 TCP/IP Printing User s Guide LPR for Windows 95/98/Me/2000 TCP/IP Printing User s Guide Rev. 02 (August, 2001) Copyright Statement Trademarks Copyright 1997 No part of this publication may be reproduced in any form or by any means

More information

Installation Instructions for JMP Genomics 4.1 for SAS 9.2

Installation Instructions for JMP Genomics 4.1 for SAS 9.2 Installation Instructions for JMP Genomics 4.1 for SAS 9.2 These instructions briefly describe the process for installing JMP Genomics 4.1 on your Windows desktop machine. Your software may be delivered

More information

ELM Server Exchange Edition Live Indexing and Search version 5.5

ELM Server Exchange Edition Live  Indexing and Search version 5.5 ELM Server Exchange Edition Live Email Indexing and Search version 5.5 Copyright 2016 Lexmark. All rights reserved. Lexmark is a trademark of Lexmark International, Inc., registered in the U.S. and/or

More information

Interact for Epic. Installation Guide. Version: 6.7.x

Interact for Epic. Installation Guide. Version: 6.7.x Interact for Epic Installation Guide Version: 6.7.x Written by: Product Knowledge, R&D Date: March 2017 2015-2017 Lexmark. All rights reserved. Lexmark is a trademark of Lexmark International Inc., registered

More information

ipm Global CHAPTER 1 INSTALLATION CH 1 - p 1

ipm Global CHAPTER 1 INSTALLATION CH 1 - p 1 CHAPTER 1 INSTALLATION CH 1 - p 1 CHAPTER 1 - INSTALLATION 1.0 INSTALLATION 1.1 System Requirements In order to correctly install and use IPM, the follow system requirements must be met: - Microsoft Dynamics

More information

Client Proxy interface reference

Client Proxy interface reference McAfee Client Proxy 2.3.3 Interface Reference Guide (McAfee epolicy Orchestrator) Client Proxy interface reference These tables provide information about the policy settings found in the Client Proxy UI.

More information

Perceptive Data Transfer

Perceptive Data Transfer Perceptive Data Transfer User Guide Version: 6.5.x Written by: Product Knowledge, R&D Date: September 2016 2015 Lexmark International Technology, S.A. All rights reserved. Lexmark is a trademark of Lexmark

More information

DCMSYS Image Generator User Manual

DCMSYS Image Generator User Manual DCMSYS Image Generator User Manual Revision History Date Updated Modifications Image Generator Version Manual Version January, 2011 First draft, revision. 1.0 September, 2014 Adding profiles description,

More information

Synerion Direct Installation Guide

Synerion Direct Installation Guide Synerion Direct Installation Guide Version: 1.3 Date: 13 December 2012 Synerion technical documentation and the product(s) described herein are protected by one or more copyrights, patents, foreign patents

More information

Sophos Enterprise Console

Sophos Enterprise Console secure network quick startup guide Product Version: 5.5 Contents About this guide... 1 Limitations on the secure network...2 What do I install?...3 What are the key steps?... 4 Download the installers...5

More information

>RadInfo Software Install

>RadInfo Software Install The RadInfo software can either be downloaded from the IntraVet FTP site or installed via CD. The MicroPowerPACS (MPPS) software and full viewer is to be installed on the workstation that will be directly

More information

Perceptive Document Composition

Perceptive Document Composition Perceptive Document Composition Installation and Setup Guide PDC Version: 5.4 Written by: Product Documentation, R&D Date: April 2014 2014 Perceptive Software. All rights reserved Perceptive Software is

More information

PaperVision Enterprise

PaperVision Enterprise PaperVision Enterprise Installation and Getting Started Guide PaperVision Enterprise Release 74 January 2012 Information in this document is subject to change without notice and does not represent a commitment

More information

Client Proxy interface reference

Client Proxy interface reference Reference Guide McAfee Client Proxy 2.3.2 Client Proxy interface reference These tables provide information about the settings found in the Client Proxy UI. Policy Catalog On the McAfee Client Proxy page

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

Installation Guide for Windows

Installation Guide for Windows Location Intelligence Spectrum Spatial Analyst Version 6.0 Installation Guide for Windows This guide explains how to install the Spectrum Spatial Analyst on a Windows server. The topics covered in this

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

TIE1.80InstallationGuideUK

TIE1.80InstallationGuideUK Installation Guide 112206 2006 Blackbaud, Inc. This publication, or any part thereof, may not be reproduced or transmitted in any form or by any means, electronic, or mechanical, including photocopying,

More information

Neuron Change History

Neuron Change History Neuron 2.5.13.0 Change History The user can now create custom pipeline steps. The call web service step now has dynamic support for custom soap headers. New step to send and receive from Msmq New step

More information

INSTALLATION AND SIGN-ON

INSTALLATION AND SIGN-ON T ECHNICAL NOTE Product: PayBase 8.5 Last modified: December 4, 2007 10:45 am Created by: Development Inside this note: PayBase Client Installation PayBase Removal INSTALLATION AND SIGN-ON This technical

More information

Workspace Administrator Help File

Workspace Administrator Help File Workspace Administrator Help File Table of Contents HotDocs Workspace Help File... 1 Getting Started with Workspace... 3 What is HotDocs Workspace?... 3 Getting Started with Workspace... 3 To access Workspace...

More information

Scribe Insight Installation Guide. Version August 10, 2011

Scribe Insight Installation Guide. Version August 10, 2011 Scribe Insight Installation Guide Version 7.0.2 August 10, 2011 www.scribesoft.com Important Notice No part of this publication may be reproduced, stored in a retrieval system, or transmitted in any form

More information

Receiving PeopleSoft Message (PeopleTools 8.17) through the Oracle AS PeopleSoft Adapter. An Oracle White Paper September 2008

Receiving PeopleSoft Message (PeopleTools 8.17) through the Oracle AS PeopleSoft Adapter. An Oracle White Paper September 2008 Receiving PeopleSoft Message (PeopleTools 8.17) through the Oracle AS PeopleSoft Adapter An Oracle White Paper September 2008 Receiving PeopleSoft Message (PeopleTools 8.17) through the Oracle AS PeopleSoft

More information

Setting File Creation Software for North America. Installation Instructions

Setting File Creation Software for North America. Installation Instructions Contents 1 Overview............................................................. 2 2 System Requirements.................................................. 2 3 Installing and Uninstalling..............................................

More information