Documentation Interface for File System

Size: px
Start display at page:

Download "Documentation Interface for File System"

Transcription

1 Documentation Interface for File System Dragonfly Version 6 User-friendly Cross-platform Industry 4.0 Web Viewer Smartphone-App Free Hotline Indi.Systems GmbH Universitätsallee 23 D Bremen Tel Fax info@indi-systems.de

2 Table of contents What is the QuickHMI Interface for File system?... 3 How to prepare the interface?... 4 For what purpose I can use this interface?... 5 Settings... 6 Data archiving... 8 Current data image... 9 Structure text file data image... 9 Structure XML file data image Encryption and decryption Do you have any questions?

3 What is the QuickHMI Interface for File system? The interface for File system gives QuickHMI developer an easy way to provide an interface for an existing Oracle database with following features: Data-Archiving Every QuickHMI incoming datas form devices will be written in Files day by day. The maximum size and the maximum count of records are adjustable. Data-Image Complete Image of variables their current value and timestamp of last change. One File for each data source. Optional encrypting Incoming data will be encrypted. Tools for an easy decrypting are added. Automatically data reorganization (optional) For example: A self-created application could get access to the data of the QuickHMI and connected devices. It could use the data for analyses. It is possible to encrypt all data with a 256-Bit AES-cryption, for best protection. Only user/application who knows the decryption key have access tot he data. 3

4 How to prepare the interface? You have to create an available folder in you file system. The folder should be exists, if it s not the system try to create it. The process needs read, write and delete access to this folder. Are these rights missing it could course malfunctions. Particularly the delete rights are needed to reorganize the old data. This could course a full disk or a windows crash. The same could happened if external processes blocking the tables permanently. Check if the target system has enough free disk space. The rights have to be exist for the current windows user while development, therefore the file can be written and read while Editors runtime. Additionally these rights are necessary for the production environment for the user which runs the data source service. Important: The archiving to the file system high performed and tested with merchantable hardware and 1000 variable changes per 100 milliseconds. If the amount of data from the QuickHMI much higher and the data cannot be written to the archive, the data will be held on RAM by the system and write the data back-to-back. If the data reaches more than data records for each data source, new data will deleted. This problem could appear while hardware working to capacity or missing resources (e.g. virtual servers). Before using check the performance of your target Oracle database system. It is also necessary that the target system has enough (at least 20 GB) free disk space. This always depends on the incoming data and the time of archiving. 4

5 For what purpose I can use this interface? There are countless possibilities of using the interface. Every time if you need an outside access to the QuickHMI or connected devices (e.g. PLCs or modbus devices) you can use this interface. You can use the data for analyses, charting, reporting or just to archiving. For example: A self-created application could get access to the data of the QuickHMI and connected devices. It could use the data for analyses. You do not have to learn different scripting languages, just use your favorite programming language. 5

6 Settings The following QuickHMI File system interface settings are available: 1. Target path 2. Archive function on/off 3. (Option) max count data records within target table. While reaching this count the old data records will be deleted. 4. (Option) max age of files indication in hours. While reaching the age range the old files will be deleted. 5. Maximum size of each archive file indication in MB. If the file reaches the size, a new file will be created with next sequence number. If you do not set a max size the file will reach a max size of 2 GB. 6. Automatic reorganize the archive on/off. If deactivated, the old data records stay in the table. The user has to delete the old data by themselves. 7. Creating a variable image on/off optionally as flat- or XML format. 8. (Optional) set a password for encrypting. If you don t set a password the file won t be encrypted. Please handle this password with care. Do not give this password to other users. 6

7 You can find the options for archiving in the Data sources window accessible through the Project Explorer. By creating or editing a data source the options will be opened by pressing the External logging button. In the opened window you can select File by activate the checkbox and choose the path where the file should be saved. Determine if an image should be created, set the different settings and define a password. Click OK to continue. 7

