Importer Scripting Guide for the DPM9600

Size: px
Start display at page:

Download "Importer Scripting Guide for the DPM9600"

Transcription

1 Importer Scripting Guide for the DPM9600 Copyright Winscribe Inc All rights reserved. Publication Date: May 2011

2 Copyright 2011 Winscribe Inc Ltd. All Rights Reserved. Portions of the software described in this document Copyright Microsoft Corporation. All Rights Reserved. Information in this document is subject to change without notice. The software described in this document is furnished under a license agreement or nondisclosure agreement. The software may be used or copied only in accordance with the terms of those agreements. No part of this publication may be reproduced, stored in a retrieval system, or transmitted in any form or any means electronic or mechanical or photocopying and recording for any purpose other than the purchaser's personal use without the written permission of Winscribe Inc. Winscribe is a registered trademark of Winscribe Inc in New Zealand and other countries. Microsoft is a registered trademark, Windows NT and Windows is a trademark of Microsoft Corporation. Dragon NaturallySpeaking is a trademark of Nuance, Inc. and is used here under license. Other brands and their products are the trademarks or registered trademarks of their respective holder and should be noted as such. Winscribe Inc Ltd P.O. Box Takapuna Auckland New Zealand helpdesk@winscribe.com Visit our web page: 2

3 Contents Contents Overview... 4 Create a Source... 5 Create a Destination... 8 Create a Script Create a Rule Display All Information in the Log Window

4 Importer Scripting Guide for the DPM9600 Overview This manual describes the required steps to configure the Philips DPM 9600 (or another mobile dictation device from this series) to enable a file upload onto the Winscribe Server. First, launch the Winscribe Internet Importer (Start Programs Winscribe). The steps required to configure the Philips DPM 9600 are as follows: Step Description 1. Create a Source (see page 5) 2. Create a Destination (see page 8) 3. Create a Script (see page 10) 4. Create a Rule (see page 13) 5. Display All Information in the Log Window (see page 15) 6. Configure Keywords 4

5 Create a Source Create a Source Create a source as follows: 1. Open Winscribe Internet Importer and choose Sources from the navigation panel on the left. 2. Click on the New icon on the menu bar. 3. The Winscribe Importer Source Wizard will be displayed. create a new source. 4. Put in a name for the source, such as DPM9600, (Notes are optional). continue. 5

6 Importer Scripting Guide for the DPM Enter the path to the mobile dictation device (removable device) by clicking on the Explorer icon and browsing to the required drive. continue. 6. Leave this window blank. continue. 7. Input 1000 as the Default author id and 01 as the Default job type id. Leave the Default priority as Normal. continue. 6

7 Create a Source 8. Tick both the Remove files after copy checkbox and the Archive files checkbox. If required, enter the number of days before deleting archived files, by entering 7 (or more) days in the Remove archives after field. Finally click on the Finish button. The Source set up is now complete. 7

8 Importer Scripting Guide for the DPM9600 Create a Destination Create destinations as follows: 1. Open Winscribe Internet Importer and choose Destinations from the navigation panel on the left. 2. Click on the New icon on the menu bar. 3. The Destination Wizard will be displayed. Click on the Next button. 4. Enter a Destination Name such as Winscribe Server and click on the Next button to continue. 8

9 Create a Destination 5. Select the Copy files to a Winscribe Server radio button. continue. 6. Enter the Winscribe URL (for example, ). Leave the default settings in the other fields. continue. 7. Leave the last window blank. Finally click on the Finish button. 9

10 Importer Scripting Guide for the DPM9600 Create a Script Create scripts as follows: 1. Open Winscribe Internet Importer and choose Scripts from the navigation panel on the left. 2. Click on the New icon on the menu bar. 3. The Script Properties window will be displayed. Enter a name for the script (e.g. DPM9600). 4. Copy and paste the following text into the script box: 10 Function OctetToHexStr(arrbytOctet) ' Function to convert OctetString (byte array) to Hex string. ' Code from Richard Mueller, a MS MVP in Scripting and ADSI Dim k OctetToHexStr = "" For k = 1 To LenB(arrbytOctet) OctetToHexStr = OctetToHexStr _ & Right("0" & Hex(AscB(MidB(arrbytOctet, k, 1))), 2) Next End Function Function HexToDec(strHex) ' Function to convert Hexadecimal Strings ("0F") to decimal Dim lngresult Dim intindex Dim strdigit Dim intdigit Dim intvalue lngresult = 0 For intindex = Len(strHex) To 1 Step -1 strdigit = Mid(strHex, intindex, 1) intdigit = InStr(" ABCDEF", UCase(strDigit)) - 1 If intdigit >= 0 Then intvalue = intdigit * (16 ^ (Len(strHex) - intindex)) lngresult = lngresult + intvalue

