Maintaining Concordance Andy Kass

Size: px
Start display at page:

Download "Maintaining Concordance Andy Kass"

Transcription

1 Concordance Tip Sheet May 2010 Maintaining Concordance Andy Kass In this forum we normally discuss the nitty gritty of document review in Concordance, detailing searching, tags, tallying, production, and all that other good stuff. But at the end of the day literally someone must take care of the databases, and that is the topic of this month s Concordance Tip. I have discussed various backup methods in a prior posting (see so I am going to focus on actual database preservation, and the automation of various processes using CPLs and Windows command files. Of Reindexing, Indexing and Packing The main tools for maintaining Concordance databases are Reindex, Index and Pack. To review, the difference between Reindex and Index is that Reindex refreshes the dictionary and index with new and modified text, while Index dumps and rebuilds the dictionary and index from scratch. Thus, Reindex may be done with users in the database (though this can be locked out), but Index can never run if there are users in the database. Pack defragments the database and prunes all deleted records and dictionary references; this also requires exclusive access by the administrator. Each of these processes may be automated, with the caveat that Index and Pack will fail if anyone left their computer logged in to a Concordance database, or shut a computer without closing Concordance first. Flogging has been found to be helpful here. (Kidding.) Looking in my toolkit, I have some things from Concordance (back to Dataflight days), and some things Iʹve cooked up myself. Youʹll find the Scheduled Tasks manager

2 Concordance Tip Sheet May on your admin station or server very useful in calling these batch/command files, which in turn open Concordance to run the CPLs those omnipresent Concordance scripts. Some basic Concordance maintenance CPLs are: INDXPACK.CPL: Indexes and Packs a selected database (unless someone failed to exit properly). Since this is a pretty simple CPL, let s take a look at two examples of it, one pretty much as written (with a database name plugged in), and the other with the syntax for passing an administrator login and password (in clear text, unfortunately): <PLAIN VERSION> main() { int db; } db = opendb( "O:\CASES\Mets_v_Yanks\SubwaySeries" ); index( db ); pack( db ); exit(0); <PASSWORD VERSION> {/* this is comment text */} /* these first two lines are optional definitions */ /*text szuserid = ʺADMINISTRATORʺ;*/ /*text szpassword = ʺpasscode!ʺ;*/ main() { /* char szuserid, SZPassword; */ int db; /* Reindex the database first line shows syntax, second is explicit */ /* db = opendb("c:\cases\mets_v_yanks\subwayseries_g3", szuserid, szpassword) */ db = opendb("c:\cases\mets_v_yanks\subwayseries_g3", "administrator", "passcode!"); index( db ); pack( db ); exit(0); }

3 Concordance Tip Sheet May Reindexing_Daemon.CPL: Reindexes a database automatically, even if it was left open. The code is a bit more involved than that above. Asks user for a place to put the LOG file, if not already entered in CPL text. Reindexing_Daemon (Recursive).CPL: Reindexes databases all the way through a folder branch. If you don t plug in a starting folder, you will be prompted to supply one. Don t forget the last \ at the end of the path! My Additions: RDX(DB).CPL is an example of a quick and dirty variation on Reindexing_Daemon. main() { int db; } db = opendb( "C:\program files\dataflight\concordance\tutorial\andy" ); reindex( db ); closedb( db ); exit(0); DCB_Indexpack.CMD shows how to call a CPL in a batch or command file. "R:\CONCORDANCE\CONCORDANCE.EXE" "R:\Concordance\CPL\DCBname_IndexPack.CPL" And Backup, Too TestBackBatch3.CMD Since Concordance is a database, and databases compress well, you can save backup space by using PKzip or WinRAR for backup. Note the WinRAR syntax here, and watch the line 3 wrap! L: cd "\CLIENTFOLDER\MATTERFOLDER" "C:\Program Files\WinRAR\RAR" a -agyyyymmdd - ilog"c:\clients\clientfolder\logs\backlog.txt" RESULT: Items in Backup.LST in Line2 folder written to RAR in the indicated folder; no log written (because all processes completed OK).

4 Concordance Tip Sheet May DCB_RDX_BACKUP.CMD A more involved process to reindex and copy a list of databases (again, watch for line wraps). :: Go to case and copy to backup location. L: CD "\CASES\MatterName" copy MatterName*.* "\\FS1\Concordance backup\ " /v /y net use X: "\\FS1\Concordance backup" :: Go to Backup location and create Backup list file for WinRAR, then archive by today's date and log errors X: CD " " dir *.* /s /b /a-d > backup.lst "C:\Program Files\WinRAR\RAR" a -y -agyyyymmdd -ilog"\logs\backlog.txt" "\\FS1\Concordance backup\ "L:\CONCORDANCE\CONCORDANCE.EXE" "L:\Concordance\CPL\RDX(DB).CPL" :EXIT EXIT NOTE: All of these are noted AS IS no promises and no indemnifications express or implied. As always, I strongly suggest that you tinker on the COWCOs of the world before you try it out on real production data. Scheduling Tasks Now that you have your scripts and batch files, you ll need a way to set them to run when you are (one hopes) not around. Find a time after normal working hours and before the backup kicks off, or in the alternative, after the backup finishes. Then set it in Windows homely but effective Scheduled Tasks utility. You can find Scheduled Tasks under the START Menu (Accessories System Tools Scheduled Tasks), or listed under Control Panel. Either way, you get a Windows Explorerlike screen with an Add Scheduled Task item that kicks off a wizard. First, select from a list of all available applications the one that you want to use to kick off the process:

5 Concordance Tip Sheet May If you want to kick off a CMD (Command) or BAT (Batch) file a list of commands for Windows to process use the BROWSE button to find it. Let s say we want to use the previously discussed CMD file DCB_RDX_BACKUP. Select it and click NEXT. The next screen lets you specify how often you want to run this task: And next the question is when to kick off the process; remember what I said above about workdays and backup windows: You ll also need a valid login to run the process:

6 Concordance Tip Sheet May When finished, you have the option to click a checkbox to open Advanced Properties (otherwise available from the Scheduled Task s Properties). The Task sheet summarizes the Run line, Start in path, who to Run as (and change password), with checkboxes to Run only if logged on (unchecked by default) and Enabled (checked by default).

7 Concordance Tip Sheet May The Schedule tab summarizes your settings, but allows you to fine tune and even set multiple schedules (see figure above). Under Advanced, you can set End Date and Repeat Task values. The Settings tab allows you to further tune the task to address adverse conditions; you may want to change the default for Stop the task if it runs for to something less than 72 hours (3 days): And lastly, there is a Security tab to keep this item safe from unapproved users. It seems like a lot of cobbling, but these tools provide a lot of flexibility for preserving a simple flat file database. The better you get to know them, and the more they are used, the cleaner and safer your data will be. And that makes everybody happy. The views expressed in this Concordance Tip Sheet are solely the views of the author, and do not necessarily represent the opinion of U.S. Legal Support, Inc Andrew Kass

8 Concordance Tip Sheet May NEWS UPDATES: The next New York Metro Area Concordance Users Group meeting will be held on Wednesday, June 2 nd, 12:00 noon to 1:30pm, at LexisNexis, 125 Park Avenue, 24 th Floor. There will be Web and dial up access, but there will only be pizza if at least 20 people sign up to attend in person. Adam Yarnell will discuss the future of Concordance Classic, your correspondent will outline Concordance 10 upgrade best practices, and there will be tips and tricks galore. RSVP to Margaret Hall (mhall@arraytech.com, or x200) by May 24 th. Go for the gusto, and come on down! A display bug has turned up in Concordance Image v5: the Directory tab under Imagebase Management will do a Replace or a manual edit, but not show the changes in its listing. Changes will appear when Imagebase Management and the Directory tab are re opened. It s on the punch list. We ll be watching for a point release at the end of May; I hope to have it in time to discuss at the User Group meeting. Visit the Concordance Tip Archives (all the way back to October 2005!) at Andy Kass akass@uslegalsupport.com x202 ARRAY TECHNOLOGY GROUP, A U.S. Legal Support, Inc. Company PROVIDING EXPERT SOLUTIONS FROM DISCOVERY TO VERDICT e-discovery Document Collection & Review Litigation Management Litigation Software Training Meet & Confer Advice Court Reporting Services Record Retrieval At Trial Electronic Evidence Presentation Trial Consulting Demonstrative Graphics Courtroom & War Room Equipment Worldox Document Management Deposition & Case Management Services The Dine Group Contract Staffing Best wishes from all of us at Array Technology Group. Copyright 2010 Array Technology Group, A U.S. Legal Support, Inc. Company, 134 W 25th St, New York NY (800) All rights reserved. To update your address or unsubscribe from Array's mailings, please reply to this with CANCEL in the subject line.

Security Andy Kass. Now, Security:

Security Andy Kass. Now, Security: Concordance Tip Sheet June 2011 Security Andy Kass As I ll discuss in next month s installment, you can export the settings from a database to a comma separated value (CSV) file that may be opened and

More information

Concordance Native Viewer Andy Kass

Concordance Native Viewer Andy Kass Concordance Tip Sheet August 2011 Concordance Native Viewer Andy Kass Remember how we ve said, here and elsewhere, that what Concordance really needed most desperately was an electronic document viewer?

More information

V10 Conversion Report Andy Kass

V10 Conversion Report Andy Kass Concordance Tip Sheet October-November 2013 V10 Conversion Report Andy Kass Back in July, we explored Concordance v10 conversion. One thing I touched on but did not discuss in detail was the Conversion

More information

Concordance and Transcripts Andy Kass

Concordance and Transcripts Andy Kass Concordance Tip Sheet June 2010 Concordance and Transcripts Andy Kass We have generally discussed in this series Concordance as used on documents. Whether scanned documents with TIFFs for Concordance Image,

More information

What s Old Is New A Peek At Concordance Andy Kass

What s Old Is New A Peek At Concordance Andy Kass Concordance Tip Sheet February 2014 What s Old Is New A Peek At Concordance 10.20 Andy Kass This is generally where I d report on Legal Tech New York 2014, held this year on February 4-6 at The Hilton

More information

SEARCHING BEST PRACTICES: LARGE DATA SETS

SEARCHING BEST PRACTICES: LARGE DATA SETS Concordance Tip Sheet April 2009 SEARCHING BEST PRACTICES: LARGE DATA SETS In the world of document review, size matters. Back in the days of paper, large firms would carpet bomb opponents with caravans

More information

Welcome to the Datacenter Andy Kass

Welcome to the Datacenter Andy Kass Concordance Tip Sheet March 2013 Welcome to the Datacenter Andy Kass Those of you who have followed this blog from near its inception in 2005 (that is, since before we called it a blog ) can hearken back

More information

E-Discovery Tip Sheet

E-Discovery Tip Sheet E-Discovery Tip Sheet Further Searching Thoughts If you think about it, there is nothing really simple about searching. Computers have afforded us the comfort that, if something has been saved and we use

More information

Zimbra Connector for Microsoft Outlook User Guide. Zimbra Collaboration

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

More information

Aretics T7 Installation Manual

Aretics T7 Installation Manual Aretics T7 Installation Manual 1(24) Aretics T7 Installation Manual This document describes how to manage Aretics T7 in your IT environment. Here you will find information about installing the system,

More information

Concordance Insecurity Andy Kass

Concordance Insecurity Andy Kass Concordance Tip Sheet August 2012 Concordance Insecurity Andy Kass Back in March, I commented on a report by Evan Koblentz in the March 7, 2012 edition of Law Technology News that a security weakness in

More information

Finding What There Is To Find Andy Kass

Finding What There Is To Find Andy Kass Concordance Tip Sheet May 2013 Finding What There Is To Find Andy Kass If you are staying current with your journals, blogs, newsfeeds, group discussions and trade magazines as part of a standard workday,

More information

Upgrade EZ-Pay V6 Guide

Upgrade EZ-Pay V6 Guide Upgrade EZ-Pay V6 Guide Who should use this patch Users who are using versions 3.0.4 of EZ-Pay can upgrade to version 3.1.0 Where to get this patch Download it from http://www.hr21.com.hk/ -> Products->

More information

Valley Library Consortium

Valley Library Consortium On December 13, 2018 the Valley Library Consortium will be upgrading to Horizon 7.5.5. The system will be down from 6:00 AM until the upgrade process is finished. All Horizon staff clients will need to

More information

E-Discovery Tip Sheet

E-Discovery Tip Sheet E-Discovery Tip Sheet LegalTech 2016 Report LegalTech has always suffered from a poor signal-to-noise ratio, but offers the indisputable benefit of bringing together a large swath of the litigation tools

More information

GUARD1 PLUS Manual Version 2.8

GUARD1 PLUS Manual Version 2.8 GUARD1 PLUS Manual Version 2.8 2002 TimeKeeping Systems, Inc. GUARD1 PLUS and THE PIPE are registered trademarks of TimeKeeping Systems, Inc. Table of Contents GUARD1 PLUS... 1 Introduction How to get

More information

Phone Works Kingston Ltd.

Phone Works Kingston Ltd. Phone Works Kingston Ltd. Samsung Voicemail and Telephone Administrator Set-up and Maintenance Office 1-877-541-1112 Local 613-384-5150 Fax 613-384-2648 Email: sales@phoneworks.ca Samsung SVMi Voice Mail

More information

Upgrading Prime Optical

Upgrading Prime Optical CHAPTER 6 You cannot perform a full upgrade from an earlier Cisco Transport Manager (CTM) or Prime Optical release. This section describes how to use the Cisco Prime Optical 9.8 Data Migrator wizard to

More information

Setting UP the UMI-1 with REW

Setting UP the UMI-1 with REW 1 Setting UP the UMI-1 with REW PC based test gear or single purpose device? Is there an easier way? Sure. There are lots of options for a single purpose device that will allow you to make frequency response

More information

Linking Using TM Connect from the Microsoft Outlook Program. Presented by: Jennifer M. Ramovs, Esq. Accellis Technology Group

Linking Using TM Connect from the Microsoft Outlook Program. Presented by: Jennifer M. Ramovs, Esq. Accellis Technology Group Email Linking Using TM Connect from the Microsoft Outlook Program Presented by: Jennifer M. Ramovs, Esq. Accellis Technology Group Email Linking Using TM Connect from the Microsoft Outlook Program Presented

More information

Virtual CD TS 1 Introduction... 3

Virtual CD TS 1 Introduction... 3 Table of Contents Table of Contents Virtual CD TS 1 Introduction... 3 Document Conventions...... 4 What Virtual CD TS Can Do for You...... 5 New Features in Version 10...... 6 Virtual CD TS Licensing......

More information

8x8 Virtual Office Salesforce Call Center Interface User Guide

8x8 Virtual Office Salesforce Call Center Interface User Guide 8x8 Virtual Office User Guide August 2012 The Champion For Business Communications Table of Contents 8x8 Virtual Office Salesforce Call Center App... 3 System Requirements...3 Installation... 4 Uninstalling

More information

Upgrading the Server Software

Upgrading the Server Software APPENDIXB This appendix describes how to upgrade or reinstall the Cisco PAM server software, desktop client software, and Gateway module firmware. Contents Upgrade Notes for Release 1.5.0, page B-2 Obtaining

More information

FIMS V You will need to know all of the following items before customizing the script and setting up the schedule.

FIMS V You will need to know all of the following items before customizing the script and setting up the schedule. Customizing and Using DBbackup.bat Purpose The dbbackup.bat file is provided to allow the customer to schedule a backup of their database using the Windows task scheduler without the need to shut the database

More information

Part 1: Understanding Windows XP Basics

Part 1: Understanding Windows XP Basics 542362 Ch01.qxd 9/18/03 9:54 PM Page 1 Part 1: Understanding Windows XP Basics 1: Starting Up and Logging In 2: Logging Off and Shutting Down 3: Activating Windows 4: Enabling Fast Switching between Users

More information

How To Use My Alternative High

How To Use My Alternative High How To Use My Alternative High Preface Preface I put this together to address the issues and questions that come up all the time in class, especially for newer students. Preface I did this so that I could

More information

Gradience FMLA Tracker Instructions. Summary: Learn how to set up and use Gradience FMLA Tracker Pro/Enterprise. Problem / Goal: Solution:

Gradience FMLA Tracker Instructions. Summary: Learn how to set up and use Gradience FMLA Tracker Pro/Enterprise. Problem / Goal: Solution: Gradience FMLA Tracker Instructions Summary: Learn how to set up and use Gradience FMLA Tracker Pro/Enterprise Knowledgebase ID: Published: Updated: Product: 25-Jul-13 29-May-14 Gradience FMLA Tracker

More information

End User Enterprise File Services Guide

End User Enterprise File Services Guide End User Enterprise File Services Guide This guide has been developed for the purpose of providing insight to users on how to best leverage the Enterprise File Service offerings and to maximize data protection

More information

Instructions for Using the Databases

Instructions for Using the Databases Appendix D Instructions for Using the Databases Two sets of databases have been created for you if you choose to use the Documenting Our Work forms. One set is in Access and one set is in Excel. They are

More information

SymbianGuru.com Your guru in mobile software. Phone Wallet v 3.0. by Symbian Guru.

SymbianGuru.com Your guru in mobile software.  Phone Wallet v 3.0. by Symbian Guru. Phone Wallet v 3.0 by Symbian Guru User Manual Index Index...2 General description...3 How to install Phone Wallet...4 How to register Phone Wallet...4 Working with Phone Wallet...4 How to start...4 General

More information

HP Database and Middleware Automation

HP Database and Middleware Automation HP Database and Middleware Automation For Windows Software Version: 10.10 SQL Server Database Refresh User Guide Document Release Date: June 2013 Software Release Date: June 2013 Legal Notices Warranty

More information

Administrating CaseMap User Guide

Administrating CaseMap User Guide Administrating User Guide, Version 12.1 Optimizing Case Files Replicating and Synchronizing Managing Links to Cases Managing File Viewers Managing the Case Index Managing OCR processing Managing Case Scripts

More information

Installing and Upgrading TSM 6.8

Installing and Upgrading TSM 6.8 Installing and Upgrading TSM 6.8 This guide will take you through the installation of TSM 6.8 or upgrading TSM 6.7 or below to TSM 6.8. If you are installing TSM on Windows 2000, please read the document

More information

MIDIAX ONLINE BACKUP INSTALLATION

MIDIAX ONLINE BACKUP INSTALLATION MIDIAX ONLINE BACKUP INSTALLATION http://midiax.com/backup/onlinebackup.htm Online Backup & Recovery Manager is a tool for configuring automatic file and folder backups for storage in the cloud. After

More information

SETTING UP AND TROUBLESHOOTING A CLOVER DEVICE FOR SPECTRUM

SETTING UP AND TROUBLESHOOTING A CLOVER DEVICE FOR SPECTRUM SETTING UP AND TROUBLESHOOTING A CLOVER DEVICE FOR SPECTRUM This document will guide you through the steps to configure a Clover Device to work with Spectrum. If you have any questions, please contact

More information

MSI Admin Tool User Guide

MSI Admin Tool User Guide MSI Admin Tool User Guide Introduction The MSI Admin Tool is a utility which allows you to pre-configure your Read&Write installation package prior to installation. The tool is primarily designed to be

More information

1. ECI Hosted Clients Installing Release 6.3 for the First Time (ECI Hosted) Upgrading to Release 6.3SP2 (ECI Hosted)

1. ECI Hosted Clients Installing Release 6.3 for the First Time (ECI Hosted) Upgrading to Release 6.3SP2 (ECI Hosted) 1. ECI Hosted Clients........................................................................................... 2 1.1 Installing Release 6.3 for the First Time (ECI Hosted)...........................................................

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

Instructions for Using the Databases

Instructions for Using the Databases Appendix D Instructions for Using the Databases Two sets of databases have been created for you if you choose to use the Documenting Our Work forms. One set is in Access and one set is in Excel. They are

More information

MassTransit Server Installation Guide for Windows

MassTransit Server Installation Guide for Windows MassTransit 6.1.1 Server Installation Guide for Windows November 24, 2009 Group Logic, Inc. 1100 North Glebe Road, Suite 800 Arlington, VA 22201 Phone: 703-528-1555 Fax: 703-528-3296 E-mail: info@grouplogic.com

More information

SecureGuard VMS. SecureGuard All-In-One Quick Install Guide V. 2.5

SecureGuard VMS. SecureGuard All-In-One Quick Install Guide V. 2.5 SecureGuard VMS Quick Install Guide V. 2.5 9/30/2018 2 Table of Contents Purpose... 3 Installation... 3 Setup... 4 Startup & Live View... 26 3 Purpose This is a step-by-step guide to installing the current

More information

Installing K2 BACKUPONLINE Online Backup 1. Choosing Components

Installing K2 BACKUPONLINE Online Backup 1. Choosing Components Installing K2 BACKUPONLINE Online Backup 1. Choosing Components K2 BACKUPONLINE is a suite of applications that offer many options for backup and recovery. K2 BACKUPONLINE offers two choices for the foundation

More information

Archivists Toolkit Internal Database

Archivists Toolkit Internal Database Archivists Toolkit Internal Database The Archivists Toolkit now includes (AT 2.0, update 9 and later), support for an internal database based on HyperSQL 2.0 (HSQLDB). HyperSQL is a small, reliable, high

More information

Administrating TextMap

Administrating TextMap Administrating TextMap User Guide TextMap, Version 9.1 Managing Case Staff Optimizing Case Files Replicating and Syncrhonizing Managing the Case Index Managing OCR Processing Managing Links to Cases Managing

More information

K2 ServerSave Installation and User Guide

K2 ServerSave Installation and User Guide K2 ServerSave Installation and User Guide Chapter 1: Introduction 1.1 What is K2 ServerSave? Welcome to the K2 ServerSave Server Edition User Guide. This guide briefly describes the K2 ServerSave Application

More information

Marketing tools for Check-Inn Setup Guide & Manual. Rev. 1/22/16

Marketing tools for Check-Inn Setup Guide & Manual. Rev. 1/22/16 Marketing tools for Check-Inn Setup Guide & Manual Rev. 1/22/16 2015 Innsoft, Inc. Contents License & warranty... 5 Customer support... 6 Acknowledgement... 6 Introduction... 7 Getting Started... 8 Installation...

More information

Startup Notes for Standard CMD 2015.x Setup

Startup Notes for Standard CMD 2015.x Setup Startup Notes for Standard CMD 2015.x Setup The standard CMD program setup refers to the 2015 version of The Church Membership Directory software, which includes the two phone apps (one for staff use and

More information

Configuring User Profiles and User Groups for Cisco Unified MeetingPlace

Configuring User Profiles and User Groups for Cisco Unified MeetingPlace Configuring User Profiles and User Groups for Cisco Unified MeetingPlace Release 7.1 Revised: April 6, 2011 12:15 pm How to Configure User Groups, page 1 How to Configure User Profiles, page 5 How to Configure

More information

UP L12: Still on SEP 11? Let us show you how to simplify migration to SEP.

UP L12: Still on SEP 11? Let us show you how to simplify migration to SEP. UP L12: Still on SEP 11? Let us show you how to simplify migration to SEP. Description Migrating to Symantec Endpoint Protection (SEP)? Want to upgrade to the latest SEP technology? In this Lab, see how

More information

Switched-On Schoolhouse 2014 User Guide Reports & Application Functions

Switched-On Schoolhouse 2014 User Guide Reports & Application Functions Switched-On Schoolhouse 2014 User Guide Reports & Application Functions MMVI Alpha Omega Publications, Inc. Switched-On Schoolhouse 2014, Switched-On Schoolhouse. Switched-On, and their logos are registered

More information

Network DK2 DESkey Installation Guide

Network DK2 DESkey Installation Guide VenturiOne Getting Started Network DK2 DESkey Installation Guide PD-061.2.306 DESkey Network Server Manual Rev A Applied Cytometry CONTENTS 1 DK2 Network Server Overview... 2 2 DK2 Network Server Installation...

More information

GUARD1 PLUS Documentation. Version TimeKeeping Systems, Inc. GUARD1 PLUS and THE PIPE are registered trademarks

GUARD1 PLUS Documentation. Version TimeKeeping Systems, Inc. GUARD1 PLUS and THE PIPE are registered trademarks GUARD1 PLUS Documentation Version 3.02 2000-2005 TimeKeeping Systems, Inc. GUARD1 PLUS and THE PIPE are registered trademarks i of TimeKeeping Systems, Inc. Table of Contents Welcome to Guard1 Plus...

More information

Akana API Platform: Upgrade Guide

Akana API Platform: Upgrade Guide Akana API Platform: Upgrade Guide Version 8.0 to 8.2 Akana API Platform Upgrade Guide Version 8.0 to 8.2 November, 2016 (update v2) Copyright Copyright 2016 Akana, Inc. All rights reserved. Trademarks

More information

Polarion Trial Installation 17.2

Polarion Trial Installation 17.2 SIEMENS Polarion Trial Installation 17.2 POL002 17.2 Contents About this guide...................................................... 1-1 Before you begin.....................................................

More information

Installing and Upgrading TSM 6.8

Installing and Upgrading TSM 6.8 Installing and Upgrading TSM 6.8 This guide will take you through the installation of TSM 6.8, the workstation install, and applying incremental updates. Installing TSM 1) Obtain a copy of the TSM installation

More information

New Dropbox Users (don t have a Dropbox account set up with your Exeter account)

New Dropbox Users (don t have a Dropbox account set up with your Exeter  account) The setup process will determine if you already have a Dropbox account associated with an Exeter email address, and if so, you'll be given a choice to move those contents to your Phillips Exeter Dropbox

More information

1. Registration on Acutec

1. Registration on Acutec Instruction Manual Instruction Manual KIMETER 2.0 1. Registration on Acutec Enter the site and perform register at www.acutec.com.br. Use a valid email address. This register provides the warranty on your

More information

DesignPro Tools for Xerox Elixir Technologies Corporation. All rights reserved.

DesignPro Tools for Xerox Elixir Technologies Corporation. All rights reserved. Follow the Crop Marks DesignPro Tools for Xerox Getting Started Guide C 1998-2008 Elixir Technologies Corporation. All rights reserved. Elixir Technologies Corporation 721 East Main Street Ventura, CA

More information

SkyPoint Installation & Licensing Guide

SkyPoint Installation & Licensing Guide SkyPoint Installation & Licensing Guide Lenel Systems International, Inc. i 2012 Lenel Systems International, Inc. SkyPoint Installation & Licensing Guide Contents Table of Contents INTRODUCTION... 5

More information

SFSC Website Cheat Sheet

SFSC Website Cheat Sheet SFSC Website Cheat Sheet 1. Albums a. Creating Photo Album.page 2 b. Adding Images to exiting Photo Album..page 9 c. Resizing your images for the albums page 15 2. Events a. Creating an Event page 19 b.

More information

PCLaw Installation and Upgrade Guide

PCLaw Installation and Upgrade Guide PCLaw Installation and Upgrade Guide Version 14.1 2015 LexisNexis. All rights reserved. Copyright and trademark LexisNexis, Lexis, and the Knowledge Burst logo are registered trademarks of Reed Elsevier

More information

Frequently Asked Questions (FAQ)

Frequently Asked Questions (FAQ) Frequently Asked Questions (FAQ) 1. What is Backup Express? Backup Express is an Internet-based service that allows computer users to regularly backup their important data to our secure servers via the

More information

File & ServeXpress. Batch Document Processor User Guide

File & ServeXpress. Batch Document Processor User Guide File & ServeXpress Batch Document Processor User Guide File & ServeXpress Batch Document Processor Table of Contents File & Serve Resources... 3 Batch Document Processor Overview... 4 Creating Your Batch...

More information

Homeowner Portal Tutorial Guide

Homeowner Portal Tutorial Guide WESTWARD Homeowner Portal Tutorial Guide Thank you for choosing Westward Management! The Homeowner Portal is available 24/7 for your convenience. In this guide, we ll show you how to easily complete the

More information

PowerLink Host Data Manager User Guide

PowerLink Host Data Manager User Guide PowerLink Host Data Manager User Guide Last Updated: July 2009 Version: 2.06014 Contents Contents... 2 Introduction... 4 Quick Start... 5 Enable File Monitoring... 7 Enabling Attaché 7 File Monitoring

More information

Quick Start Guide for Windows

Quick Start Guide for Windows for Windows The Eudora 5.1 User Manual for Windows is on the Eudora CD included in the product box. If you prefer a printed and bound copy, you can purchase one from www.eudora.com or call 1-800-2-EUDORA

More information

EMS WEB APP Configuration Guide

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

More information

Moving from FrameMaker to Blaze: Best Practices

Moving from FrameMaker to Blaze: Best Practices Moving from Adobe FrameMaker to MadCap Blaze is easy, although to get the best results you need to do some planning before you start. This document discusses suggestions and issues to make the import result

More information

Learner. Help Guide. Page 1 of 36 Training Partner (Learner Help Guide) Revised 09/16/09

Learner. Help Guide. Page 1 of 36 Training Partner (Learner Help Guide) Revised 09/16/09 Learner Help Guide Page 1 of 36 Table of Contents ACCESS INFORMATION Accessing Training Partner on the Web..... 3 Login to Training Partner........ 4 Add/Change Email Address....... 6 Change Password.........

More information

Startup Notes for CMD 2015.x with Remote Database Server Software for CMD 2015, 2014, and 2013 Users

Startup Notes for CMD 2015.x with Remote Database Server Software for CMD 2015, 2014, and 2013 Users Startup Notes for CMD 2015.x with Remote Database Server Software for CMD 2015, 2014, and 2013 Users This installation must first be done on the actual computer that will be hosting CMD s data! Do not

More information

Troubleshooting. Participants List Displays Multiple Entries for the Same User

Troubleshooting. Participants List Displays Multiple Entries for the Same User Participants List Displays Multiple Entries for the Same User, page 1 Internet Explorer Browser Not Supported, page 2 "404 Page Not Found" Error Encountered, page 2 Cannot Start or Join Meeting, page 2

More information

KVS Enterprise Server Installation Worksheet

KVS Enterprise Server Installation Worksheet KVS Enterprise Server Installation Worksheet (Client/Server and Terminal Services Installations) CDs Required: KVS Enterprise CD KVS Oracle Installation DVD o Oracle Database 10g Release 2 Patch 3 o Oracle

More information

Click EDIT to CHANGE ALBUM SHAPE

Click EDIT to CHANGE ALBUM SHAPE *Blog Header* This lesson might be a little bit more complicated than some of the others, so don t worry if it takes a little practice to get it going! And if you are not into blogging or have no desire

More information

Chapter 3 HCA Options

Chapter 3 HCA Options Chapter 3 HCA Options You control the functions of the Home Control Assistant through various options. These options are accessible though the HCA Application menu HCA Options button. Because the HCA options

More information

SharePoint 2003 to SharePoint Server 2007 RTM In Place Upgrade Demo

SharePoint 2003 to SharePoint Server 2007 RTM In Place Upgrade Demo SharePoint 2003 to SharePoint Server 2007 RTM In Place Upgrade Demo By Steve Smith, MVP SharePoint Portal Server, MCT Combined Knowledge www.combined-knowledge.com steve@combined-knowledge.com Time to

More information

Xton Access Manager GETTING STARTED GUIDE

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

More information

MICROSOFT DYNAMICS GP GENERAL LEDGER YEAR-END CLOSING PROCEDURES

MICROSOFT DYNAMICS GP GENERAL LEDGER YEAR-END CLOSING PROCEDURES GENERAL LEDGER YEAR-END CLOSING PROCEDURES Before you perform year-end closing procedures, you will need to: complete the posting of all entries and adjusting entries to reflect the transactions for the

More information

Bridge Cable User s Guide

Bridge Cable User s Guide Bridge Cable User s Guide Table of Contents Overview -------------------------------------------------------------------- 2 Driver Installation --------------------------------------------------------

More information

When you first launch CrushFTP you may be notified that port 21 is locked. You will be prompted to fix this.

When you first launch CrushFTP you may be notified that port 21 is locked. You will be prompted to fix this. This is a quick start guide. Its intent is to help you get up and running with as little configuration as possible. This walk through should take less than 10 minutes until you are able to login with your

More information

BEIMSWeb Administrator Training Manual

BEIMSWeb Administrator Training Manual Administrator Training Manual Mercury Computer Systems (Aust) Pty Ltd Level 3, 271 William Street, Melbourne VIC 3000 ABN: 75 632 408 132 Tel: +61 3 9602 2255 Fax: +61 3 9602 2595 support@beims.com www.beims.com

More information

CitectSCADA Batch Tutorial

CitectSCADA Batch Tutorial CitectSCADA Batch Tutorial Version 1.0.8 Citect Pty Ltd 3 Fitzsimmons Lane Gordon NSW 2072 Australia www.citect.com 2 DISCLAIMER Citect Pty. Limited makes no representations or warranties with respect

More information

Reliable High-Speed Connection to Publication Database for Synchronization

Reliable High-Speed Connection to Publication Database for Synchronization PCS Axis v1.9 Client/Server New Installation with Replication May 2015 Introduction American Innovations (AI) is pleased to announce version 1.9 of our Pipeline Compliance System Axis software (PCS Axis

More information

Jonas Activity Management Technical Deployment Guide

Jonas Activity Management Technical Deployment Guide Jonas Activity Management Technical Deployment Guide [] Software for Life Jonas Activity Management Technical Deployment Guide, Jonas, Jonas Software, Software for Life, and Gary Jonas Computing are registered

More information

Enterprise Server Edition

Enterprise Server Edition Enterprise Server Edition USER MANUAL For Microsoft Windows Copyright Notice & Proprietary Information Redstor Limited, 2017. All rights reserved. Trademarks - Microsoft, Windows, Microsoft Windows, Microsoft

More information

Lab 11-1 Lab User Profiles and Tracking

Lab 11-1 Lab User Profiles and Tracking In the following lab instructions, you will be setting up groups, users, and passwords to require password-protected login to Kofax Capture modules. Rights will be assigned to the groups and users that

More information

Installation Guide. Cimatron Site Manager 2.0 Release Note

Installation Guide. Cimatron Site Manager 2.0 Release Note Installation Guide Cimatron Site Manager 2.0 Release Note Installation Guide i Table of Contents Introduction... 1 Cimatron Site Manager Components... 2 Installation... 3 Hardware Requirements... 3 Software

More information

HR-Lite Database & Web Service Setup Guide

HR-Lite Database & Web Service Setup Guide HR-Lite Database & Web Service Setup Guide Version: 1.00 HR21 Limited All rights reserved. No part of this document may be reproduced or transmitted in any form or by any means, electronic or mechanical,

More information

Legal Library. In this guide we will review how to download and use our Legal Library tool. Commercial Brokers Association May 2018

Legal Library. In this guide we will review how to download and use our Legal Library tool. Commercial Brokers Association May 2018 Legal Library In this guide we will review how to download and use our Legal Library tool Commercial Brokers Association May 2018 Downloading Legal Library The Legal Library provides both fast and easy

More information

TRS2006 Content Manager Plus (CMP)

TRS2006 Content Manager Plus (CMP) TRS2006 Content Manager Plus (CMP) A Guide to its Use Content Summary: 1) Check your settings 2) Connecting and updating 3) CMP start-up problems. 4) Check and Activate First Class Ticket (FCT) 5) Server