8 Data archiving By the data archiving all incoming data changes will be logged in the archive table. You can use this data for any purposes. Files will be created in this format: <date>_<sequence 5-digit>_<datasource name>.log e.g _00001_DataSource1.log Optional encrypted archive files have the same name with the ending *.logx If the file reaches the set max size or 2 GB, a new file will be created with next sequence number. The fields in the file are separated with a semicolon. The first row gives you the column names. Following information will be written: 1. Timestamp incl milliseconds 2. Sender (Name of data source) 3. Data type 4. Name of Variable 5. Current Value 6. Quality (GOOD if QuickHMI-connection to target device regulatory works, BAD if problems appear (e.g. Timeouts) 8

9 Current data image The data image provides the QuickHMI variables and their current value for external applications there are two options for the data image format. Text file or XML-file. Structure text file data image Files will be created in this format: <Data source name>.dat e.g. DataSource1.dat Optional encrypted archive files have the same name with the ending *.datx The fields in the file are separated with a semicolon. The first row gives you the column names. It exists one row in the file for each variable. Following information will be written: 1. Timestamp incl milliseconds 2. Sender (Name of data source) 3. Data type 4. Name of Variable 5. Current Value 6. Quality (GOOD if QuickHMI-connection to target device regulatory works, BAD if problems appear (e.g. Timeouts) 9

10 Structure XML file data image Files will be created in this format: <Data source name>.xml e.g. DataSource1.xml Optional encrypted archive files have the same name with the same ending *.xml It exists one row in the file for each variable. Following information will be written: 1. Flag if file is encrypted 2. Timestamp incl milliseconds 3. Sender (Name of data source) 4. Data type 5. Name of Variable 6. Current Value 7. Quality (GOOD if QuickHMI-connection to target device regulatory works, BAD if problems appear (e.g. Timeouts) For encrypted files, the XML format has remained preserved. Only the field contents are encrypted. 10

11 Encryption and decryption To provide optimal data security, the QuickHMI file interfaces are equipped with optional encryption. Encryption is carried out directly if you have set up the necessary settings within the data sources. Please note: You must assign a password for encryption. Please keep this password up! If it is lost, the encrypted files can no longer be opened We can t help in this case. The encryption routines require CPU resources! Plan slightly higher computing power. Especially when you very many variables are changed in very short intervals. However, you can test the load in the editor during the runtime mode. Your QuickHMI system includes a command line program for encryption and decryption. You can find it under [QuickHMI-Home] /qhmisecu.exe within the editor or server installation. You can carry out the following actions: 1. Log files in logx-format or decrypt image files in the datx format To do this, open the program qhmisecu.exe with the following parameters: qhmisecu.exe -d <source file> <target file> <your password> The decrypted file will be created. 2. Decode image files in xml format Open the program qhmisecu.exe with the following parameters: qhmisecu.exe -x <source file> <target file> <your password> The decrypted file will be created. 11

12 Do you have any questions? If you have questions about our product QuickHMI, please call us on our free hotline or send us an . Free hotline: We will process your request promptly or respond to you directly. 12

Documentation QuickHMI: First Steps

Documentation QuickHMI: First Steps Documentation QuickHMI: First Steps Dragonfly Version 6 User-friendly Cross-platform Industry 4.0 Web Viewer Smartphone-App Free Hotline Indi.Systems GmbH Universitätsallee 23 D-28359 Bremen Tel. + 49

More information

Documentation QuickHMI Database Data Source

Documentation QuickHMI Database Data Source Documentation QuickHMI Database Data Source Version 5.2 Indi.Systems GmbH Universitätsallee 23 D-28359 Bremen info@indi-systems.de Tel. + 49 421-989703-30 Fax + 49 421-989703-39 Table of contents 1 Introduction...

More information

Documentation QuickHMI First Steps

Documentation QuickHMI First Steps Documentation QuickHMI First Steps Version 5.1 Indi.Systems GmbH Universitätsallee 23 D-28359 Bremen info@indi-systems.de Tel. + 49 421-989703-30 Fax + 49 421-989703-39 Table of contents 1 Introduction...

More information

User-friendly Cross-platform Industry 4.0 Web Viewer Smartphone-App Free Hotline

User-friendly Cross-platform Industry 4.0 Web Viewer Smartphone-App Free Hotline Documentation Dragonfly QuickHMI with Raspberry Pi Version 6.0 User-friendly Cross-platform Industry 4.0 Web Viewer Smartphone-App Free Hotline Indi.Systems GmbH Universitätsallee 23 D-28359 Bremen Tel.

More information

Notes for using QuickHMI with Logo!-controllers

Notes for using QuickHMI with Logo!-controllers Notes for using QuickHMI with Logo!-controllers Indi.Systems GmbH Universitätsallee 23 D-28359 Bremen info@indi-systems.de Tel + 49 421-989703-30 Fax + 49 421-989703-39 Table of contents About this document...

More information

MANUAL. QuickHMI Software. Modern SCADA/HMI visualization

MANUAL. QuickHMI Software. Modern SCADA/HMI visualization MANUAL QuickHMI Software Modern SCADA/HMI visualization Secure and resource-friendly client/server architecture Platform independent Android App available Secure encrypted communication QuickHMI-Viewer

More information

Oracle MES/MOC Connector Help 2009 Kepware Technologies

Oracle MES/MOC Connector Help 2009 Kepware Technologies Oracle MES/MOC Connector Help 2009 Kepware Technologies 1 Table of Contents 1 Getting Started... 2 Help Contents... 2 Overview... 2 2 Initial Setup Considerations... 2 Initial Setup Considerations... 2

More information

PreTect Analysis Documentation

PreTect Analysis Documentation PreTect Analysis Documentation Table of Contents 1 Introduction 2 1.1 About this Document 2 1.2 Author and Copyright 2 2 Program Concepts 3 2.1 Program Purpose and Scope 3 2.2 Usage Data Files 4 2.3 Settings

More information

User Manual v Using DB2SMS with Web Studio. Updated 6th Jun Description:

User Manual v Using DB2SMS with Web Studio. Updated 6th Jun Description: User Manual v.1.01 Using DB2SMS with Web Studio Updated 6th Jun 2008 Description: This manual describes how to use DB2SMS with Indusoft Web Studio (IWS) SCADA. DB2SMS program is GSM/SMS driver, which allows

More information

Steganos Safe Professional th June 2007

Steganos Safe Professional th June 2007 Steganos Safe Professional 2007 26 th June 2007 Contents Page Introduction 4 Installation and Deployment 5 Managing and Policies 6 Recovery Using EDK 8 Setting Up Network Shares 8 Creating A Key Pair 8

More information

BUSINESS CLOUD FAX By Northland Communications

BUSINESS CLOUD FAX By Northland Communications BUSINESS CLOUD FAX By Northland Communications QUICK REFERENCE GUIDE TABLE OF CONTENTS LOGGING INTO THE WEB CLIENT... CREATING + SENDING... HOW TO CREATE + SEND A FAX TO A WEB CLIENT. ADDING ATTACHMENTS...

More information

In this tutorial we will discuss different options available in the Options tab in EMCO Network Inventory 4.x.

In this tutorial we will discuss different options available in the Options tab in EMCO Network Inventory 4.x. In this tutorial we will discuss different options available in the Options tab in EMCO Network Inventory 4.x. Include Options Tab Basic Info: This option enables you to configure EMCO Network Inventory

More information

CTIMUX for Panasonic TSP

CTIMUX for Panasonic TSP CTIMUX for Panasonic TSP Installation Manual Version 1.0 3300 N. Main Street, Suite D, Anderson, SC 29621-4128 +1 (864) 642-6103 www.poltys.com 2013 All rights reserved. The information contained in this

More information

Filtering - Zimbra

Filtering  - Zimbra Filtering Email - Zimbra Email filtering allows you to definite rules to manage incoming email. For instance, you may apply a filter on incoming email to route particular emails into folders or delete

More information

User Manual. TSDiag+ Part Number: Version: 5. Date: TSDiag

User Manual. TSDiag+ Part Number: Version: 5. Date: TSDiag User Manual TSDiag+ Part Number: 80860.691 Version: 5 Date: 2011-05-27 Valid for: TSwin.net TSDiag+ 1.5.2 TSDiag+ Version Date Modifications 1 2006-02-13 First edition 2 2006-06-01 New Layout, product

More information

AccessMail Users Manual for NJMLS members Rev 6

AccessMail Users Manual for NJMLS members Rev 6 AccessMail User Manual - Page 1 AccessMail Users Manual for NJMLS members Rev 6 Users Guide AccessMail User Manual - Page 2 Table of Contents The Main Menu...4 Get Messages...5 New Message...9 Search...11

More information

Data Exchange 3. The easy way to turn your data into valuable information. VERSION 3.0

Data Exchange 3. The easy way to turn your data into valuable information. VERSION 3.0 Data Exchange 3 The easy way to turn your data into valuable information. VERSION 3.0 12-21-2017 DATA EXCHANGE 3 1 TABLE OF CONTENTS SECTION 1. Overview... 6 1.1. MAIN GOALS...6 1.2. How it Works...6 Data

More information

Operating guide. OPC server for ECL Comfort 310. Table of Contents

Operating guide. OPC server for ECL Comfort 310. Table of Contents Operating guide OPC server for ECL Comfort 310 Table of Contents 1. Introduction to Danfoss ECL OPC Server... 2 2. Configuring databases... 6 3. Exporting configuration data... 7 4. Importing data from

More information

Table of Contents. Routine Access User Manual

Table of Contents. Routine Access User Manual Table of Contents Routine Access User Manual Routine Access to Secure Server... 2 Eraser Settings (Suggested One-time set up)... 6 Unencrypt a Folder Within Your Project... 10 Encrypting Data Using 7zip:

More information

GWCommander V3.x. Administrators Guide

GWCommander V3.x. Administrators Guide GWCommander V3.x Administrators Guide OpenNet Software Ltd., January 2006 OpenNet Software Ltd. GWCommander v.3 Admin Guide, Page 1 Table of Contents 1. Introduction...2 1.1 Requirements...3 2. Setting

More information

Quick Start Guide. For ZWCAD, ZWCAD Mechanical and ZWCAD Architecture. Create Amazing Things. ZWCAD Software Co., Ltd.

Quick Start Guide. For ZWCAD, ZWCAD Mechanical and ZWCAD Architecture. Create Amazing Things.   ZWCAD Software Co., Ltd. Create Amazing Things Quick Start Guide For ZWCAD, ZWCAD Mechanical and ZWCAD Architecture ZWCAD Software Co., Ltd. Add: 32/F, Pearl River Tower, No.1, Zhujiang West Road, Tianhe District, Guangzhou 10623,

More information

GOBENCH IQ Release v

GOBENCH IQ Release v GOBENCH IQ Release v1.2.3.3 2018-06-11 New Add-Ons / Features / Enhancements in GOBENCH IQ v1.2.3.3 GOBENCH IQ v1.2.3.3 contains several new features and enhancements ** New version of the comparison Excel

More information

Trend Micro Incorporated reserves the right to make changes to this document and to the products described herein without notice.

Trend Micro Incorporated reserves the right to make changes to this document and to the products described herein without notice. Trend Micro Incorporated reserves the right to make changes to this document and to the products described herein without notice. Before installing and using the software, please review the readme file

More information

2016. All rights reserved. ecconnect V.11 User Guide

2016. All rights reserved. ecconnect V.11 User Guide 2016. All rights reserved. ecconnect V.11 User Guide Copyright and trademarks ecconnect User Guide Copyright and trademarks The information in this document is subject to change without notice. This document

More information

1. Introduction Features Operating Environment Machine Data...6

1. Introduction Features Operating Environment Machine Data...6 1 Table of Contents 1. Introduction...3 1.1 Features... 4 1.2 Operating Environment... 5 2. Machine Data...6 2.1 Fetching New Machines... 8 2.2 Adding New Machines... 10 2.3 Updating Scan Data... 12 2.4

More information

CryptoEx: Applications for Encryption and Digital Signature

CryptoEx: Applications for Encryption and Digital Signature CryptoEx: Applications for Encryption and Digital Signature CryptoEx Products: Overview CryptoEx Outlook CryptoEx Notes CryptoEx Volume CryptoEx Pocket CryptoEx File CryptoEx Office CryptoEx Business Server

More information

Replay NOVA Manager Manual

Replay NOVA Manager Manual Replay NOVA Manager Manual Table of Contents Replay NOVA 3 Minimum System Requirements 3 Before Installing Replay NOVA 4 Installation 5 Setting Up Replay NOVA 10 Using 26 Setup ReplayFiles Folder 26 Schedule

More information

Live Viewing Using Remote Applications

Live Viewing Using Remote Applications CHAPTER 8 Live Viewing Using Remote Applications The system is supplied with three remote applications. Remote View System IP Multicast System Remote View Remote View is used to remotely monitor live videos

More information

Instruction pcvisit RemoteSupport

Instruction pcvisit RemoteSupport Instruction pcvisit RemoteSupport version: 15.01.2014 The pcvisit product for online remote service and working from the office at home. The following instructions show you how to use your pcvisit product

More information

Communication. Identity

Communication. Identity Mailock User guide OUR MISSION STATEMENT To Secure your Communication Data Identity Contents Introducing Mailock... 5 Business Users... 5 What do you need to run Mailock?... 5 In a browser... 5 On a mobile

More information

Superview INSTRUCTIONS. Version 2.0x

Superview INSTRUCTIONS. Version 2.0x INSTRUCTIONS Version 2.0x INDEX INDEX... 1 INTRODUCTION... 2 INSTALLING SUPERVIEW... 3 SYSTEM REQUIREMENTS... 3 INSTALLATION PROCEDURES... 3 FIRST STEPS... 4 CREATING A SIMPLE APPLICATION... 4 Start...

More information

Revise Quick Start Guide

Revise Quick Start Guide page 1 / 12 Revise Quick Start Guide The quick start guide is provided to help you get the Revise energy monitoring system up and running as quickly as possible. Installing components To install components

More information

GE Grid Solutions. Instruction Manual. GE Energy Aggregator revision: 4.2 GE publication code: GEK Manual Part Number: A1

GE Grid Solutions. Instruction Manual. GE Energy Aggregator revision: 4.2 GE publication code: GEK Manual Part Number: A1 GE Grid Solutions Instruction Manual GE Energy Aggregator revision: 4.2 GE publication code: GEK-119642 Manual Part Number: 1601-0501-A1 1601-0501-A1 Copyright 2017 GE Multilin Inc. All rights reserved.

More information

VISU+ BEST PRACTICE. Tips for using the Visu+ software. Application note 8212_en_01. 1 Description

VISU+ BEST PRACTICE. Tips for using the Visu+ software. Application note 8212_en_01. 1 Description Tips for using the Visu+ software Application note 8212_en_01 PHOENIX CONTACT 2013-10-21 1 Description This document provides support in finding the optimum hardware platform (Windows PC with Win32 or

More information

Wireless M-Bus Studio

Wireless M-Bus Studio Document ID: 4100/6404/0053 IMST GmbH Carl-Friedrich-Gauß-Str. 2-4 47475 KAMP-LINTFORT GERMANY General Information Document Information File name WMBus_StudioManual.docx Created 2011-05-02 Total pages

More information

MX-AOPC UA Server User s Manual

MX-AOPC UA Server User s Manual User s Manual Edition 3.1, November 2016 www.moxa.com/product 2016 Moxa Inc. All rights reserved. User s Manual The software described in this manual is furnished under a license agreement and may be used

More information

Switching to Sheets from Microsoft Excel Learning Center gsuite.google.com/learning-center

Switching to Sheets from Microsoft Excel Learning Center gsuite.google.com/learning-center Switching to Sheets from Microsoft Excel 2010 Learning Center gsuite.google.com/learning-center Welcome to Sheets Now that you've switched from Microsoft Excel to G Suite, learn how to use Google Sheets

More information

Data Logger Help Database Logging for OPC Servers

Data Logger Help Database Logging for OPC Servers Database Logging for OPC Servers Version 9 DATA LOGGER HELP For Cyberlogic OPC Servers Version 9 Copyright 2011-2017, Cyberlogic Technologies Inc. All rights reserved. This document and its contents are

More information

Solution Composer. User's Guide

Solution Composer. User's Guide Solution Composer User's Guide January 2014 www.lexmark.com Contents 2 Contents Overview...4 Understanding the basics...4 System recommendations...5 Building custom solutions...6 Getting started...6 Step

More information

IEC61850 communication solution WinCC Channel

IEC61850 communication solution WinCC Channel IEC61850 communication solution WinCC Channel Documentation Date: 15.04.2015 Version: 2.03 IEC 61850 communication solution Page 1 of 33 Change history Datum Version Author Changes 19.11.2010 00.1 Mr.

More information

RTG Survey. Expertise. Software. Solutions. User manual. Date: July 21, 2017 Version: 1.5. RTG Portale GmbH Karl-Zahn-Straße Dortmund Germany

RTG Survey. Expertise. Software. Solutions. User manual. Date: July 21, 2017 Version: 1.5. RTG Portale GmbH Karl-Zahn-Straße Dortmund Germany Expertise. Software. Solutions. RTG Survey User manual Date: July 21, 2017 Version: 1.5 RTG Portale GmbH Karl-Zahn-Straße 11 44141 Dortmund Germany Tel: +49(0) 231-226186-60 Fax: +49(0) 231-226186-69 E-Mail:

More information

CEPTEST Server Version

CEPTEST Server Version CEPTEST Server Version The CEPTEST Server Version is designed for testing ep2 Servers with mass data and stress tests. It is intended to be used by acquirers and other server operators to simulate high

More information

Trend Micro Incorporated reserves the right to make changes to this document and to the products described herein without notice.

Trend Micro Incorporated reserves the right to make changes to this document and to the products described herein without notice. Trend Micro Incorporated reserves the right to make changes to this document and to the products described herein without notice. Before installing and using the software, please review the readme file

More information

Online Backup Client User Manual

Online Backup Client User Manual Online Backup Client User Manual Software version 3.21 For Linux distributions October 2010 Version 2.0 Disclaimer This document is compiled with the greatest possible care. However, errors might have

More information

Windows user guide for version 3.3

Windows user guide for version 3.3 1 Windows user guide for version 3.3 2 Contents 1. Installation...4 1.1. How to install BABEL on your Windows desktop...4 2. Getting started...5 2.1. First run...5 2.2. Password setup...5 2.3. Key import...5

More information

Report Viewer Version 8.1 Getting Started Guide

Report Viewer Version 8.1 Getting Started Guide Report Viewer Version 8.1 Getting Started Guide Entire Contents Copyright 1988-2017, CyberMetrics Corporation All Rights Reserved Worldwide. GTLRV8.1-11292017 U.S. GOVERNMENT RESTRICTED RIGHTS This software

More information

Operation Manual. for the. Data Logging Software. Version 7.1. (Isoft.xls)

Operation Manual. for the. Data Logging Software. Version 7.1. (Isoft.xls) for the Data Logging Software Version 7.1 (Isoft.xls) TetraTec Instruments GmbH 1 GENERAL HINTS 1.1 Typographical Conventions Displayment Means marks a work procedure, which you must implement references

More information

Windows 2000 / XP / Vista User Guide

Windows 2000 / XP / Vista User Guide Windows 2000 / XP / Vista User Guide Version 5.5.1.0 September 2008 Backup Island v5.5 Copyright Notice The use and copying of this product is subject to a license agreement. Any other use is prohibited.

More information

Online Backup Client User Manual

Online Backup Client User Manual Software version 3.21 For Mac OS X September 2010 Version 2.0 Disclaimer This document is compiled with the greatest possible care. However, errors might have been introduced caused by human mistakes or

More information

Wireless M-Bus Suite for Panasonic Evaluation Boards. Quick Start Guide

Wireless M-Bus Suite for Panasonic Evaluation Boards. Quick Start Guide Wireless M-Bus Suite for Panasonic Evaluation Boards January 16, 2012 page 2 Document History 1.0 2011-07-20 First release dj 1.1 2011-07-25 Review dj 1.2 2011-07-27 Quick start changed dj 1.3 2011-09-13

More information

Updating Simplify3D from V 3.x to V 4

Updating Simplify3D from V 3.x to V 4 Updating Simplify3D from V 3.x to V 4 Revision 1 8/18/2017 1. Introduction Simplify3D V4 is a major update that introduces some useful new features and capabilities. However, it also introduces some compatibility

More information

Trend Micro Incorporated reserves the right to make changes to this document and to the products described herein without notice.

Trend Micro Incorporated reserves the right to make changes to this document and to the products described herein without notice. Trend Micro Incorporated reserves the right to make changes to this document and to the products described herein without notice. Before installing and using the software, please review the readme file

More information

epact2 User Guide epact2 Essentials Guide epact2 - Essentials Master Guide v3

epact2 User Guide epact2 Essentials Guide epact2 - Essentials Master Guide v3 epact2 User Guide epact2 Essentials Guide epact2 - Essentials Master Guide v3 Contents Logging into epact2... 1 Activating your account... 1 Signing in... 2 Understanding the Landing page... 4 Understanding

More information

Staged Backup/Import. NovaStor xsp 19" 2018 NovaStor. All Rights Reserved.

Staged Backup/Import. NovaStor xsp 19 2018 NovaStor. All Rights Reserved. Staged Backup/Import NovaStor xsp 19" 2018 NovaStor. All Rights Reserved. Guide to creating a staged backup... 3 Import... 6 Backup Import Utility... 6 Complete... 8 Contact Us... 9 Notice... 9 Copyright...

More information

Etasoft Mini Translator version 1.x

Etasoft Mini Translator version 1.x Etasoft Mini Translator version 1.x Copyright 2008-2010 Etasoft Inc. Main website http://www.etasoft.com Product website http://www.xtranslator.com Purpose...2 Requirements...2 Package Details...2 Results...3

More information

Backup APP v7. Office 365 Exchange Online Backup & Restore Guide for Mac OS X

Backup APP v7. Office 365 Exchange Online Backup & Restore Guide for Mac OS X Backup APP v7 Office 365 Exchange Online Backup & Restore Guide for Mac OS X Revision History Date Descriptions Type of modification 5 Apr 2017 First Draft New Table of Contents 1 Overview... 1 About This

More information

ROTEM data solutions. Data solutions - On time information. Where it is needed.

ROTEM data solutions. Data solutions - On time information. Where it is needed. ROTEM data solutions Data solutions - On time information. Where it is needed. All test results are available in numerical and graphical formats. Real time transmission to a defined PC and transfer to

More information

NSave Table of Contents

NSave Table of Contents NSave Table of Contents Introduction to NSave for Desktops 2 CPP Installation Instructions 3 Backing up your Computer 8 Restoring Files to your Computer 10 Tools 16 1 Introduction to NSave for Desktops

More information

Installation Manual. Interactive NIIT Nguru s Cloud edge: Learning begins at home

Installation Manual. Interactive NIIT Nguru s Cloud edge: Learning begins at home Installation Manual Interactive Classrooms@Home NIIT Nguru s Cloud edge: Learning begins at home Copyright NIIT 2012. All rights reserved No part of this publication may be reproduced, stored in retrieval

More information

IMPORTANT PRODUCT INFORMATION

IMPORTANT PRODUCT INFORMATION October 1, 1998 IMPORTANT PRODUCT INFORMATION READ THIS INFORMATION FIRST Product: Programmable Coprocessor Module, Version 4.05 Introduction This document provides information about firmware release 4.05

More information

Paragon Exchange Granular Recovery

Paragon Exchange Granular Recovery PARAGON Technologie GmbH, Systemprogrammierung Heinrich-von-Stephan-Str. 5c 79100 Freiburg, Germany Tel. +49 (0) 761 59018201 Fax +49 (0) 761 59018130 Internet www.paragon-software.com Email sales@paragonsoftware.com

More information

Thunderbird POP Instructions Bloomsburg University Students

Thunderbird POP Instructions Bloomsburg University Students This guide will assist you in setting up Thunderbird to work with your student email account using POP. Thunderbird is a free multi platform email client available from Mozilla at http://www.mozillamessaging.com/.

More information

Overview. Your Postini Username and Password. Recovering Your Postini Password

Overview. Your Postini Username and Password. Recovering Your Postini Password Postini User Guide Overview... 2 Your Postini Username and Password... 2 Recovering Your Postini Password... 2 Logging Into Postini... 6 Viewing Quarantine... 9 Delivering Messages... 9 Accessing Your

More information

SmartExporter 2013 R1

SmartExporter 2013 R1 The current version contains numerous new features and considerable improvements. SmartExporter 2013 R1 is now able to extract also archived data. The download of asynchronously run Data Requests on an

More information

Enterprise Permission Reporter

Enterprise Permission Reporter Enterprise Permission Reporter Version 3.5.0.2 Manual NETsec 14 August2012 NETsec GmbH & Co.KG Schillingsstrasse 117 DE - 52355 Düren What is EPR?... 4 Installation... 5 Where do I install EPR?... 5 Store

More information

BOKU staff members, BOKU students. ZID Hotline

BOKU staff members, BOKU students. ZID Hotline Filr The Open Enterprise Server (formerly Novell File Server) has been available to safely secure your data as BOKU member for decades. Filr facilitates access to these data, for example, when you are

More information

MD5 FILE HASHER USER MANUAL

MD5 FILE HASHER USER MANUAL User Manual Digital-Tronic Software Development MD5 FILE HASHER USER MANUAL Dated: October 2014 WELCOME MD5 File Hasher is a simple program which allows you to create and compare check sums. This allows

More information

Microsoft MB Microsoft Dynamics CRM Online Deployment.

Microsoft MB Microsoft Dynamics CRM Online Deployment. Microsoft MB2-706 Microsoft Dynamics CRM Online Deployment http://killexams.com/exam-detail/mb2-706 A. SQL Server cell-level transparent data encryption B..Net Framework data encryption C. SQL Server column

More information

Failover Server: Configuration

Failover Server: Configuration SeMSy III is a high-performance and future-proof video management system with optimum user friendliness. It offers a comprehensive range of functions, including the display of live images, various search

More information

LonScanner TM Protocol Analyzer User's Guide

LonScanner TM Protocol Analyzer User's Guide LonScanner TM Protocol Analyzer User's Guide @ 078-0305-01A Echelon, LNS, LonTalk, LONWORKS, i.lon, LONMARK, NodeBuilder, Neuron and the Echelon logo are registered trademarks of Echelon Corporation. LonMaker

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

1 Motivation Frontend Fine-Tuning Parameters Location On Windows On Linux... 5

1 Motivation Frontend Fine-Tuning Parameters Location On Windows On Linux... 5 Inhalt 1 Motivation... 4 2 Frontend Fine-Tuning Parameters... 5 2.1 Location... 5 2.1.1 On Windows... 5 2.1.2 On Linux... 5 2.2 Configurable Parameters... 5 2.2.1 kms.configuration.dashboardreloadperiod...

More information

Vanguard Secure Service (VSES) User Guide

Vanguard Secure  Service (VSES) User Guide Vanguard Secure Email Service (VSES) User Guide Enterprise Security and Fraud October 20, 2017 Contents Guide for Users of Secure Email From Vanguard 1 View Secure Email 1 New Registration 3 Compose a

More information

TecLocal MultiUser Database

TecLocal MultiUser Database Tec Local 4.0 - Installation Manual: Byer Mode & Multi-User (Server) TecLocal 4.0.009 MultiUser Database Installation Manual: Buyer Mode & Multi-User (Part I - Server) Version: 1.1 Author: TecCom Solution

More information

windream Client Installation windream GmbH, Bochum

windream Client Installation windream GmbH, Bochum windream Client Installation windream GmbH, Bochum Copyright 2001 2004 by windream GmbH / winrechte GmbH Wasserstr. 219 44799 Bochum Issue: 06/04-3.6.1.0 All rights reserved. No part of the contents of

More information

User Guide Parmiter s School

User Guide Parmiter s School Email User Guide 2015 Parmiter s School New email system Office 365 Web App Why the change?: 50GB of mailbox space (currently 0.035GB/35MB) Mail attachments maximum size 25MB If power is lost or school

More information

SP Widget V3.0 User Manual. SP Widget V3.0 User Manual

SP Widget V3.0 User Manual. SP Widget V3.0 User Manual SP Widget V3.0 User Manual 1 Table of Contents 1. Intellectual Property & Copy Rights.....4 2. Product Introduction...5 3. System Requirements.. 5 4. Introduction..6 4.1 Activate SP Widget.6 4.2 Browser

More information

5.1 SR-2 Release Overview

5.1 SR-2 Release Overview Release Date: July 15, 2005 Contents Introduction...2 Compatibility with Previous Versions...2 Data Engine Users (XP3 Data Workshop, XP3 Data Integrator, and XP3 Dimensional Data Loader)...2 New Features

More information

Oracle Event Processing Extreme Performance on Sparc T5

Oracle Event Processing Extreme Performance on Sparc T5 Oracle Event Processing Extreme Performance on Sparc T5 An Oracle Event Processing (OEP) Whitepaper ORACLE WHITE PAPER AUGUST 2014 Table of Contents Introduction 2 OEP Architecture 2 Server Architecture

More information

Imprint. Translation of the original user guide. 27/05/2014 FAG Industrial Services GmbH

Imprint. Translation of the original user guide. 27/05/2014 FAG Industrial Services GmbH 1 Imprint FAG Industrial Services GmbH Kaiserstraße 100 52134 Herzogenrath Germany Telephone: +49 (0) 2407 9149 66 Fax: +49 (0) 2407 9149 59 Email: industrial-services@schaeffler.com Webside: www.schaeffler.com/services

More information

TABLE OF CONTENTS. ICANN Pre- Delegation Testing System. A User s Guide. Release version May- 03

TABLE OF CONTENTS. ICANN Pre- Delegation Testing System. A User s Guide. Release version May- 03 ICANN Pre- Delegation Testing System A User s Guide Release version 1.5 2013- May- 03 TABLE OF CONTENTS 1 Introduction... 2 2 Activate your account and log in... 3 3 Application overview and status...

More information

WEBMAIL INTERFACE MANUAL GUIDE

WEBMAIL INTERFACE MANUAL GUIDE WEBMAIL INTERFACE MANUAL GUIDE (Mobile Version) Mail Hosting Service 2016. All rights reserved. Power by Support Mail team (support mail@ntt.co.th) NTT Communications (Thailand) Co.,Ltd. Library of instructions

More information

pure::variants Server Support Plug-In Manual

pure::variants Server Support Plug-In Manual pure-systems GmbH Copyright 2003-2008 pure-systems GmbH 2008 Table of Contents 1. Introduction... 1 2. Create A New Variant Server Project... 1 3. Import An Existing Variant Server Project... 2 4. Change

More information

Grapevine web hosting user manual. 12 August 2005

Grapevine web hosting user manual. 12 August 2005 Grapevine web hosting user manual 12 August 2005 Grapevine web hosting user manual 2 Contents Contents... 2 Introduction... 4 System features... 4 How it looks... 5 Main navigation... 5 Reports... 6 Web

More information

GE Ethernet Global Data Driver Help Kepware Technologies

GE Ethernet Global Data Driver Help Kepware Technologies GE Ethernet Global Data Driver Help 2012 Kepware Technologies 2 Table of Contents Table of Contents 2 4 Overview 4 Device Setup 5 Name Resolution 6 Exchange Configuration 7 Data Types Description 11 Address

More information

User Manual. Central Monitoring Software for TER-series recorders. CenPro

User Manual. Central Monitoring Software for TER-series recorders. CenPro EN User Manual Central Monitoring Software for TER-series recorders CenPro Contents CENPRO USER MANUAL 1 PC REQUIREMENT 3 2 INSTALL 3 3 UNINSTALL 5 4 BASIC OPERATION 7 4.1 Log In 7 4.2 Screen Layout 8

More information

Safe Mode: Solve Startup Problems & Crashes S 3/1. Solve (Almost) Any Problem Your Computer May Have

Safe Mode: Solve Startup Problems & Crashes S 3/1. Solve (Almost) Any Problem Your Computer May Have Safe Mode: Solve Startup Problems & Crashes S 3/1 Solve (Almost) Any Problem Your Computer May Have If your PC refuses to start or keeps crashing for some unknown reason, Safe Mode is often your last resort.

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

DIGIOP ELEMENTS V8.1 Software-only Installation Guide

DIGIOP ELEMENTS V8.1 Software-only Installation Guide DIGIOP ELEMENTS V8.1 Software-only Installation Guide About this installation guide Use this document as a guide to install your DIGIOP ELEMENTS software system. It includes procedures to install your

More information

VIDOS Pro Suite. Quick Installation Guide

VIDOS Pro Suite. Quick Installation Guide VIDOS Pro Suite en Quick Installation Guide VIDOS Pro Suite Table of Contents en 3 Table of Contents 1 Introduction 5 1.1 VIDOS Pro Suite 5 1.2 Additional documentation 8 2 VIDOS Pro Suite 9 2.1 System

More information

Dream Report Version 4.81

Dream Report Version 4.81 Release Notes Dream Report Version 4.81 User Friendly Programming-Free Reporting for Automation 1 P a g e Copyright (R) Ocean Data Systems Ltd., All rights reserved R e l e a s e N o t e s Contents Release

More information

Symantec pcanywhere 12.5 SP4 Release Notes

Symantec pcanywhere 12.5 SP4 Release Notes Symantec pcanywhere 12.5 SP4 Release Notes Symantec pcanywhere 12.5 SP4 Release Notes The software described in this book is furnished under a license agreement and may be used only in accordance with

More information

USER GUIDE Deployment

USER GUIDE Deployment 2011 USER GUIDE Deployment This article will provide instructions on how to deploy your Code On Time application to a server. Our examples use the Northwind sample database and a Windows Virtual Private

More information

Configuring CDR Repository Manager

Configuring CDR Repository Manager CHAPTER 13 Use the CDR Management Configuration window to set the amount of disk space to allocate to call detail record (CDR) and call management record (CMR) files, configure the number of days to preserve

More information

Apptix Online Backup by Mozy User Guide

Apptix Online Backup by Mozy User Guide Apptix Online Backup by Mozy User Guide 1.10.1.2 Contents Chapter 1: Overview...5 Chapter 2: Installing Apptix Online Backup by Mozy...7 Downloading the Apptix Online Backup by Mozy Client...7 Installing

More information

Foreword. Trademarks bavel is a trademark of Voxel Group.

Foreword. Trademarks bavel is a trademark of Voxel Group. User s Manual for the PARTNER PORTAL Foreword Data and design subject to change without notice. Supply subject to availability. 2016 Copyright Voxel Group We reserve all rights in this document and in

More information

MailStore Server 6 Documentation

MailStore Server 6 Documentation MailStore Server 6 Documentation 2010 deepinvent Software GmbH 15. April 2012 Products that are referred to in this document may be either trademarks and/or registered trademarks of the respective owners.

More information

Viewing Client Version

Viewing Client Version Technical Information English Viewing Client Version 2.0.0.3 Version 1.0 / 2014-05-22 1 Abstract This document contains information on news and changes that are introduced with the current version of the

More information

NSave Table of Contents

NSave Table of Contents NSave Table of Contents Introduction to NSave for Desktops 1 CPP Installation Instructions 2 Backing Up Your Computer 9 Restoring Files to Your Computer 11 Tools Menu 17 Introduction to NSave for Desktops

More information

Paragon Exact Image. User Manual CONTENTS. Introduction. Key Features. Installation. Package Contents. Minimum System Requirements.

Paragon Exact Image. User Manual CONTENTS. Introduction. Key Features. Installation. Package Contents. Minimum System Requirements. Paragon Exact Image User Manual CONTENTS Introduction Key Features Installation Package Contents Minimum System Requirements Basic Concepts Backup Operations Scheduling Interface Overview General Layout

More information