11 Create a Script Else lngresult = 0 intindex = 0 ' stop the loop End If Next HexToDec = lngresult End Function Function readstringfrombinarystream(binarystream, StartPosition, Length) ' Read Length Bytes from binary stream starting at position StartPosition ' returns Hexadecimal String binarystream.position = StartPosition ByteArray = binarystream.read(length) HexStr = OctetToHexStr(ByteArray) 'MsgBox HexStr readstringfrombinarystream = "" For i = 1 To Len(HexStr) Step 2 strhex = Mid(HexStr, i, 2) strchar = Chr(HexToDec(strHex)) 'MsgBox strhex + ": " + strchar readstringfrombinarystream = readstringfrombinarystream + strchar Next End Function Sub main() ' on error resume next Const adtypebinary = 1 ' Position der Philips-Priorität im Bytestream, 0F==HIGH, alles andere NORMAL Const pospriority = 69 Const posauthorstart = 606 Const posauthorlength = 4 ' Nur den 4stelligen Zahlencode lesen Const posjobtypestart = 666 Const posjobtypelength = 2 ' Position der Philips-"Fallnummer" im ByteStream Const posinputstart = 726 Const posinputlength = 13 ' Defaults strpriority = "NORMAL" strinput = "" strscanner = "" strauthor = "1000" strjobtype = "01" strvoicefilename = objrule.folder & "\" & objrule.filename 'strvoicefilename = "f:\\dss\\a\\ dss" 'MsgBox strvoicefilename Set objfso = CreateObject("Scripting.FileSystemObject") If objfso.fileexists(strvoicefilename) Then Set binarystream = CreateObject("ADODB.Stream") binarystream.type = adtypebinary binarystream.open binarystream.loadfromfile strvoicefilename ' Priorität binarystream.position = pospriority ByteArray = binarystream.read(1) HexStr = OctetToHexStr(ByteArray) 'MsgBox HexStr If HexStr = "0F" Then ' MsgBox "mit Priorität" strpriority = "HIGH" End If strinput = readstringfrombinarystream(binarystream, posinputstart, posinputlength) 'MsgBox strinput strauthor = readstringfrombinarystream(binarystream, posauthorstart, 11

12 Importer Scripting Guide for the DPM9600 posauthorlength) 'MsgBox strauthor strjobtype = readstringfrombinarystream(binarystream, posjobtypestart, posjobtypelength) 'MsgBox strjobtype 'strscanner = readstringfrombinarystream(binarystream, posscannerstart, posscannerlength) 'MsgBox strscanner End Sub binarystream.close End If 'MsgBox strpriority 'objrule.jobpriority = strpriority objrule.authorid = strauthor objrule.jobtype = strjobtype objrule.jobuserfield(0) = strinput objrule.keyuserfield = strinput 5. Click the OK button to save the script and close the window. 12

13 Create a Rule Create a Rule Create a rule as follows: 1. Open Winscribe Internet Importer and choose Rules from the navigation panel on the left. 2. Click on the New icon on the menu bar. 3. The Rule Wizard will be displayed. Click on the Next button. 4. Enter a rule name such as DPM9600. Then click on the Next button. 13

14 Importer Scripting Guide for the DPM Choose the previously created source DPM9600, the destination Winscribe Server and the script DPM9600. Then click on the Next button to continue. 6. Leave the boxes in the next window blank Rule setup is now complete. close the Wizard. 14

15 Display All Information in the Log Window Display All Information in the Log Window Display all information in the Log Window, as follows: 1. To display all information in the Log Window, open the Options window by selecting Options from the Tools menu. 2. Choose All information from the Log Level box. Click on the OK button. Winscribe Internet Importer is now ready for dictation upload. You can close the application by clicking on the button if you have configured it as a Windows Service during the Winscribe Installation. 15

Importer Scripting Guide for the Digta 420

Importer Scripting Guide for the Digta 420 Importer Scripting Guide for the Digta 420 Copyright Winscribe Inc 2011. All rights reserved. Publication Date: May 2011 Copyright 2011 Winscribe Inc Ltd. All Rights Reserved. Portions of the software

More information

Winscribe User Importer

Winscribe User Importer Winscribe User Importer 4.2 Copyright 2013, Winscribe Inc. All rights reserved. Publication Date: August 2013 Copyright 2013 Winscribe Inc. All Rights Reserved. Portions of the software described in this

More information

Winscribe Speech Recognition Reporting

Winscribe Speech Recognition Reporting Winscribe Speech Recognition Reporting 4.1 Copyright 2013, Winscribe Inc. All rights reserved. Publication Date: April 2013 Copyright 2013 Winscribe Inc. All Rights Reserved. Portions of the software described

More information

WinScribe Client User Guide

WinScribe Client User Guide WinScribe Client User Guide Version 4.0 WinScribe Inc Ltd P.O Box 33-178 Level 5, 129 Hurstmere Road Takapuna, Auckland, New Zealand. Phone +64 (09) 486-9010 Fax +64 (09) 486-9001 www.winscribe.com Publication