More information

Early Data Analyzer Web User Guide

Early Data Analyzer Web User Guide Early Data Analyzer Web User Guide Early Data Analyzer, Version 1.4 About Early Data Analyzer Web Getting Started Installing Early Data Analyzer Web Opening a Case About the Case Dashboard Filtering Tagging

More information

GETTING STARTED. Installing the System 2000 Hardware. Configuring Your System 2000 Hardware. Troubleshooting. Configuring Your System 2000 Network

GETTING STARTED. Installing the System 2000 Hardware. Configuring Your System 2000 Hardware. Troubleshooting. Configuring Your System 2000 Network SYSTEM 2000 GETTING STARTED Installing the System 2000 Hardware Whether you are upgrade an existing System 2, or this is a brand new installation, there will be some hardware installation involved. We

More information

Oracle 12c Installation Experience Peter Ping Liu June 7, 2017

Oracle 12c Installation Experience Peter Ping Liu June 7, 2017 Import Tips Learned from This Experience: Oracle 12c Installation Experience Peter Ping Liu June 7, 2017 1. Extract the 2 nd zip file into the same folder as the 1 st zip file folder: For example, C:\Users\167583\Downloads\oracle12c\winx64_12102_database_1of2

More information

Events in Oracle Eloqua

Events in Oracle Eloqua A Marketing Geek s Guide to: Events in Oracle Eloqua ABOUT THIS SERIES Oracle Eloqua is the most powerful marketing automation platform on the market. It has the ability to scale to the needs of the largest

