Filestream Ltd. File Stream Document Management Integration Overview

Size: px
Start display at page:

Download "Filestream Ltd. File Stream Document Management Integration Overview"

Transcription

1 Filestream Ltd File Stream Document Management Integration Overview (C) Filestream Ltd 2011

2 Table of Contents Introduction... 3 Components... 3 General API... 4 Command Line Search... 6 Search Shortcut File... 7 Bookmark Shortcut File... 8 Cabinet Extension Scripts... 9 Extension Mechanism...10 Web Service API

3 Introduction This document is intended for developers who want to write custom integrated solutions to work with File Stream Document Management. It provides an overview of the various integration components available to the external developer. The document will explain how these components are accessed and what they can be used for. Components The File Stream API consists of the following components: General API Command Line Search Search Shortcut File Bookmark Shortcut File Cabinet Extension Scripts Extension Mechanism Web Service API The General API has a rich collection of methods to perform many different tasks within File Stream. This includes methods to log in and out of the system, import documents into the system, look for Barcodes or OCR values on an image, imprint text on an image, change some of the document s standard values such as its subject etc, add notes to a document, Index a document into a cabinet, search for a specific document and download it, or view it in a separate stand-alone viewer or open it in the full File Stream application, and pushing list data into cabinet list fields. The Command Line search, Search Shortcut and Bookmark Shortcuts are simple file-oriented mechanisms for searching for documents in the system and displaying them within the system. Cabinet extension scripts allow you to have control over the indexing mechanism. When documents are indexed / re-indexed into a cabinet with a script attached, you can perform tasks such as validate entered values or lookup other values from an external system before allowing it to be indexed. The Extension Mechanism allows extending some parts of the application via externally installed DLLs. Currently this is limited to extending the workflow module and some parts of the scheduler module. This mechanism is not directly available to external developers: however, we can develop extension DLLs to meet your specific requirements should you require specific functionality in a work flow or elsewhere in the system. The Web Service has a set of methods to allow you to have a web enabled solution to access File Stream data across the web such as searching or re-indexing documents via a web service. 3

4 General API Installation The General API is packaged in a single DLL called FS4CoreApi.DLL. This DLL is automatically installed and registered on any system which has the File Stream application installed. In the development environment you simply need to install and license the File Stream application and you need to purchase the File Stream API license. Deployment In the run-time environment you need to install and license the File Stream application on any PC which runs your external code which accesses the API. Depending on how you access the API (See Access Mechanisms below) you may also need to deploy the FS4CoreApi.DLL and its dependencies along with your solution. Licensing You need to purchase the File Stream API license and annual maintenance before you can use the functions in this API to write any integrated solutions. If your integration uses any of the Barcode or OCR methods then you must purchase the corresponding Barcode / OCR license for your development machine and the end user customer must purchase the corresponding Barcode / OCR license for each machine which runs your integration. COM Registration Although this API is a.net managed code assembly, it also exposes a COM interface as an alternative access mechanism for those integrations which cannot or do not want to reference it as a managed assembly. In order to use the COM access mechanism you first need to register the API on both the development system and on every end user run-time system. The simplest way to register for COM access is to install the File Stream application and run it once. Running the application will automatically register the API s COM interface on the system. You can also manually register it as follows :- Run regasm.exe ( in C:\Windows\Microsoft.NET\Framework\v ) in an elevated command prompt >C:\Windows\Microsoft.NET\Framework\v \regasm <Path to FS4CoreApi.DLL> 4

5 Access Mechanisms 1. The General API can be accessed from a managed.net solution by directly referencing it in your document management software integration project. Advantages: Simple to use. Provides Intellisense in your code. Disadvantages: Can only be used from a.net project. Need to deploy FS4CoreAPI.DLL and other dependency DLLs from File Stream along with your solution. Need to re-build your project and re-deploy your application every time File Stream is updated to a different version. Please note that the API is currently only available in a 32 bit assembly. Your application should be built to specifically target the x86 CPU and NOT Any CPU. A 64 bit release will be made available at a future date. 2. The API can also be accessed via its COM wrapper using late binding. Advantages: Can be used from legacy applications, managed and un-managed code. No need to deploy the DLLS or re-build your project except on major upgrades. Disadvantages: More cumbersome to use. No Intellisense. Functionality The General API has a rich collection of methods to perform many different tasks within File Stream Document Management software. This includes methods to log in and out of the system, import documents into the system, look for Barcodes or OCR values on an image, imprint text on an image, change some of the document s standard values such as its subject, etc, add notes to a document, Index a document into a cabinet, search for a specific document and download it, or view it in a separate standalone viewer or open it in the full File Stream Document Management application, and pushing list data into cabinet list fields. Custom Functionality Additional functionality can be added to the API upon request if you want to achieve some functionality which is not currently available via the API. We will consider your requirements and provide custom functionality if possible. Note that there may by an additional cost involved. 5

6 Command Line Search Installation, Deployment, Registration This mechanism is built-in within the main application. There is no separate installation, deployment or registration requirement. Licensing You need to purchase the File Stream API license and annual maintenance before you can use this mechanism. Functionality This method has been replaced by the Search Shortcut file (see below). However you can still use this method. It is very similar to the Search Shortcut file method except you launch the File Stream Exe from your application and pass it the path to the search file via a command line parameter. 6