More information

WinScribe Author User Guide

WinScribe Author User Guide WinScribe Author User Guide Version 4.0 WinScribe Inc Ltd P.O Box 33-178 Level 5, 129 Hurstmere Road Takapuna, Auckland, New Zealand. Phone +64 (09) 486-9010 Fax +64 (09) 486-9001 www.winscribe.com Publication

More information

Server Side Installation Guide

Server Side Installation Guide Winscribe Speech Recognition Server Side Installation Guide Copyright 2013, Winscribe Inc. All rights reserved. Publication Date: October 2013 Copyright 2013 Winscribe Inc. All Rights Reserved. Portions

More information

WinScribe Web Manager Guide

WinScribe Web Manager Guide WinScribe Web Manager Guide Version 4.0 Copyright WinScribe Inc 2009. All rights reserved. Publication Date: July 2009 Copyright 2009 WinScribe Inc Ltd. All Rights Reserved. Portions of the software described

More information

Winscribe MSI and Automatic Script Installation

Winscribe MSI and Automatic Script Installation Winscribe MSI and Automatic Script Installation 4.2 Copyright 2013, Winscribe Inc. All rights reserved. Publication Date: October 2013 Copyright 2013 Winscribe Inc. All Rights Reserved. Portions of the

More information

Winscribe Exporter Administration Guide

Winscribe Exporter Administration Guide Winscribe Exporter Administration Guide 4.2 Copyright 2013, Winscribe Inc. All rights reserved. Publication Date: October 2013 Copyright 2013 Winscribe Inc. All Rights Reserved. Portions of the software

More information

Winscribe Dragon Speech Recognition Guide

Winscribe Dragon Speech Recognition Guide Winscribe Dragon Speech Recognition Guide 4.2 Copyright 2013, Winscribe Inc. All rights reserved. Publication Date: October 2013 Copyright 2013 Winscribe Inc. All Rights Reserved. Portions of the software

More information

Client Typist User Guide

Client Typist User Guide Powered by Version 4 Client Typist User Guide SA Professional Typing Services Online cc Telephone: 011 023 2323 011 887 1056 Cellular: 083 375 0312 Facsimile: 086 570 9651 E-mail: info@saprotype.co.za

More information

GraffixPro Studio Getting Started Guide

GraffixPro Studio Getting Started Guide GraffixPro Studio Getting Started Guide The GraffixPro Studio Software is comprised of a set of linked applications: the Administrator, the Library, and the design software. This guide outlines the procedures

More information

Galileo - Socrates - SNCF. Installation Guide for Windows Xp

Galileo - Socrates - SNCF. Installation Guide for Windows Xp Galileo - Socrates - SNCF Installation Guide for Windows Xp Copyright 1999 Galileo International. All rights reserved. Information in this document is subject to change without notice. The software described

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

FuegoBPM TM Enterprise Process Orchestration Engine Configuration Instructions for a JVM Engine

FuegoBPM TM Enterprise Process Orchestration Engine Configuration Instructions for a JVM Engine FuegoBPM TM Enterprise Process Orchestration Engine Configuration Instructions for a JVM Engine FUEGOBPM System Administration Training PART NO. FEPOECv5.5 Date January 1, 2005 Copyright Fuego, Inc. 2004.

More information

Installation and Upgrade Guide Zend Studio 9.x

Installation and Upgrade Guide Zend Studio 9.x Installation and Upgrade Guide Zend Studio 9.x By Zend Technologies, Inc. www.zend.com Disclaimer The information in this document is subject to change without notice and does not represent a commitment

More information

Installation and Upgrade Guide Zend Studio 9.x

Installation and Upgrade Guide Zend Studio 9.x Installation and Upgrade Guide Zend Studio 9.x By Zend Technologies, Inc. www.zend.com Disclaimer The information in this document is subject to change without notice and does not represent a commitment

More information

Downloading & Installing Audacity

Downloading & Installing Audacity Downloading Audacity 1. Open your web browser. 2. Navigate to the following URL: http://audacity.sourceforge.net/download/ 3. The system displays the Download page for Audacity. 4. Select your operating

More information

Installation Guide Integrating Worksoft Certify with IBM Rational Quality Manager

Installation Guide Integrating Worksoft Certify with IBM Rational Quality Manager Installation Guide Integrating Worksoft Certify with IBM Rational Quality Manager Worksoft, Inc. 15851 Dallas Parkway, Suite 855 Addison, TX 75001 www.worksoft.com 866-836-1773 Integrating Worksoft Certify

More information

KODAK Dental Imaging Software Installation Guide for the KODAK1500 Intraoral Camera

KODAK Dental Imaging Software Installation Guide for the KODAK1500 Intraoral Camera 8H7854-01 KODAK Dental Imaging Software Installation Guide for the KODAK1500 Intraoral Camera Notice Carestream Health, Inc., 2009. No part of this publication may be reproduced, stored in a retrieval