More information

INSTALLATION GUIDE. Trimble AllTrak Software

INSTALLATION GUIDE. Trimble AllTrak Software INSTALLATION GUIDE Trimble AllTrak Software INSTALLATION GUIDE Trimble AllTrak software Version 3.5 Revision A_ENG November 2012 F Trimble Navigation Limited Building Construction 5475 Kellenburger Road

More information

This article will walk you through a few examples in which we use ASP to bring java classes together.

This article will walk you through a few examples in which we use ASP to bring java classes together. Using Java classes with ASP ASP is a great language, and you can do an awful lot of really great things with it. However, there are certain things you cannot do with ASP, such as use complex data structures

More information

Sedao Ltd. QuickChange PROject. User Manual for QuickChange PROject version 2.1.5

Sedao Ltd. QuickChange PROject. User Manual for QuickChange PROject version 2.1.5 Sedao Ltd QuickChange PROject User Manual for QuickChange PROject version 2.1.5 Contents What is QuickChange PROject?... 2 Simple Artwork Creation... 5 Creating a project... 7 QuickChange PROject Template

More information

DRoster Employee Scheduler User Manual

DRoster Employee Scheduler User Manual DRoster Employee Scheduler Copyright 2006 Kappix Contents 1 Introduction... 3 2 Installing DRoster... 4 2.1 Installation Requirements... 4 2.2 Installation Modes... 4 2.3 Installation... 5 3 The DRoster

More information

2 Frequently Asked... Questions. 4 How Do I... 1 Working within... Entries

2 Frequently Asked... Questions. 4 How Do I... 1 Working within... Entries Contents I Table of Contents Part I Welcome 6 1 Welcome... 6 2 Frequently Asked... Questions 6 Part II Getting Started 6 1 Getting Started... 6 2... 7 Create a New Database... 7 Open an Existing... Database

More information

Managing the CaseMap Admin Console User Guide

Managing the CaseMap Admin Console User Guide Managing the CaseMap Admin Console User Guide CaseMap Server, Version 2.3 Accessing the CaseMap Admin Console Registering CaseMap Servers Registering SQL Servers Setting Up Roles and Users Managing SQL

More information

2013 EDITION. V-Camp Student. Guide. INTERACTIVE GUIDE Use the buttons shown below to navigate throughout this interactive PDF BACK

2013 EDITION. V-Camp Student. Guide. INTERACTIVE GUIDE Use the buttons shown below to navigate throughout this interactive PDF BACK V-Camp Student Guide INTERACTIVE GUIDE Use the buttons shown below to navigate throughout this interactive PDF BACK 03 EDITION V-Camp Student Guide Table of Contents Unit : Table of Contents...iii How

More information