7 Search Shortcut File Installation, Deployment This mechanism is built-in in the main application. There is no separate installation or deployment requirement. Licensing You need to purchase the File Stream API license and annual maintenance before you can use this mechanism. Registration The file type extension.fs4search must be associated with the File Stream application. This association is automatically made when the File Stream application is installed on a PC. You can also manually associate this file type with the File Stream exe (FS4CoreApplication.exe). Functionality A search shortcut file is a small XML file of a specified format. It includes database details and a search specification consisting of a cabinet name and index values to search for. When a search shortcut file is double clicked, it automatically launches the File Stream Document Management application and performs the search. This is useful as a mechanism to have desktop shortcuts to specific searches or for calling up a File Stream search from within your application, for example to view a specific invoice, etc. Your application can create a search shortcut file and launch it or cause it to open in File Stream via the General API. 7

8 Bookmark Shortcut File Installation, Deployment This mechanism is built-in in the main application. There is no separate installation or deployment requirement. Licensing You need to purchase the File Stream API license and annual maintenance before you can use this mechanism. Registration The file type extension.fs4bookmark must be associated with the File Stream application. This association is automatically made when the File Stream application is installed on a PC. You can also manually associate this file type with the File Stream exe (FS4CoreApplication.exe). Functionality A bookmark shortcut file is a small XML file of a specified format. It includes database details and a list of Documents Id s. When a bookmark shortcut file is double clicked, it automatically launches the File Stream Document Management application and displays all the bookmarked documents. This is useful as a mechanism to have desktop shortcuts to specific sets of documents to access them more easily without having to search for them in the system. Your application can create a bookmark shortcut file after performing one of the Search methods in the General API or Web Service to obtains the document id values. Your application can create a bookmark shortcut file and launch it or cause it to open in File Stream via the General API. 8

9 Cabinet Extension Scripts Installation, Deployment, Registration This mechanism is built-in within the main application. There is no separate installation, deployment or registration requirement. You need to deploy your cabinet script and point to it in cabinet maintenance. Licensing You need to purchase the File Stream API license and annual maintenance before you can use this mechanism. Functionality The script must be written in VBScript using a template script which is provided. The script must adhere to a specific interface and implement all the methods of that interface. The script is called every time the user manually indexes / re-indexes a document into the cabinet from the Index panel in the main application. Note that the scripting mechanism is NOT available from the Web Client module or when documents are indexed using other mechanisms such as via the scheduler or via the API or Web Service methods. With cabinet extension scripts you can Validate entered index values and fail the process or change the index values before allowing it to continue indexing Look up index values from external sources such as other applications or databases and populate index values on a document Rename a document s file name in the system before continuing to index it Manually index a document using a reference to the General API object. This allows you to take over the indexing mechanism and index the document completely as required including targeting it to a different cabinet Change a document s retention date before continuing to index it Specify different default values for the index panel, for example default a field to a different value depending on the user Custom Functionality Additional functionality can be added to the Scripting mechanism upon request if you want to achieve some functionality which is not currently available. We will consider your requirements and provide custom functionality if possible. Note that there may by an additional cost involved. 9

10 Extension Mechanism File Stream has an extension mechanism which allows extending some parts of the application via externally installed DLLs. Currently this is limited to extending the workflow module to some parts of the scheduler module. This mechanism is not directly available to external developers, however, we can develop extension DLLS to meet your specific requirements should you require specific functionality in a work flow or elsewhere in the system. We will consider your requirements and provide custom functionality if possible. Note that there may by an additional cost involved. Examples of extensions already developed include sending s from a work flow task, monitoring incoming e- mails from the scheduler, updating records in and obtaining records from external accounting systems during work flow processes, imprinting (approval stamps) on documents during work flow tasks, automatically indexing documents during workflow tasks 10

11 Web Service API Installation In your development environment you require an IIS Server and you need to install the File Stream Web Service module on the IIS server. Deployment In run-time environment you require an IIS Server and you need to install the File Stream Web Service module on the IIS server. Licensing You need to purchase the File Stream WEB API license and annual maintenance before you can use the Web Service API to develop your solution. You need to purchase and license the File Stream Web Module on your development machine or your IIS Server. The end user customer must purchase and license the File Stream Web Module on their IIS Server. Access Mechanism The Web Service is implemented as a standard Web Service (XML/SOAP). Its interface can be obtained via a WSDL file. Your application can be a rich client application or a web application which can access a standard web service. Your application can be written in any suitable language. You can have your own web service or ASP.NET application as the back end to your application and have it call the File Stream web service. Functionality Access Methods Various methods to access a File Stream database, to log in and log out as a File Stream user. URL Search You can format a URL to access a specific document and call it from a web browser to view the document image in the browser. Universal Search You can send a search specification in XML and receive back XML containing a set of documents found. You can then use other methods to access each of those documents and download its image file. 11

12 Universal Re Index You can send a re-index specification in XML to cause a given document to be re-indexed with different values. Document Methods Various methods to access a document, download the image, add document notes, set retention date, delete the document, etc. Custom Functionality Additional functionality can be added to the Web Service API upon request if you want to achieve some functionality which is not currently available. We will consider your requirements and provide custom functionality if possible. Note that there may by an additional cost involved. 12