More information

Shoper 9 Tally.ERP 9 Data Bridge

Shoper 9 Tally.ERP 9 Data Bridge The information contained in this document is current as of the date of publication and subject to change. Because Tally must respond to changing market conditions, it should not be interpreted to be a

More information

SafeChain Inc. SafeWire - SoftPro 360 Automation Integration (v1.0)

SafeChain Inc. SafeWire - SoftPro 360 Automation Integration (v1.0) SafeChain Inc. SafeWire - SoftPro 360 Automation Integration (v1.0) August 2018 4800 Falls of Neuse Road, Suite 400 Raleigh, NC 27609 p (800) 848 0143 f (919) 755 8350 www.softprocorp.com Copyright and

More information

Amcom Mobile Connect for Android

Amcom Mobile Connect for Android User Guide to Amcom Mobile Connect for Android Amcom Software, Inc. Copyright AMC 2.3 Document Version 1.5 Last Saved Date: June 30, 2011 Copyright 2003-2011 Amcom Software, Inc. All Rights Reserved. Information

More information

User Manual. Dockit Archiver

User Manual. Dockit Archiver User Manual Dockit Archiver Last Updated: March 2018 Copyright 2018 Vyapin Software Systems Private Ltd. All rights reserved. This document is being furnished by Vyapin Software Systems Private Ltd for

More information

2 Career Agency 4.2 User Guide

2 Career Agency 4.2 User Guide This document was produced by Voloper Creations Inc. 2000 2009 Voloper Creations Inc. All Rights Reserved Brands or product names are trademarks or registered trademarks of their respective holders. The

More information

Aimetis Face Recognition. 1.3 User Guide

Aimetis Face Recognition. 1.3 User Guide Aimetis Face Recognition 3 User Guide Contents Contents Face Recognition... 3 Installation... 4 Requirements... 4 Install Face Recognition... 4 Configuration... 5 Configure Face Recognition... 5 Settings...5

More information

RMH LABEL DESIGNER. Retail Management Hero (RMH)

RMH LABEL DESIGNER. Retail Management Hero (RMH) RMH LABEL DESIGNER Retail Management Hero (RMH) rmhsupport@rrdisti.com www.rmhpos.com Copyright 2016, Retail Realm. All Rights Reserved. RMHDOCLABEL050916 Disclaimer Information in this document, including

More information

Aimetis A10D Thin Client

Aimetis A10D Thin Client Aimetis A10D Thin Client Disclaimers and Legal Information Copyright 2015 Aimetis Inc. All rights reserved. This material is for informational purposes only. AIMETIS MAKES NO WARRANTIES, EXPRESS, IMPLIED

More information

Alien Handheld RTU Guide Version 3.9

Alien Handheld RTU Guide Version 3.9 Alien Handheld RTU Guide Version 3.9 OSSI W228 N727 Westmound Dr Waukesha WI 53186 USA TEL: 262-522-1870 FAX: 262-522-1872 Ossi-usa.com Intelli-Site Security Management Software Alien Handheld RTU Guide

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

Amcom Mobile Connect Select for BlackBerry

Amcom Mobile Connect Select for BlackBerry User Guide for Amcom Mobile Connect Select for BlackBerry Amcom Software, Inc. Copyright Amcom Mobile Connect Select 3.2 Document Version 1.0 Last Saved Date: September 18, 2012 Copyright 2003-2012 Amcom

More information

RMH PRINT LABEL WIZARD

RMH PRINT LABEL WIZARD RMH PRINT LABEL WIZARD Retail Management Hero (RMH) rmhsupport@rrdisti.com www.rmhpos.com Copyright 2016, Retail Realm. All Rights Reserved. RMHDOCLABELWIZARD050916 Disclaimer Information in this document,

More information

Installing Movie Magic on Windows

Installing Movie Magic on Windows Installing Movie Magic on Windows Installing Movie Magic on Windows The following steps will describe how to install Movie Magic on Windows. These same instructions apply to both Movie Magic Budgeting

More information

Aimetis Symphony Mobile Bridge. 2.7 Installation Guide

Aimetis Symphony Mobile Bridge. 2.7 Installation Guide Aimetis Symphony Mobile Bridge 2.7 Installation Guide Contents Contents Introduction...3 Installation... 4 Install the Mobile Bridge... 4 Upgrade the Mobile Bridge...4 Network configuration... 4 Configuration...

More information

Content Matrix. Evaluation Guide. February 12,

Content Matrix. Evaluation Guide. February 12, Content Matrix Evaluation Guide February 12, 2018 www.metalogix.com info@metalogix.com 202.609.9100 Copyright International GmbH, 2002-2018 All rights reserved. No part or section of the contents of this

More information

Version: Shoper 9 LiveUpdate/1.21/March 2011