Pcounter Web Report 3.x Installation Guide - v2014-11-30. Pcounter Web Report Installation Guide Version 3.4

Pcounter Web Report 3.x Installation Guide - v2014-11-30. Pcounter Web Report Installation Guide Version 3.4 Pcounter Web Report 3.x Installation Guide - v2014-11-30 Pcounter Web Report Installation Guide Version 3.4 Table of Contents Table of Contents... 2 Installation Overview... 3 Installation Prerequisites

More information

BarTender Integration Methods. Integrating BarTender s Printing and Design Functionality with Your Custom Application WHITE PAPER

BarTender Integration Methods. Integrating BarTender s Printing and Design Functionality with Your Custom Application WHITE PAPER BarTender Integration Methods Integrating BarTender s Printing and Design Functionality with Your Custom Application WHITE PAPER Contents Introduction 3 Integrating with External Data 4 Importing Data

More information

Hosted Connecting Steps Client Installation Instructions

Hosted Connecting Steps Client Installation Instructions Hosted Connecting Steps Client Installation Instructions Thank you for purchasing B Squared s Hosted Connecting Steps System for Schools. Connecting Steps V4 currently requires you to install a client

More information

BarTender s.net SDKs

BarTender s.net SDKs The World's Leading Software for Label, Barcode, RFID & Card Printing White Paper BarTender s.net SDKs Programmatically Controlling BarTender using C# and VB.NET Contents Overview of BarTender.NET SDKs...

More information

WINGS WEB SERVICE MODULE

WINGS WEB SERVICE MODULE WINGS WEB SERVICE MODULE GENERAL The Wings Web Service Module is a SOAP (Simple Object Access Protocol) interface that sits as an extra layer on top of the Wings Accounting Interface file import (WAIimp)

More information

PC-Duo Web Console Installation Guide

PC-Duo Web Console Installation Guide PC-Duo Web Console Installation Guide Release 12.1 August 2012 Vector Networks, Inc. 541 Tenth Street, Unit 123 Atlanta, GA 30318 (800) 330-5035 http://www.vector-networks.com Copyright 2012 Vector Networks

More information

App-V Deploy and Publish

App-V Deploy and Publish App-V Deploy and Publish Tools from TMurgent Technologies Updated Aug 5, 2010 Version 1.8 Introduction: The deployment of Virtual Applications in the simplest way possible, without the need for complicated

More information

Amadeus Selling Platform 3.1 P120

Amadeus Selling Platform 3.1 P120 Amadeus Selling Platform 3.1 P120 Installation Guide Terminal Server and Citrix Index 1 Introduction... 3 1.1 About this guide... 3 1.2 Intended audience... 3 2 Limitations and requirements... 3 3 Technical

More information

Installation and Deployment

Installation and Deployment Installation and Deployment Help Documentation This document was auto-created from web content and is subject to change at any time. Copyright (c) 2016 SmarterTools Inc. Installation and Deployment SmarterStats

More information

The full setup includes the server itself, the server control panel, Firebird Database Server, and three sample applications with source code.

The full setup includes the server itself, the server control panel, Firebird Database Server, and three sample applications with source code. Content Introduction... 2 Data Access Server Control Panel... 2 Running the Sample Client Applications... 4 Sample Applications Code... 7 Server Side Objects... 8 Sample Usage of Server Side Objects...

More information

Forms Printer User Guide

Forms Printer User Guide Forms Printer User Guide Version 10.51 for Dynamics GP 10 Forms Printer Build Version: 10.51.102 System Requirements Microsoft Dynamics GP 10 SP2 or greater Microsoft SQL Server 2005 or Higher Reporting

More information

> Define the different phases of K2 development, including: understand, model, build, maintain and extend

> Define the different phases of K2 development, including: understand, model, build, maintain and extend This course concentrates on K2 blackpoint from a SharePoint Site Collection owners perspective, that is, a person who already has a basic understanding of SharePoint concepts and terms before attending

More information

What s New in Version 10 Details for Web Essentials

What s New in Version 10 Details for Web Essentials What s New in Version 10 Details for Web Essentials TABLE OF CONTENTS Overview... 3 Dashboard Module... 3 General Changes... 3 New Proposal... 3 Create Proposal in Word... 5 Create New Proposal in Excel...

More information

Medtech Clinical Audit Tool Installation Guide

Medtech Clinical Audit Tool Installation Guide Medtech Clinical Audit Tool Installation Guide These Release Notes contain important information for all Medtech Users. Please ensure that they are circulated amongst all your staff. We suggest that these

More information

LAE 5.1. Windows Server Installation Guide. Version 1.0

LAE 5.1. Windows Server Installation Guide. Version 1.0 LAE 5.1 Windows Server Installation Guide Copyright THE CONTENTS OF THIS DOCUMENT ARE THE COPYRIGHT OF LIMITED. ALL RIGHTS RESERVED. THIS DOCUMENT OR PARTS THEREOF MAY NOT BE REPRODUCED IN ANY FORM WITHOUT