Version: Shoper 9 LiveUpdate/1.21/March 2011 The information contained in this document is current as of the date of publication and subject to change. Because Tally must respond to changing market conditions, it should not be interpreted to be a

More information

CHECK PROCESSING. A Select Product of Cougar Mountain Software

CHECK PROCESSING. A Select Product of Cougar Mountain Software CHECK PROCESSING A Select Product of Cougar Mountain Software Check Processing Copyright Notification At Cougar Mountain Software, Inc., we strive to produce high-quality software at reasonable prices.

More information

Installing and Configuring Respondus

Installing and Configuring Respondus Installing and Configuring Respondus Intermediate Installing Respondus... 1 Configuring Respondus... 6 Installing Respondus Note: Before installing Respondus, you will need to close any Word Processing

More information

Quick Start Guide. Takes only a few minutes to read. Quickest way to transfer leads into your ACT! database

Quick Start Guide. Takes only a few minutes to read. Quickest way to transfer  leads into your ACT! database Quickest way to transfer email leads into your ACT! database Quick Start Guide Takes only a few minutes to read 1340 S. De Anza Blvd., Suite #106 San Jose, CA 95129 Phone: (408) 872-3103 Fax: (408) 861-9601

More information

WinScribe Installation Guide

WinScribe Installation Guide WinScribe Installation Guide Version 4.0 Copyright WinScribe Inc 2009. All rights reserved. Publication Date: August 2009 Copyright 2009 WinScribe Inc Ltd. All Rights Reserved. Portions of the software

More information

LepideAuditor for SQL Server: Installation Guide. Installation Guide. epideauditor for SQL Server. Lepide Software Private Limited

LepideAuditor for SQL Server: Installation Guide. Installation Guide. epideauditor for SQL Server. Lepide Software Private Limited Installation Guide epideauditor for SQL Server , All Rights Reserved This User Guide and documentation is copyright of Lepide Software Private Limited, with all rights reserved under the copyright laws.

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

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

Getting Started with Tally.Developer 9 Alpha

Getting Started with Tally.Developer 9 Alpha Getting Started with Tally.Developer 9 Alpha The information contained in this document is current as of the date of publication and subject to change. Because Tally must respond to changing market conditions,

More information

Copyright Jetro Platforms, Ltd. All rights reserved.

Copyright Jetro Platforms, Ltd. All rights reserved. Important Notice Copyright 2001 2009 Jetro Platforms, Ltd. All rights reserved. This document is furnished by Jetro Platforms for information purposes only to licensed users of the Jetro COCKPIT product.

More information

Perceptive Process Design Personal - Installation Guide

Perceptive Process Design Personal - Installation Guide Perceptive Process Design Personal - Installation Guide 2013 Lexmark International Technology S.A. Date: 10/28/2013 Version: 3.0.2 Perceptive Software is a trademark of Lexmark International Technology

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

Quickest way to transfer leads into your Microsoft Excel Work Sheet

Quickest way to transfer  leads into your Microsoft Excel Work Sheet Quickest way to transfer email leads into your Microsoft Excel Work Sheet Quick Start Guide Takes only a few minutes to read 1340 S. De Anza Blvd., Suite #106 San Jose, CA 95129 Phone: (408) 872-3103 Fax:

More information

Broadcast +Fax Quick Start Guide

Broadcast  +Fax Quick Start Guide Broadcast Email+Fax Quick Start Guide This guide provides information on setting up and submitting an Email broadcast job. There are 5 steps in creating your job and submitting it for distribution. The

More information

Pulse SCADA/HMI. Pulse Smart Login 1.1

Pulse SCADA/HMI. Pulse Smart Login 1.1 Pulse SCADA/HMI Pulse Smart Login 1.1 September 2014 Copyright The information in this document is subject to change without prior notice and does not represent a commitment on the part of AFCON Control

More information

USB to Serial Converter User s Guide

USB to Serial Converter User s Guide USB to Serial Converter User s Guide Important Note! In order to minimize possible installation problems and/or resource conflicts: Read Me First! About This User s Guide This User s Guide is designed

More information

LiteSpeed for SQL Server 6.1. Configure Log Shipping

LiteSpeed for SQL Server 6.1. Configure Log Shipping LiteSpeed for SQL Server 6.1 Configure Log Shipping 2010 Quest Software, Inc. ALL RIGHTS RESERVED. This guide contains proprietary information protected by copyright. The software described in this guide

More information

c-systems Software, Inc. to KubotaLink Interface

c-systems Software, Inc. to KubotaLink Interface c-systems Software, Inc. to KubotaLink Interface Revision 35.12.1 The software and/or databases described in this document are furnished under a license agreement or nondisclosure agreement. No part of

More information

EasiShare Desktop User Guide

EasiShare Desktop User Guide Copyright 2016 by Inspire-Tech Pte Ltd. All rights reserved. All trademarks or registered trademarks mentioned in this document are properties of their respective owners. No part of this document may be