More information

FileMaker Server 14. FileMaker Server Help

FileMaker Server 14. FileMaker Server Help FileMaker Server 14 FileMaker Server Help 2007 2015 FileMaker, Inc. All Rights Reserved. FileMaker, Inc. 5201 Patrick Henry Drive Santa Clara, California 95054 FileMaker and FileMaker Go are trademarks

More information

FileMaker Server 11. FileMaker Server Help

FileMaker Server 11. FileMaker Server Help FileMaker Server 11 FileMaker Server Help 2010 FileMaker, Inc. All Rights Reserved. FileMaker, Inc. 5201 Patrick Henry Drive Santa Clara, California 95054 FileMaker is a trademark of FileMaker, Inc. registered

More information

Migrating helpdesk to a new server

Migrating helpdesk to a new server Migrating helpdesk to a new server Table of Contents 1. Helpdesk Migration... 2 Configure Virtual Web on IIS 6 Windows 2003 Server:... 2 Role Services required on IIS 7 Windows 2008 / 2012 Server:... 2

More information

How to configure the DBxtra Report Web Service on IIS (Internet Information Server)

How to configure the DBxtra Report Web Service on IIS (Internet Information Server) How to configure the DBxtra Report Web Service on IIS (Internet Information Server) Table of Contents Install the DBxtra Report Web Service automatically... 2 Access the Report Web Service... 4 Verify

More information

Welcome to Unyfy v2.0. A unified approach to online meetings in the conference room. Installation & Settings

Welcome to Unyfy v2.0. A unified approach to online meetings in the conference room. Installation & Settings Welcome to Unyfy v2.0 A unified approach to online meetings in the conference room Installation & Settings 1. Prerequisites Unyfy needs to have a Lync client installed in order to operate. Your Desktop

More information

Click Studios. Passwordstate. Upgrade Instructions to V7 from V5.xx

Click Studios. Passwordstate. Upgrade Instructions to V7 from V5.xx Passwordstate Upgrade Instructions to V7 from V5.xx This document and the information controlled therein is the property of Click Studios. It must not be reproduced in whole/part, or otherwise disclosed,

More information

AdminToys Suite. Installation & Setup Guide

AdminToys Suite. Installation & Setup Guide AdminToys Suite Installation & Setup Guide Copyright 2008-2009 Lovelysoft. All Rights Reserved. Information in this document is subject to change without prior notice. Certain names of program products

More information

v.2.5 2015 Devolutions inc.

v.2.5 2015 Devolutions inc. v.2.5 Contents 3 Table of Contents Part I Getting Started 6... 6 1 What is Devolutions Server?... 7 2 Features... 7 3 System Requirements Part II Management 10... 10 1 Devolutions Server Console... 11

More information

Setting Up a Unisphere Management Station for the VNX Series P/N 300-011-796 Revision A01 January 5, 2010

Setting Up a Unisphere Management Station for the VNX Series P/N 300-011-796 Revision A01 January 5, 2010 Setting Up a Unisphere Management Station for the VNX Series P/N 300-011-796 Revision A01 January 5, 2010 This document describes the different types of Unisphere management stations and tells how to install

More information

FileMaker Server 13. FileMaker Server Help

FileMaker Server 13. FileMaker Server Help FileMaker Server 13 FileMaker Server Help 2010-2013 FileMaker, Inc. All Rights Reserved. FileMaker, Inc. 5201 Patrick Henry Drive Santa Clara, California 95054 FileMaker and Bento are trademarks of FileMaker,

More information

Funding Information System (FIS) Installation Guidance

Funding Information System (FIS) Installation Guidance (FIS) Installation Guidance Document Details Document Type: Installation Guidance Creation Date: 23/03/2015 Document 1.3 Version: Change to this Document Version Date Changes made V1.0 20/05/2014 Initial

More information

Office apps are streamed from Office 365 or on premises tools

Office apps are streamed from Office 365 or on premises tools Office apps are streamed from Office 365 or on premises tools Streaming installation allows Office apps to run almost instantly & features load based on usage Use Office 365 both online and offline Works

More information

mypro Installation and Handling Manual Version: 7

mypro Installation and Handling Manual Version: 7 mypro Installation and Handling Manual Version: 7 Date: JAN 2016 Thank you for using mypro on your PC. myscada is a full featured HMI/SCADA system with advanced options such as vector graphics views, advanced

More information

Installing the ASP.NET VETtrak APIs onto IIS 5 or 6

Installing the ASP.NET VETtrak APIs onto IIS 5 or 6 Installing the ASP.NET VETtrak APIs onto IIS 5 or 6 2 Installing the ASP.NET VETtrak APIs onto IIS 5 or 6 3... 3 IIS 5 or 6 1 Step 1- Install/Check 6 Set Up and Configure VETtrak ASP.NET API 2 Step 2 -...

More information

WebsitePanel Installation Guide

WebsitePanel Installation Guide WebsitePanel Installation Guide Author: Feodor Fitsner Last updated: 15/04/2010 Version: 1.0 Table of Contents Introduction... 2 Hardware Requirements... 2 Dedicated Server... 2 Dedicated IP Addresses...

More information