More information

MSX-Agent Installation Guide. Version

MSX-Agent Installation Guide. Version MSX-Agent Installation Guide Version 1026 Table of Content 1 INTRODUCTION...4 2 CONFIGURING MS EXCHANGE SERVER...4 3 REDDOXX MSX AGENT...20 4 CONFIGURATION OF THE REDDOXX APPLIANCE...25 2 Copyright 2009

More information

Relativity Designer Installation Guide

Relativity Designer Installation Guide Liant Software Corporation Relativity Designer Installation Guide Version 5 Copyright 1994-2003 by Liant Software Corporation. All rights reserved. Printed in U.S.A. No part of this publication may be

More information

User s Manual for Asix 8. Asix.Evo - Asix Mobile. Doc. No ENP8E017 Version:

User s Manual for Asix 8.  Asix.Evo - Asix Mobile. Doc. No ENP8E017 Version: User s Manual for Asix 8 www.asix.com.pl Asix.Evo - Asix Mobile Doc. No ENP8E017 Version: 2015-10-21 Asix Mobile ASKOM and Asix are registered trademarks of ASKOM Spółka z o.o., Gliwice. Other brand names,

More information

Backup & Sync for Android User Guide

Backup & Sync for Android User Guide Backup & Sync for Android User Guide Copyright Copyright 2018 Webroot. All rights reserved. WSA Backup & Sync for Android User Guide Information in this document is subject to change without notice. The

More information

ONVIF Server for Aimetis Symphony. Installation and Usage

ONVIF Server for Aimetis Symphony. Installation and Usage ONVIF Server for Aimetis Symphony Installation and Usage Disclaimers and Legal Information Copyright 2015 Aimetis Corp. All rights reserved. This material is for informational purposes only. Aimetis makes

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

Learning More About NetObjects Matrix Builder 1

Learning More About NetObjects Matrix Builder 1 Learning More About NetObjects Matrix Builder 1 NetObjects Matrix Builder is a service that hosts your Web site, makes it easy to update, and helps you interact with visitors. NetObjects Matrix Builder

More information

MYOB EXO API v1. Release Notes EXO BUSINESS MYOB ENTERPRISE SOLUTIONS

MYOB EXO API v1. Release Notes EXO BUSINESS MYOB ENTERPRISE SOLUTIONS MYOB EXO API v1 Release Notes EXO BUSINESS MYOB ENTERPRISE SOLUTIONS Important Notices This material is copyright. It is intended only for MYOB Enterprise Solutions Business Partners and their customers.

More information

Mobile Connect for USA Mobility Pagers for BlackBerry

Mobile Connect for USA Mobility Pagers for BlackBerry User Guide for Mobile Connect for USA Mobility Pagers for BlackBerry Amcom Software, Inc. Copyright Mobile Connect 3.5 Document Version 1.0 Last Saved Date: September 19, 2013 Copyright 2003-2013 Amcom

More information

PrinterOn Embedded Agent for Samsung Printers and MFPs. Setup Guide for PrinterOn Hosted

PrinterOn Embedded Agent for Samsung Printers and MFPs. Setup Guide for PrinterOn Hosted PrinterOn Embedded Agent for Samsung Printers and MFPs Setup Guide for PrinterOn Hosted Contents Chapter 1: Introduction... 3 Overview: Setting up the PrinterOn Embedded Agent... 4 PrinterOn service prerequisites...

More information

Step by Step SQL Server Alerts and Operator Notifications

Step by Step SQL Server Alerts and  Operator Notifications Step by Step SQL Server Alerts and Email Operator Notifications Hussain Shakir LinkedIn: https://www.linkedin.com/in/mrhussain Twitter: https://twitter.com/hshakir_ms Blog: http://mstechguru.blogspot.ae/

More information

13.3 RELEASE NOTES. Trimble Accubid Classic Software. Introduction. New Features/Modifications. Update Installation Instructions. Product Assistance

13.3 RELEASE NOTES. Trimble Accubid Classic Software. Introduction. New Features/Modifications. Update Installation Instructions. Product Assistance 13.3 RELEASE NOTES Trimble Accubid Classic Software Introduction New Features/Modifications Update Installation Instructions Product Assistance Version 13.3 Revision A_ENG 2 CLASSIC SOFTWARE RELEASE NOTES

More information

Document Converter User Guide. Version Release Date: 19Mar10

Document Converter User Guide. Version Release Date: 19Mar10 Document Converter User Guide Version 10.1.1 Release Date: 19Mar10 Copyright Copyright 1999-2000 Galileo International. All rights reserved. Information in this document is subject to change without notice.

More information

StoragePoint Advanced Installation Guide

StoragePoint Advanced Installation Guide A StoragePoint January 16, 2018 www.metalogix.com info@metalogix.com 202.609.9100 Copyright 2018 Copyright Metalogix International GmbH All rights reserved. No part or section of the contents of this material

More information

ecopy PaperWorks Connector for Microsoft SharePoint Administrator s Guide

ecopy PaperWorks Connector for Microsoft SharePoint Administrator s Guide ecopy PaperWorks Connector for Microsoft SharePoint Administrator s Guide Part Number: 73-00419 (05/2009) Licensing, Copyright, and Trademark Information The information in this document is subject to

More information

CREATE!ARCHIVE AND JDE MEDIA OBJECTS

CREATE!ARCHIVE AND JDE MEDIA OBJECTS T ECHNICAL NOTE Product: Create!archive 6.2.1 Last modified: October 8, 2007 3:09 pm Created by: Development Inside this note: Configure Create!archive with JDE Media Objects CREATE!ARCHIVE AND JDE MEDIA

More information

Data Converter. For 8 Series Mobile Computers. Version 3.02

Data Converter. For 8 Series Mobile Computers. Version 3.02 Data Converter For 8 Series Mobile Computers Version 3.02 Copyright 2010~2014 CIPHERLAB CO., LTD. All rights reserved The software contains proprietary information of CIPHERLAB CO., LTD.; it is provided

More information

Microcat Authorisation Server (MAS ) User Guide

Microcat Authorisation Server (MAS ) User Guide Microcat Authorisation Server (MAS ) User Guide Contents Introduction... 2 Install Microcat Authorisation Server (MAS)... 3 Configure MAS... 4 License Options... 4 Internet Options... 5 Licence Manager...

More information

How to Use imageprograf Firmware Update Tool (Version or later) (Mac OS) Canon Inc.