Quick Start Guide for Parallels Virtuozzo

Quick Start Guide for Parallels Virtuozzo PROPALMS VDI Version 2.1 Quick Start Guide for Parallels Virtuozzo Rev. 1.1 Published: JULY-2011 1999-2011 Propalms Ltd. All rights reserved. The information contained in this document represents the current

More information

Quick Start Guide for VMware and Windows 7

Quick Start Guide for VMware and Windows 7 PROPALMS VDI Version 2.1 Quick Start Guide for VMware and Windows 7 Rev. 1.1 Published: JULY-2011 1999-2011 Propalms Ltd. All rights reserved. The information contained in this document represents the

More information

PRiSM Security. Configuration and considerations

PRiSM Security. Configuration and considerations PRiSM Security Configuration and considerations Agenda Security overview Authentication Adding a User Security Groups Security Roles Asset Roles Security Overview Three Aspects of Security Authentication

More information

System Administration Training Guide. S100 Installation and Site Management

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

More information

About the VM-Series Firewall

About the VM-Series Firewall About the VM-Series Firewall Palo Alto Networks VM-Series Deployment Guide PAN-OS 6.0 Contact Information Corporate Headquarters: Palo Alto Networks 4401 Great America Parkway Santa Clara, CA 95054 http://www.paloaltonetworks.com/contact/contact/

More information

Intellex Platform Security Update Process. Microsoft Security Updates. Version 06-10

Intellex Platform Security Update Process. Microsoft Security Updates. Version 06-10 Intellex Platform Security Update Process Microsoft Security Updates Version 06-10 Contents Intellex Platform Security Update Process... 1 Introduction... 3 Installing updates on an Intellex Ultra running

More information

RSA SecurID Software Token 3.0 for Windows Workstations Administrator s Guide

RSA SecurID Software Token 3.0 for Windows Workstations Administrator s Guide RSA SecurID Software Token 3.0 for Windows Workstations Administrator s Guide Contact Information See our Web sites for regional Customer Support telephone and fax numbers. RSA Security Inc. RSA Security

More information

ResPAK Internet Module

ResPAK Internet Module ResPAK Internet Module This document provides an overview of the ResPAK Internet Module which consists of the RNI Web Services application and the optional ASP.NET Reservations web site. The RNI Application

More information

Installation Notes for Offshore Payroll. The design has targeted a screen resolution of 1024 * 768 or higher.