How to Use imageprograf Firmware Update Tool (Version or later) (Mac OS) Canon Inc. How to Use imageprograf Firmware Update Tool (Version 24.00 or later) (Mac OS) Canon Inc. 1. Introduction 1.1 imageprograf Firmware Update Tool Features The imageprograf Firmware Update Tool (hereinafter

More information

RELEASE NOTES. Trimble Accubid Classic Software. Introduction. New Features/Modifications. Update Installation Instructions. Product Assistance

RELEASE NOTES. Trimble Accubid Classic Software. Introduction. New Features/Modifications. Update Installation Instructions. Product Assistance 13.1.1 RELEASE NOTES Trimble Accubid Classic Software Introduction New Features/Modifications Update Installation Instructions Product Assistance Version 13.1.1 Revision A_ENG Toronto Office Trimble Canada

More information

Nuance Management Center administrator guide

Nuance Management Center administrator guide Dragon speech recognition Enterprise solution Guide Nuance Management Center administrator guide For: Copyright Dragon Professional Group/Dragon Legal Group/Dragon Law Enforcement, v15. Nuance Management

More information

Senstar Thin Client. 3.x User Guide

Senstar Thin Client. 3.x User Guide Senstar Thin Client 3.x User Guide Contents Contents Introduction...4 System requirements... 4 Performance guidelines... 4 Log in to the Web interface...4 Configuration... 5 Configure the Thin Client...5

More information

Cloudera Manager Quick Start Guide

Cloudera Manager Quick Start Guide Cloudera Manager Guide Important Notice (c) 2010-2015 Cloudera, Inc. All rights reserved. Cloudera, the Cloudera logo, Cloudera Impala, and any other product or service names or slogans contained in this

More information

Centrify for Dropbox Deployment Guide

Centrify for Dropbox Deployment Guide CENTRIFY DEPLOYMENT GUIDE Centrify for Dropbox Deployment Guide Abstract Centrify provides mobile device management and single sign-on services that you can trust and count on as a critical component of

More information

Document Converter User Guide Version Release Date: 19Mar10

Document Converter User Guide Version Release Date: 19Mar10 Document Converter User Guide Version 10.1.1 Release Date: 19Mar10 Copyright Copyright 1999-2000 Galileo International. All rights reserved. Information in this document is subject to change without notice.

More information

Batch Monitor User Manual

Batch Monitor User Manual Batch Monitor User Manual You can use the Batch Monitor to view or adjust the status of batches and jobs processed by Compressor or Apple Qmaster. You can also use the Batch Monitor to view detailed history

More information

Upgrading from Call Center Reporting to

Upgrading from Call Center Reporting to Upgrading from Call Center Reporting to Reporting for Call Center Upgrade Document Reporting for Call Center Release 2.2.1xx Document Number: 200-0400-110 Document Status: Standard Document Version: 3.02

More information

Area Access Manager User Guide

Area Access Manager User Guide Area Access Manager User Guide PERPETUAL INNOVATION Lenel OnGuard 2012 Area Access Manager User Guide, product version 6.5 This guide is part 2 of a 2-document suite, item number DOC-800, revision 2.003,

More information

Installation Guide Worksoft Certify

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

More information

NBC-IG Installation Guide. Version 7.2

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

More information

EDEM-RecurDyn Coupling Quick Start Guide

EDEM-RecurDyn Coupling Quick Start Guide EDEM-RecurDyn Coupling Quick Start Guide Copyrights and Trademarks Copyright 2017 DEM Solutions Ltd.. All rights reserved. Information in this document is subject to change without notice. The software

More information

EQUELLA. Moodle User Guide. Version 6.2

EQUELLA. Moodle User Guide. Version 6.2 EQUELLA Moodle User Guide Version 6.2 Document History Document No. Reviewed Finalised Published 1 12/12/2013 13/12/2013 13/12/2013 December 2013 edition. Information in this document may change without

More information

Importing and exporting message scripts

Importing and exporting message scripts Importing and exporting message scripts All rights reserved January 2005 American Tel-A-Systems Inc. 4800 Curtin Drive, McFarland, Wisconsin USA 53558-9424 www.amtelco.com Infinity Intelligent Series message

More information

StoragePoint. Selective Restore Manager Guide. Publication Date: Thursday, December 29, 2016

StoragePoint. Selective Restore Manager Guide. Publication Date: Thursday, December 29, 2016 Storageoint Version Selective Restore Manager Guide ublication Date: Thursday, December 29, 2016 All Rights Reserved. This software is protected by copyright law and international treaties. Unauthorized

More information

Installation & Activation Guide. Lepide Exchange Recovery Manager

Installation & Activation Guide. Lepide Exchange Recovery Manager Lepide Exchange Recovery Manager Lepide Software Private Limited, All Rights Reserved This User Guide and documentation is copyright of Lepide Software Private Limited, with all rights reserved under the

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

ProSafe Plus Switch Utility

ProSafe Plus Switch Utility ProSafe Plus Switch Utility User Guide 350 East Plumeria Drive San Jose, CA 95134 USA May 2012 202-10524-04 2012 NETGEAR, Inc. All rights reserved No part of this publication maybe reproduced, transmitted,

More information

Sophos Anti-Virus standalone startup guide. For Windows and Mac OS X

Sophos Anti-Virus standalone startup guide. For Windows and Mac OS X Sophos Anti-Virus standalone startup guide For Windows and Mac OS X Document date: June 2007 Contents 1 What you need for installation...4 2 Installing Sophos Anti-Virus for Windows...5 3 Installing Sophos

More information

Galileo Desktop SM 2.1. Installation Guide

Galileo Desktop SM 2.1. Installation Guide Galileo Desktop SM 2.1 Installation Guide Galileo Desktop SM 2.0 Installation Guide, January 2007 i 2008 Galileo International, L.L.C. All rights reserved. Information in this document is subject to change

More information

Aimetis Symphony. VE510 Metadata Analytic Setup

Aimetis Symphony. VE510 Metadata Analytic Setup Aimetis Symphony VE510 Metadata Analytic Setup Disclaimers and Legal Information Copyright 2015 Aimetis Inc. All rights reserved. This material is for informational purposes only. AIMETIS MAKES NO WARRANTIES,

More information

PrinterOn Hosted Service. Printing Guide and Frequently Asked Questions

PrinterOn Hosted Service. Printing Guide and Frequently Asked Questions PrinterOn Hosted Service Printing Guide and Frequently Asked Questions Table of Contents 1 How to Print with PrinterOn Hosted Service... 3 1.1 Email Printing... 3 1.2 Web Portal Printing... 3 1.3 Mobile

More information

VIN Service: Multiple Connections. Mac

VIN Service: Multiple Connections. Mac VIN Service: Multiple Connections Mac Version 2.0 Release 1.2.13.0 April 2016 Copyright 2016 iwebgate. All Rights Reserved. No part of this publication may be reproduced, transmitted, transcribed, stored

More information

Quest Migration Manager for Exchange Resource Kit User Guide

Quest Migration Manager for Exchange Resource Kit User Guide Quest Migration Manager for Exchange 8.14 Resource Kit User Guide 2017 Quest Software Inc. ALL RIGHTS RESERVED. This guide contains proprietary information protected by copyright. The software described

More information

CaseWare Working Papers. BizSuite Getting Results

CaseWare Working Papers. BizSuite Getting Results CaseWare Working Papers Copyright CQS Technology Holdings All rights reserved No part of this manual may be reproduced or transmitted in any form by any means, electronic or mechanical, including photocopying

More information

Galileo Print Manager Installation Guide

Galileo Print Manager Installation Guide Galileo Print Manager Installation Guide 24 November 2003 Copyright 2003 Galileo International. All rights reserved. Information in this document is subject to change without notice. The software described

More information

Import File Specifications

Import File Specifications ScotiaConnect Wire Payments Trademark of The Bank of Nova Scotia. The Bank of Nova Scotia, 2003. No part of this document may be reproduced or transmitted in any form or by any means, electronic or mechanical,

More information