Installation Notes for Offshore Payroll. The design has targeted a screen resolution of 1024 * 768 or higher. Installation Notes for Offshore Payroll Offshore Payroll has been developed in Microsoft Access, and can happily run in Access 2000, 2002, 2003, 2007, 2010 Full versions, or 2007 & 2010 Runtime (the runtime

More information

Signup instructions for the End User

Signup instructions for the End User Wellnomics Risk Management Server Hosted by Wellnomics Ltd Signup instructions for the End User Wellnomics Risk Management is a series of assessments, designed to help you to manage your exposure to computer-based

More information

Web based training for field technicians can be arranged by calling 888-577-4919 These Documents are required for a successful install:

Web based training for field technicians can be arranged by calling 888-577-4919 These Documents are required for a successful install: Software V NO. 1.7 Date 9/06 ROI Configuration Guide Before you begin: Note: It is important before beginning to review all installation documentation and to complete the ROI Network checklist for the

More information

DOCSVAULT Document Management System for everyone

DOCSVAULT Document Management System for everyone Installation Guide DOCSVAULT Document Management System for everyone 9 v Desktop and Web Client v On Premises Solution v Intelligent Data Capture v Email Automation v Workflow & Record Retention Installing

More information

VirtualXP Users Guide

VirtualXP Users Guide VirtualXP Users Guide Contents Chapter 1: Introduction... 2 Chapter 2: Install and Uninstall VirtualXP... 3 2.1 System Requirement... 3 2.2 Installing VirtualXP... 3 2.3 Uninstalling VirtualXP... 3 Chapter

More information

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

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

More information

ACTIVE DIRECTORY DEPLOYMENT

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

More information

SpamTitan Outlook Addin v1.1 Installation Instructions

SpamTitan Outlook Addin v1.1 Installation Instructions SpamTitan Outlook Addin v1.1 Installation Instructions Introduction What does this Addin Do? Allows reporting of SPAM and HAM messages to the SpamTitan appliance, this in turn will allow the Bayesian appliance

More information

HASP USB KEY GUIDE For AFT Software (updated 09/11/2012)

HASP USB KEY GUIDE For AFT Software (updated 09/11/2012) HASP USB KEY GUIDE For AFT Software (updated 09/11/2012) Forward... 2 Installation... 2 Overview... 2 Using files from the CD... 2 Using files downloaded from the website... 3 Manual Setup... 3 Setting

More information

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

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

More information

MaaS360 Cloud Extender

MaaS360 Cloud Extender MaaS360 Cloud Extender Installation Guide Copyright 2013 Fiberlink Communications Corporation. All rights reserved. Information in this document is subject to change without notice. The software described

More information

WESTERNACHER OUTLOOK E-MAIL-MANAGER OPERATING MANUAL

WESTERNACHER OUTLOOK E-MAIL-MANAGER OPERATING MANUAL TABLE OF CONTENTS 1 Summary 3 2 Software requirements 3 3 Installing the Outlook E-Mail Manager Client 3 3.1 Requirements 3 3.1.1 Installation for trial customers for cloud-based testing 3 3.1.2 Installing

More information

Networking Best Practices Guide. Version 6.5

Networking Best Practices Guide. Version 6.5 Networking Best Practices Guide Version 6.5 Summer 2010 Copyright: 2010, CCH, a Wolters Kluwer business. All rights reserved. Material in this publication may not be reproduced or transmitted in any form

More information

VoIP Infrastructure Upgrade Desktop. User Group March 2014

VoIP Infrastructure Upgrade Desktop. User Group March 2014 VoIP Infrastructure Upgrade Desktop User Group 1 Agenda Infrastructure upgrade project overview update Upgrading from an earlier version Removing CAD 8.0 Install CAD 9.0.3 Best practices CAD 9.0.3 systems

More information

How to Prepare for the Upgrade to Microsoft Dynamics CRM 2013 (On-premises)

How to Prepare for the Upgrade to Microsoft Dynamics CRM 2013 (On-premises) How to Prepare for the Upgrade to Microsoft Dynamics CRM 2013 (On-premises) COMPANY: Microsoft Corporation RELEASED: September 2013 VERSION: 1.0 Copyright This document is provided "as-is". Information

More information

Whitepaper Document Solutions

Whitepaper Document Solutions Whitepaper Document Solutions ScannerVision 3 Contents Contents... 2 Introduction... 3 ScannerVision introduction... 4 Concept... 4 Components... 4 Deploying ScannerVision... 5 Supported Operating Systems...

More information

MaaS360 On-Premises Cloud Extender

MaaS360 On-Premises Cloud Extender MaaS360 On-Premises Cloud Extender Installation Guide Copyright 2014 Fiberlink Communications Corporation. All rights reserved. Information in this document is subject to change without notice. The software

More information

Interworks. Interworks Cloud Platform Installation Guide

Interworks. Interworks Cloud Platform Installation Guide Interworks Interworks Cloud Platform Installation Guide Published: March, 2014 This document contains information proprietary to Interworks and its receipt or possession does not convey any rights to reproduce,

More information

BPM Scheduling with Job Scheduler

BPM Scheduling with Job Scheduler Document: BPM Scheduling with Job Scheduler Author: Neil Kolban Date: 2009-03-26 Version: 0.1 BPM Scheduling with Job Scheduler On occasion it may be desired to start BPM processes at configured times

More information

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

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

More information

Specops Command. Installation Guide

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

More information

How do I use Citrix Staff Remote Desktop

How do I use Citrix Staff Remote Desktop How do I use Citrix Staff Remote Desktop September 2014 Initial Log On In order to login into the new Citrix system, you need to go to the following web address. https://remotets.tees.ac.uk/ Be sure to

More information

Introduction. Installation of SE S AM E BARCODE virtual machine distribution. (Windows / Mac / Linux)

Introduction. Installation of SE S AM E BARCODE virtual machine distribution. (Windows / Mac / Linux) Installation of SE S AM E BARCODE virtual machine distribution (Windows / Mac / Linux) Introduction A "virtual machine" is a fake computer within a true one. An underlying software (here VirtualBox) is

More information

Rogue Wave HostAccess 7.40J Installation Guide... 1

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

More information

CAPIX Job Scheduler User Guide

CAPIX Job Scheduler User Guide CAPIX Job Scheduler User Guide Version 1.1 December 2009 Table of Contents Table of Contents... 2 Introduction... 3 CJS Installation... 5 Writing CJS VBA Functions... 7 CJS.EXE Command Line Parameters...

More information

Installing Globodox Web Client on Windows 7 (64 bit)

Installing Globodox Web Client on Windows 7 (64 bit) Notes: Supported Editions - Windows 7 Professional, Windows 7 Enterprise, and Windows 7 Ultimate. Make sure that the Globodox Desktop Client is installed. Make sure it is not running. Please click on Allow

More information

SmartConnect Users Guide

SmartConnect Users Guide eone Integrated Business Solutions SmartConnect Users Guide Copyright: Manual copyright 2003 eone Integrated Business Solutions All rights reserved. Your right to copy this documentation is limited by

More information

Migrating IIS 6.0 Web Application to New Version Guidance

Migrating IIS 6.0 Web Application to New Version Guidance Migrating IIS 6.0 Web Application to New Version Guidance Migrating Web Application from IIS6.0 to IIS7.x and above Michael Li (PFE) PFE micl@microsoft.com Prepared for Users who want to upgrade IIS 6.0

More information

Automating client deployment

Automating client deployment Automating client deployment 1 Copyright Datacastle Corporation 2014. All rights reserved. Datacastle is a registered trademark of Datacastle Corporation. Microsoft Windows is either a registered trademark

More information

Microsoft Office 365 with MailDefender

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

More information

Magento Search Extension TECHNICAL DOCUMENTATION

Magento Search Extension TECHNICAL DOCUMENTATION CHAPTER 1... 3 1. INSTALLING PREREQUISITES AND THE MODULE (APACHE SOLR)... 3 1.1 Installation of the search server... 3 1.2 Configure the search server for usage with the search module... 7 Deploy the

More information

Remote Console Installation & Setup Guide. November 2009

Remote Console Installation & Setup Guide. November 2009 Remote Console Installation & Setup Guide November 2009 Legal Information All rights reserved. No part of this document shall be reproduced or transmitted by any means or otherwise, without written permission

More information

HOW TO SILENTLY INSTALL CLOUD LINK REMOTELY WITHOUT SUPERVISION

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

More information

AdminStudio 2013. Release Notes. 16 July 2013. Introduction... 3. New Features... 6

AdminStudio 2013. Release Notes. 16 July 2013. Introduction... 3. New Features... 6 AdminStudio 2013 Release Notes 16 July 2013 Introduction... 3 New Features... 6 Microsoft App-V 5.0 Support... 6 Support for Conversion to App-V 5.0 Virtual Packages... 7 Automated Application Converter

More information

A. Welcome 4 B. Features 4 C. Getting Started 4. D. Using SureMDM Web Console 15

A. Welcome 4 B. Features 4 C. Getting Started 4. D. Using SureMDM Web Console 15 v2.0 A. Welcome 4 B. Features 4 C. Getting Started 4 1. Pre-requisites 4 2. Quick Look at SureMDM Web Console 5 3. Getting Nix 9 i. Windows Mobile/CE 9 ii. Android 9 4. Verifying Connectivity with SureMDM

More information

OutDisk 4.0 FTP FTP for Email Users using Microsoft Windows and/or Microsoft Outlook. 5/1/2012 2012 Encryptomatic LLC www.encryptomatic.

OutDisk 4.0 FTP FTP for Email Users using Microsoft Windows and/or Microsoft Outlook. 5/1/2012 2012 Encryptomatic LLC www.encryptomatic. OutDisk 4.0 FTP FTP for Email Users using Microsoft Windows and/or Microsoft Outlook 5/1/2012 2012 Encryptomatic LLC www.encryptomatic.com Contents What is OutDisk?... 3 OutDisk Requirements... 3 How Does

More information

Using SQL Reporting Services with Amicus

Using SQL Reporting Services with Amicus Using SQL Reporting Services with Amicus Applies to: Amicus Attorney Premium Edition 2011 SP1 Amicus Premium Billing 2011 Contents About SQL Server Reporting Services...2 What you need 2 Setting up SQL

More information

Active Directory Integration for Greentree

Active Directory Integration for Greentree App Number: 010044 Active Directory Integration for Greentree Last Updated 14 th February 2013 Powered by: AppsForGreentree.com 2013 1 Table of Contents Features... 3 Options... 3 Important Notes... 3

More information

LANDESK Service Desk. Desktop Manager

LANDESK Service Desk. Desktop Manager LANDESK Service Desk Desktop Manager LANDESK SERVICE DESK DESKTOP MANAGER GUIDE This document contains information, which is the confidential information and/or proprietary property of LANDESK Software,

More information

Installation Guide ARGUS Symphony 1.6 and Business App Toolkit. 6/13/2014 2014 ARGUS Software, Inc.

Installation Guide ARGUS Symphony 1.6 and Business App Toolkit. 6/13/2014 2014 ARGUS Software, Inc. ARGUS Symphony 1.6 and Business App Toolkit 6/13/2014 2014 ARGUS Software, Inc. Installation Guide for ARGUS Symphony 1.600.0 6/13/2014 Published by: ARGUS Software, Inc. 3050 Post Oak Boulevard Suite

More information

Workflow Conductor for SharePoint 2010

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

More information

FileMaker Server 10 Help

FileMaker Server 10 Help FileMaker Server 10 Help 2007-2009 FileMaker, Inc. All Rights Reserved. FileMaker, Inc. 5201 Patrick Henry Drive Santa Clara, California 95054 FileMaker, the file folder logo, Bento and the Bento logo

More information

Upgrading CloudPortal Services Manager 11.0 to Version 11.0.1

Upgrading CloudPortal Services Manager 11.0 to Version 11.0.1 Upgrading CloudPortal Services Manager 11.0 to Version 11.0.1 www.citrix.com Table of contents Recommended upgrade process... 4 Prerequisites... 4 Upgrade the database... 5 Upgrade the platform components...

More information

Installing Globodox Web Client on Windows Server 2012

Installing Globodox Web Client on Windows Server 2012 Installing Globodox Web Client on Windows Server 2012 Make sure that the Globodox Desktop Client is installed. Make sure it is not running. Note: Please click on Allow or Continue for all required UAC

More information

Quick Reference Guide

Quick Reference Guide Quick Reference Guide What s New in NSi AutoStore TM 6.0 Notable Solutions, Inc. System requirements Hardware Microsoft Windows operating system (OS) running on computer with at least a 2 GHz Processor

More information

WebSpy Vantage Ultimate 2.2 Web Module Administrators Guide

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

More information

WinTask x64 Scheduler for Windows 7 64 bit, Windows 8/8.1 64 bit and Windows 2008 R2 64 bit. Scheduler Quick Start Guide

WinTask x64 Scheduler for Windows 7 64 bit, Windows 8/8.1 64 bit and Windows 2008 R2 64 bit. Scheduler Quick Start Guide WinTask x64 Scheduler for Windows 7 64 bit, Windows 8/8.1 64 bit and Windows 2008 R2 64 bit Scheduler Quick Start Guide 2 INTRODUCTION 5 CHAPTER I : INSTALLATION 7 CHAPTER II : SET UP YOUR FIRST SCHEDULED

More information

JAVA WEB START OVERVIEW

JAVA WEB START OVERVIEW JAVA WEB START OVERVIEW White Paper May 2005 Sun Microsystems, Inc. Table of Contents Table of Contents 1 Introduction................................................................. 1 2 A Java Web Start

More information

How To Configure CU*BASE Encryption

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

More information

SSL VPN Service. To get started using the NASA IV&V/WVU SSL VPN service, you must verify that you meet all required criteria specified here:

SSL VPN Service. To get started using the NASA IV&V/WVU SSL VPN service, you must verify that you meet all required criteria specified here: SSL VPN Service Note: This guide was written using Windows 7 with Internet Explorer 8. The same principles and techniques are applicable to new versions of Internet Explorer as well as Firefox. Any significant

More information

QQConnect Overview Guide

QQConnect Overview Guide QQConnect Overview Guide Last Updated: 3/20/2015 About QQConnect QQConnect is an add-on utility for QQCatalyst that makes it easy to transfer documents and e- mails from your Windows desktop or desktop

More information

PC Monitor Enterprise Server. Setup Guide

PC Monitor Enterprise Server. Setup Guide PC Monitor Enterprise Server Setup Guide Prerequisites Server Requirements - Microsoft Windows Server 2008 R2 or 2012-2GB RAM - IIS 7.5 or IIS 8.0 (with ASP.NET 4.0 installed) - Microsoft SQL Server 2008

More information

Deploying SecureCloud SaaS in a vcloud Environment

Deploying SecureCloud SaaS in a vcloud Environment Deploying SecureCloud SaaS in a vcloud Environment Securing Your Journey to the Cloud Trend Micro SecureCloud A Trend Micro & VMware White Paper August 2011 I. EXECUTIVE SUMMARY This is the second paper

More information

Installation Guide. (June 2014)

Installation Guide. (June 2014) Installation Guide Medtech Fax Solution (for Windows 7 and later) (June 2014) IMPORTANT NOTE Medtech recommends that all Medtech upgrades and database back-up and restore processes are performed by a Medtech

More information

Terms and Definitions for CMS Administrators, Architects, and Developers

Terms and Definitions for CMS Administrators, Architects, and Developers Sitecore CMS 6 Glossary Rev. 081028 Sitecore CMS 6 Glossary Terms and Definitions for CMS Administrators, Architects, and Developers Table of Contents Chapter 1 Introduction... 3 1.1 Glossary... 4 Page

More information

Important Notes for WinConnect Server VS Software Installation:

Important Notes for WinConnect Server VS Software Installation: Important Notes for WinConnect Server VS Software Installation: 1. Only Windows Vista Business, Windows Vista Ultimate, Windows 7 Professional, Windows 7 Ultimate, Windows Server 2008 (32-bit & 64-bit),

More information

Contents. Platform Compatibility. Directory Connector SonicWALL Directory Services Connector 3.1.7

Contents. Platform Compatibility. Directory Connector SonicWALL Directory Services Connector 3.1.7 Directory Connector SonicWALL Directory Services Connector 3.1.7 Contents Platform Compatibility... 1 New Features... 2 Known Issues... 3 Resolved Issues... 4 Overview... 7 About SonicWALL Single Sign-On

More information

LifeSize Control Installation Guide

LifeSize Control Installation Guide LifeSize Control Installation Guide April 2005 Part Number 132-00001-001, Version 1.0 Copyright Notice Copyright 2005 LifeSize Communications. All rights reserved. LifeSize Communications has made every

More information

FileMaker Server 12. FileMaker Server Help

FileMaker Server 12. FileMaker Server Help FileMaker Server 12 FileMaker Server Help 2010-2012 FileMaker, Inc. All Rights Reserved. FileMaker, Inc. 5201 Patrick Henry Drive Santa Clara, California 95054 FileMaker is a trademark of FileMaker, Inc.

More information

FileMaker Server 13. Getting Started Guide

FileMaker Server 13. Getting Started Guide FileMaker Server 13 Getting Started Guide 2007 2013 FileMaker, Inc. All Rights Reserved. FileMaker, Inc. 5201 Patrick Henry Drive Santa Clara, California 95054 FileMaker and Bento are trademarks of FileMaker,

More information

SysAid Freeware Installation Guide

SysAid Freeware Installation Guide SysAidTM Freeware Installation Guide August 2006 Page 1 Introduction SysAid s free version is built for organizations with fewer than 100 computers and users. This document will help you install the software.

More information

Remote Application Server Version 14. Last updated: 25-02-15

Remote Application Server Version 14. Last updated: 25-02-15 Remote Application Server Version 14 Last updated: 25-02-15 Information in this document is subject to change without notice. Companies, names, and data used in examples herein are fictitious unless otherwise

More information