ASEM System Manager. Introduction TN0012

Size: px
Start display at page:

Download "ASEM System Manager. Introduction TN0012"

Transcription

1 Introduction This document describes how to install and use the utility. The utility aims to provide a comprehensive support to manage system specific features, such us clone, selective system components backup and related restore operations, system font quality settings and screen saver options. The utility is available for all ARM and x86 based systems with WinCE operating system and comes as built-in component of the operating system image. When not available as native component, it can be installed at any time by means of the setup package distributed on the web site from the Download section of the HMI solution area. Version Description Date 1 First emission 06/12/ Added Screen saver and font settings 03/02/ Added compatibility cross table 19/02/ Added note about restoring clone and Ubiquity identity 11/04/ Added info about compatibility between images and HW 28/07/ Added info for buzzer handling 05/12/ Restore and display brightness information 25/05/ Kiosk mode, Scrollbar, Language settings, System reboot, 28/07/2015 EMMC Usage 9 Support for new WCE images with new file system 20/05/ Added new command line arguments, support for custom files, 16/12/2016 CODESYS Runtime and application in separate folders 11 Added note about the new behavior of clone restore that skips 13/12/2017 the OS image 12 Added special behavior for the LBM40 devices 14/12/2017 Disclaimer The information given in the documentation could change without notice and doesn't represent any obligation for ASEM S.p.A. ASEM S.p.A. is not responsible for technical mistakes or other omissions and declines every responsibility resulting from its use. ASEM S.p.A. will not be responsible for any loss of profits or damages, direct or not, of any kind (included loss or damages of data), deriving from the use of this documentation. Page 1 di 16

2 Table of contents 1 Setup Backup Restore System clone and restore Clone Restore Clone restore, display brightness settings and MTBF for HMI30/ Compatibility check LBM40 SystemManager.xml special behavior Selective backup and restore CODESYS application Custom files or folders Compatibility check Using Backup Restore to upgrade OS ROM images Checking OS ROM image version Managing memory file system transition Control Panel items Font antialiasing settings Screen saver settings Touch Buzzer EMMC Usage Kiosk mode Language Settings Scrollbar System Reboot Compatibility Table Page 2 di 16

3 1 Setup The utility is integral part of the operating system image for the ARM and x86 based systems running Windows CE operating system. It is available as a set of Control Panel applications: Backup Restore Font Antialiasing Screen Saver Touch Buzzer EMMC Usage Kiosk Mode Language Settings Scrollbar System reboot For units not having the utility pre-installed, it can be installed at any time getting the setup package form the web site, in the HMI solution section, from the Download area. To install the application, get the package corresponding to the platform (ARM or x86), copy it to the system disk (or memory) and launch the setup following then the instructions on the screen. The installation may require restarting the system to complete the process. Follow the instructions on the screen. Page 3 di 16

4 2 Backup Restore The Backup Restore utility interface is shown in the following figure. The utility provides two functionalities: System clone and restore Selective feature backup and selective restore 2.1 System clone and restore To store Clone snapshots and selective feature backup, the ASEM system manager utility uses a single file container with extension.asr (ASEM System Repository) which includes all the information and data required later for the restore operation. The system clone creates a low-level snapshot of: All the files on disk The operating system configuration from the registry The ASEM applications configurations from the registry System Clone Snapshot is NOT supported on x86 platforms; check the Compatibility Table for further information. The settings saved by the clone process are those related to the system (IP address, network configuration, system time, etc.) and those related to the ASEM application installed (Premium HMI, UBIQUITY and CODESYS). Any specific user setting, except for the autorun keys are not saved Clone To process with the clone process, click on the Create a new system clone snapshot button. The clone operation has two optional settings: 1) Operating system image: it allows you to execute a clone of the operating system ROM image. Page 4 di 16

5 2) Custom registry keys: it allows you to specify custom keys to be saved in the backup. Click Run to start the process. You will be asked to provide a path where to store the clone snapshot. Destination path for the clone file can be only an external storage disk such a USB pen drive or an SD card, when supported by the system. Once the process is started the status bar at the bottom of the system manager application informs on the operation in progress. The Clone operation can be completely automated via a batch file (.bat) or via the SystemManager.xml file without any user interaction. The batch file can be launched on the panel manually with a double click or by a call from another application. The SystemManager.xml file must be copied onto the USB root folder. It is associated with ASEM System Manager and automatically recognized upon USB pen drive insertion. Any command contained will be then automatically executed. The LBM40 devices have a different behavior. Read the related chapter for further details. Create a text file named SystemManager.xml. Open it with any text editor and copy into it the following text. <?xml version="1.0" encoding="utf-8"?> <SystemManager> <Commands> <Command Type="CreateSnapshot" FilePath="fullClone.asr" Arguments="-silent -forceexit" WaitCompletion="0" /> </Commands> </SystemManager> To run the same command with a batch file use the following sample off cls call \MMCMemory\SystemManager\SystemManager.exe "\MMCMemory\newFullClone.asr" -createsnapshot -silent -forceexit echo %errorlevel% if errorlevel 1 goto manage_error if errorlevel 0 echo success :manage_error echo error The CreateSnapshot command can be run with some optional arguments, that are explained in the following table. Arguments -forceexit -noosimage -silent Operation will be always completed without to inform the user. The Error Level system variable it is used to check if the process is completed with success 0 or with an error (a value greater than 0). The full clone backup will not include the OS image. No user interaction Restore To restore a clone snapshot, you can simply click on the Restore a saved system clone snapshot button and locate the.asr repository file. Page 5 di 16

6 The status bar at the bottom of the of the system manager application informs on the operation in progress. The restore of a clone snapshot cannot be selective. The registry key value will be reset to the default factory settings before to apply the restore. When restoring a clone snapshot of a system associated to a Ubiquity Domain, please consider that the Ubiquity Identity is also restored. This means that if the target device was also already associated to a Ubiquity Domain, it will lose it original identity. In case you need to keep it, it is suggested to save the auth.bin file from the Ubiquity Runtime installation folder before restoring the clone snapshot. When restoring a feature backup, the Ubiquity identity of the target device is instead maintained. The restore process provides the automatic shutdown of the running processes (Premium HMI, Ubiquity and CODESYS), the file replacement form the archive and the processes restart at the end. The restore process can be completely automated via a batch file (.bat) or via the SystemManager.xml file using the optional argument -silent and the path of where is located the *.asr file you want to restore. The procedure does not require any user interaction. The.bat file can be launched on the panel manually with a double click or by a call from another application. The SystemManager.xml file must be copied on the USB root folder. It is associated with ASEM System Manager and automatically recognized upon USB pen drive insertion. Any command contained will be then automatically executed. The LBM40 devices have a different behavior. Read the related chapter for further details. Create a text file named SystemManager.xml. Open it with any text editor and copy into, the following text. <?xml version="1.0" encoding="utf-8"?> <SystemManager> <Commands> <Command Type="RunProcess" FilePath="\MMCMemory\SystemManager\SystemManager.exe" Arguments="\hiddenpart\factoryReset.asr -silent" WaitCompletion="0" /> </Commands> </SystemManager> Alternatively, the command LaunchASR can be used to invoke the System Manager. The System manager will use in this case a relative path instead of the absolute one without the needed to specify the media name, that is the USB key. <?xml version="1.0" encoding="utf-8"?> <SystemManager> <Commands> <Command Type="LaunchASR FilePath="ASRfile.asr" Arguments="-silent" WaitCompletion="0" /> </Commands> </SystemManager> Clone restore, display brightness settings and MTBF for HMI30/25 In case you are restoring an HMI30/25 clone, it must be clear that the also registry settings are applied to the target system. Registry settings contains several information including the display brightness level. To ensure the declared level of the MTBF parameter at 50 C, we are properly setting the display brightness of each display model at the right level to ensure the proper duration of the component. The following table summarize the default settings per each model. Page 6 di 16

7 LCD SIZE Brightness [cd/m 2 ] MTBF@50 C [h] Default Brightness for MTBF % % 7 (25) % 7 (30) % % % 12.1 S % 12.1 X % % % Brightness level may be changed by the operator prior to take the clone snapshot in order to get the desired brightness value when restoring the image since the beginning. Please, pay attention that if the clone is restored to a system with different LCD size, according to the above table it may happen that the restored brightness level can reduce the declared MTBF Compatibility check A clone snapshot can be restored to the same system from where it comes as well to another device. When doing the restore operation, the ASEM system manager utility will verify if the snapshot provided is compatible with the actual hardware. If the ASEM system manager is not able to determine the compatibility condition, it will display a warning message and final decision is left to the user. If you are restoring a clone made with a first-generation HMI30, HMI31, LP30 or LP31 to a new-generation device, a dialog will warn you that the OS image is incompatible. These newgeneration devices work only with at least an OS version greater than or equal to 19. Only under these conditions a dialog box will come up and ask you whether you would like to proceed the restore without the OS image LBM40 SystemManager.xml special behavior Many operations can be automated through the SystemManager.xml file by copying it into the root of a USB stick and then plugging it into the device. There is no distinction if the key is plugged while the device is on or during the boot phase. This is the default behavior for the HMI25, HMI3x, HMI4x, LP3x and LP4x devices, while the LBM40 features some differences highlighted below: The SystemManager.xml will be automatically executed if and only if the USB stick is already connected during the boot phase; If you want to execute a command while the device is on, then an additional parameter will be necessary to force the operation; At the end of the command execution, except for the RunProcess command, the device always performs a forced restart. Force parameter To force the execution of a command while the device is on, the parameter Force="1" must be used, as you can see in the following example. Page 7 di 16

8 <?xml version="1.0" encoding="utf-8"?> <SystemManager> <Commands> <Command Type="CreateSnapshot" FilePath="ASRFile.asr" Force="1" WaitCompletion="0" /> </Commands> </SystemManager> 2.2 Selective backup and restore The selective backup provides support to backup only specific and selected features, files and application settings. To start the selective backup, click on the button Backup features into a.asr repository. The utility will display a list of available features and settings to be saved. The window is self-explanatory, so you can follow the instructions on the screen and mark the check box of the desired features you need to backup. The backup of the Premium HMI application provides the backup of all the user s applications present on the \MMCMemory flash disk. In case the Data folder has been moved out of the default path, it will NOT be saved in the backup Once the selection is completed, press Run to select the target path and to start the process. Destination path for the selective backup file can be internal or external storage disk. Once the process is started the status bar at the bottom of the system manager application informs on the operation in progress. To restore a selective backup, click on the button Restore features from a saved.asr repository and locate the archive. Once the archive has been loaded, you can press the Details button to check the archive contents. A complete list of all the features available in the.asr archive, including application version, will be displayed CODESYS application The file CODESYSControl.cfg stored in \MMCMemory\CoDeSys3\ path contains the information related to the runtime, the application files and the retentive memory file created. The ASEM System manager can use this information for the backup and the application restore in the same location provided by the CODESYSControl.cfg. The restore process provides the automatic shutdown of the running processes (Premium HMI, Ubiquity and CODESYS), the file replacement from the archive and the processes restart at the end. The restore process may require several system reboots to complete; the process is fully automated Custom files or folders The selective backup provides support to backup custom files. The feature requires a Comma-Separated Values (CSV) file contains the list of the files to be included into the backup. The CSV file can be created with any text editor and must contain, in a given format, the list of custom folders to be added to the backup. Once the file is ready, copy it to the panel, open the ASEM System Manger backup interface, click on the button shown in the following figure and locate the CSV file. Page 8 di 16

9 Example All the files present in \Folder1 and Folder2 but only the file.txt of Folder3 will be included into the backup Backup of empty folder is not supported Compatibility check A selective backup can be restored to the same system from where it comes as well to another device. When doing the restore operation of the operating system component the ASEM system manager utility verifies if the archive content is compatible or not with the actual hardware. If the ASEM system manager is not able to determine the compatibility condition, it will display a warning message and final decision will be left to the user. With reference to ARM based systems (HMI25, HMI30, LP30 and LP31) it is important to note how compatibility works in relation to some specific hardware differences related to RAM and emmc memory size. ARM based systems of 1 st generation have been equipped with 512MB of RAM and 2GB of internal emmc memory. The 2 nd generation is featuring 1GB of RAM and 4GB of internal emmc memory. Clone archives of 1 st generation systems can be restored to 2 nd generation hardware. The only drawback is that only 512MB of RAM and 2GB of emmc memory will be accessible. Clone archives of 2 nd generation systems can be restored to 1 st generation hardware. Page 9 di 16

10 2.3 Using Backup Restore to upgrade OS ROM images The Backup Restore utility can be efficiently used to replace/upgrade the operating system image of a Windows CE device. Backup and restore is ONLY supported by ARM based devices (HMI25, HMI30, HMI45, LP3x, LP4x and LBM40); check the Compatibility Table for further information. From the ASEM web site ( you can find a dedicated area, with the complete set of.asr archives including the different versions of the Operating System ROM image for the specific devices. The archives are made as features backup. Download the desired archive from the web site, copy it into a USB pen drive and plug it to a USB port on the device. Start the Backup Restore utility and use the Restore features from a saved ASR repository button to locate the archive file and execute the restore. As an alternative, you can simply double click on the.asr file to launch the.asm utility. The restore operation of the operating system image provides an automatic temporary backup of all the ASEM applications installed on the system (Premium HMI, Ubiquity, CODESY) together with their settings and an automatic restore of them once the new ROM image is installed. All is completely transparent and does not require any action from the operator. Note that ONLY ASEM applications are saved; any other application installed will not be considered Checking OS ROM image version The version ID of the operating system can be retrieved from the Windows registry. The registry can be displayed using the Microsoft Registry Editor (regedit.exe) application. To start Registry Editor, click on the Start button, then click Run and type regedit, then click OK. Select then LMachine from the list box menu as shown in the following figure. Double click on the ASEM key. The version ID corresponds to the last two digits of the Version key, after the dot Managing memory file system transition Version 17 of the Windows CE image for HMI25, HMI30, LP3x and RTxx systems introduces the use of a new file system for the emmc user memory. Page 10 di 16

11 Upgrading to this version from any older one requires to use version 3 or above. Using older versions of ASM may result in an unusable device. Please follow the setup instructions if you do not have the required version of the ASM utility. ASEM system manager supports the transition between the two file systems even in case you need to downgrade a device going back to the previous formatting. The transition is automatically managed executing all the necessary steps including the backup, memory formatting and restore of the user s data. The system may be automatically restarted several times. The backup is executed as a clone operation. To upgrade the OS ROM image: - get then the.asr archive with the new image - copy to a USB pen drive - open it on the panel - double click on the.asr file and follow the instructions The process requires a USB pen drive with enough space to keep the temporary backup data It is strongly recommended to remove from the USB ports of the panel any other USB disk 3 Control Panel items 3.1 Font antialiasing settings The utility allows you to set the font quality rendering options. Font Antialiasing is ONLY supported by ARM based devices (HMI25, HMI30, HMI45, LP3x, LP4x and LBM40); check the Compatibility Cross Table for further information. Double click on the Control Panel icon and just select the desired rendering option. Click OK to confirm. The settings are automatically saved to the registry and no manual saving is required. 3.2 Screen saver settings The utility allows you to enable the screen saver feature after an idle period. Screen saver is ONLY supported by ARM based devices (HMI25, HMI30, HMI45, LP3x, LP4x and LBM40); check the Compatibility Cross Table for further information. Double click on the Control Panel icon and click enable. Page 11 di 16

12 Select the backlight brightness level the system will automatically set after the idle time. If the level is set to 0% the screen will become completely dark. 3.3 Touch Buzzer The minimum brightness level you can reach depends by the hardware feature of your device, please check this with technical support. In case the brightness level is set to 0%, the wakeup event (i.e. touch activation) is NOT transferred to the running applications. In case the brightness level is NOT set to 0% the wakeup event is transferred to the running application which is acting depending on how the active areas have been eventually programmed. The utility allows you to enable the audible touch feedback when the touch screen is activated. The Touch buzzer is ONLY supported by ARM based devices (HMI25, HMI30, HMI45, LP3x, LP4x and LBM40) To enable the buzzer, simply double click on the icon and mark the Enable buzzer on touch check box confirming then with OK. 3.4 EMMC Usage The buzzer is a hardware component present in any HMI25, HMI30, HMI45, LP3x, LP4x and LBM40 systems since origin. Existing systems can be then upgraded with latest version of to enable this new feature. The utility provides useful information on the usage of the emmc memory together with an indication of its health status. The EMMC Usage is ONLY supported by ARM based platforms with operating system version A.15 or above (ARM based platforms). OS version information are in the LMachine\ASEM registry key. Page 12 di 16

13 The information provided are divided per current session (since last power cycle) and in total since the installation of the utilities. The utility provides the following information. Writes (MB) System uptime (days) Rate (B/s) Estimated life (days) Written data to the emmc memory in MB Days since last power cycle Average writing speed in B/s calculated considering the amount of data written and the uptime Estimation of the memory life time calculated considering the maximum number of writes supported by the physical device (information from the memory manufacturer) and the rate of writes generated. 3.5 Kiosk mode The utility allows you to enable the kiosk mode. The Kiosk mode is ONLY supported by ARM based devices (HMI25, HMI30, HMI45, LP3x, LP4x and LBM40) When enabled, the panel will start directly the Premium HMI Runtime with related project without showing the Windows CE Explorer. To enable kiosk mode, just open the utility and mark the Enable kiosk mode check box. When you enable the kiosk mode, you can also create a file which allows a temporarily kiosk mode deactivation. The file is created using the Create file button. Plug a USB pen drive into the panel USB port and store the file directly on the root of the USB disk. Just plug-in the USB drive to have the file recognized and Explorer started until the next power cycle. Page 13 di 16

14 If you had forgotten to create the file when you ve enabled the kiosk mode, you can simply make it manually by yourself. Create a text file named SystemManager.xml. Open it with any text editor and copy in, the following text. <?xml version="1.0" encoding="utf-8"?> <SystemManager> <Commands> <Command Type="DisableKioskMode" Arguments="" WaitCompletion="0" /> </Commands> </SystemManager> Save the file and use it as explained before. The code above temporarily disables the Kiosk mode, but if you reboot the device it will be restarted in Kiosk mode. You can permanently enable/disable the Kiosk mode with the following code that can be written in SystemManager.xml file as described above. Enable the Kiosk mode <?xml version="1.0" encoding="utf-8"?> <SystemManager> <Commands> <Command Type="EnableKioskMode" Arguments="" WaitCompletion="0" /> </Commands> </SystemManager> Disable the Kiosk mode <?xml version="1.0" encoding="utf-8"?> <SystemManager> <Commands> <Command Type="DisableKioskMode" Arguments="-save" WaitCompletion="0" /> </Commands> </SystemManager> If kiosk mode is enabled and the Premium HMI Runtime is terminated, or simply closed with the proper command, Explorer will not be started automatically and you will apparently end up in a situation where the screen is frozen and not reacting. To avoid this annoying condition, it is enough to include the launch Explorer command before the Runtime shutdown as shown in the figure below. Page 14 di 16

15 3.6 Language Settings The utility provides fonts installation for the Chinese, Japanese and Korean languages. 3.7 Scrollbar The utility allows you to change the size of the windows scrollbars. This is useful when creating applications with Premium HMI because some of the standard controls get the scrollbar size information from the operating system. From the window, just select the desired size of the scrollbars and confirm. 3.8 System Reboot The utility allows you to reboot the system. 4 Compatibility Table The following table summarize the compatibility between and the Windows CE systems, depending on the hardware platform. Page 15 di 16

16 HW of WinCE based systems Pre-loaded in production After sales installation Backup Restore Backup/Restore with OS image clone Font rendering settings Screen saver ARM x86 Ubiquity RMxx HW of WinCE based systems Touch Buzzer EMMC Usage Kiosk mode Language settings Scrollbar System reboot ARM x86 Ubiquity RMxx Page 16 di 16

Updating Systems Components in UniOP Series 400 Products

Updating Systems Components in UniOP Series 400 Products Updating Systems Components in UniOP Series 400 Products This document describes how to update the system components of the UniOP Series 400 HMI products, including Operating System and run-time software.

More information

HMI30 BASIC Basic configuration > note 1

HMI30 BASIC Basic configuration > note 1 Industrial Automation - Products & Configurations HMI30 BASIC > te 1 LCD TFT 5,7" Touch-Screen ARM Cortex A8, 1 GHz 1 GB RAM 256 MB NAND-Flash 4GB emmc PsuedoSLC Windows Embedded Compact 7 Pro with Datalight

More information

LP31 BASIC Basic configuration > note 1

LP31 BASIC Basic configuration > note 1 Industrial Automation Products & Configurations LP31 BASIC > te 1 LP31 LCD TFT 7" TouchScreen Aluminum front panel ARM Cortex A8, 800 MHz 1 GB RAM 256 MB NANDFlash 4GB emmc PsuedoSLC 1 optoisolated CAN

More information

UBIQUITY 6 and Private

UBIQUITY 6 and Private UBIQUITY 6 and Private server Introduction This document describes the newly introduced features of Ubiquity 6 and the new Private Server option. Version Description Date 1 First version 23/09/2015 Disclaimer

More information

HMI40 / LP40. New HMIs and PACs ARM Cortex A9 multicore processor families

HMI40 / LP40. New HMIs and PACs ARM Cortex A9 multicore processor families HMI40 / LP40 New HMIs and PACs ARM Cortex A9 multicore processor families HMI40 - Highlights Premium HMI 5 BASIC and ADVANCED WinCE runtime versions ASEM UBIQUITY Pro WinCE remote assistance software Windows

More information

The following file is used for updating the boot loader: xboot.bin: XSTREAM development platform boot loader image

The following file is used for updating the boot loader: xboot.bin: XSTREAM development platform boot loader image Firmware Upgrade Procedure This procedure is the only way to update the LCI-3 firmware. It requires a SanDisk USB SD Reader/Writer (or equivalent) and a 64MB SD memory card. Larger density cards (128MB

More information

Applied ICT Skills MS Windows

Applied ICT Skills MS Windows Applied ICT Skills MS Windows Lesson 1 - How to install an operating system into computer? Windows 7 is perhaps the best Microsoft operating system and is very easy to install compared to other windows.

More information

K9 Series Firmware Update Guide

K9 Series Firmware Update Guide K9 Series Firmware Update Guide This Guide provides how to download and install a new version of the firmware (operating software) for K9 Series DVR. 제품사진 Requirements To update the firmware on the K9

More information

Grayhill 3Dxx Display Products. Setup and Usage with CoDeSys Development Software

Grayhill 3Dxx Display Products. Setup and Usage with CoDeSys Development Software Grayhill 3Dxx Display Products Setup and Usage with CoDeSys Development Software Revision History Revision Date Description A 09/14/2016 Original Release B 05/02/2017 Added support for Model 3D70 (Seven

More information

User Document. Adobe Acrobat for Tivoli Software Distribution

User Document. Adobe Acrobat for Tivoli Software Distribution User Document i User Document Table of Contents Product Name....................................................1 Document Overview............................................. 1 References.......................................................1

More information

Getting started with JMobile Suite

Getting started with JMobile Suite Getting started with JMobile Suite This documents includes a brief presentation of the JMobile HMI and explains in few steps how to get started with it Sitek S.p.A. Tn294 Ver. 1.00 Copyright 2008 Sitek

More information

4-1. This chapter explains HMI settings.

4-1. This chapter explains HMI settings. 4-1 4. Hardware Settings This chapter explains HMI settings. 4.1. Overview... 4-2 4.2. I/O Ports... 4-2 4.3. LED Indicators... 4-2 4.4. System Reset... 4-3 4.5. System Toolbar... 4-4 4.6. System Setting

More information

HP Online ROM Flash User Guide. July 2004 (Ninth Edition) Part Number

HP Online ROM Flash User Guide. July 2004 (Ninth Edition) Part Number HP Online ROM Flash User Guide July 2004 (Ninth Edition) Part Number 216315-009 Copyright 2000, 2004 Hewlett-Packard Development Company, L.P. Confidential computer software. Valid license from HP required

More information

Drobo 5D3 User Guide

Drobo 5D3 User Guide Drobo 5D3 User Guide 1 Drobo 5D3 User Guide... 6 2 Before You Begin... 7 2.1 Product Features at a Glance... 7 2.2 Checking Box Contents... 8 2.3 Checking System Requirements... 9 2.3.1 Operating Systems

More information

Overview 1. Foreword 2. Warnings

Overview 1. Foreword 2. Warnings Overview 1. Foreword Thank you for choosing our product. Please read this manual carefully before using the product. Specifications and software updates may be subject to change without notice. Some pictures

More information

Aldi Go Cruise 4300 Hack

Aldi Go Cruise 4300 Hack Aldi Go Cruise 4300 Hack By sparky March 21, 2010 Ozi Explorer is a handy little utility which allows 4WD enthusiasts to load maps onto a GPS device, and to track their locations on various 4WD tracks.

More information

The UniDataExchanger is a tool that allows an easier handling of the file transfer to and from UniOP operator panels. Contents

The UniDataExchanger is a tool that allows an easier handling of the file transfer to and from UniOP operator panels. Contents The UniDataExchanger The UniDataExchanger is a tool that allows an easier handling of the file transfer to and from UniOP operator panels. Contents 1 Introduction... 3 2 Using UniDataExchanger... 3 2.1

More information

Usb Port On Manually Disable Windows 7 Registry Pdf

Usb Port On Manually Disable Windows 7 Registry Pdf Usb Port On Manually Disable Windows 7 Registry Pdf If you can find the switch, you can easily unlock and remove the write Step Click on the new registry key StorageDevicePolicies and on the right pan

More information

Public Software Patch Release Notes

Public Software Patch Release Notes Public Software Patch Release Notes Software version: 2.1.9945 Released on: 13 July 2012 Supersedes version: 2.1.9596 Released on: 7 May 2012 Software Release Notification Application installation packages

More information

Field PC 2 Windows OS Update Guide

Field PC 2 Windows OS Update Guide Field PC 2 Windows OS Update Guide All efforts have been made to ensure the accuracy and completeness of the information contained in this document. RST Instruments Ltd reserves the right to change the

More information

GV Director Restoring USB Image / Frame and Panel Installation

GV Director Restoring USB Image / Frame and Panel Installation IMPORTANT NOTE: If you have already been provided this update package via USB by a Grass Valley service representative, please skip ahead and begin on page 4. Requirements: 16 GB USB FLASH OR LARGER Mouse

More information

Storing Your Exercise Files

Storing Your Exercise Files Storing Your Exercise Files This appendix contains an overview for using this book with various file storage media, such as a USB flash drive or hard drive. Detailed instructions for downloading and unzipping

More information

INSTRUCTIONS FOR UPDATING THE MAPPING OF THE NAVIGATION SYSTEM DS CONNECT NAV

INSTRUCTIONS FOR UPDATING THE MAPPING OF THE NAVIGATION SYSTEM DS CONNECT NAV INSTRUCTIONS FOR UPDATING THE MAPPING OF THE NAVIGATION SYSTEM DS CONNECT NAV 01 This document describes the procedure for downloading,installing and updating the mapping of the DS Connect Nav system PRESEQUISITES

More information

4-1. This chapter explains HMI settings.

4-1. This chapter explains HMI settings. 4-1 4. Hardware Settings This chapter explains HMI settings. 4.1. Overview... 4-2 4.2. I/O Ports... 4-2 4.3. LED Indicators... 4-2 4.4. System Reset... 4-3 4.5. System Toolbar... 4-4 4.6. EasySystemSetting...

More information

Getting Started. HP Business PCs

Getting Started. HP Business PCs Getting Started HP Business PCs Copyright 2010, 2012-2014, 2016 HP Development Company, L.P. Windows is a registered trademark or trademark of Microsoft Corporation in the United States and/or other countries.

More information

SIMATIC Automation License Manager Manual 02/2008 A5E

SIMATIC Automation License Manager Manual 02/2008 A5E s Contents SIMATIC Automation License Manager Product Overview 1 Installation 2 Working with the Automation License Manager 3 Glossar Index Manual 02/2008 A5E02128430-01 Safety Guidelines This manual contains

More information

MBB100 / DSM800 Update Instructions

MBB100 / DSM800 Update Instructions MBB100 / DSM800 Update Instructions Contents Contents... 1 Automatic Updates... 1 Manual Update to the Latest Version of N2KView... 2 Manual Update of the Complete Operating System... 3 Automatic Updates

More information

TPM 1.2 Firmware Update Guidance. for Infineon SLB9655 and SLB9660

TPM 1.2 Firmware Update Guidance. for Infineon SLB9655 and SLB9660 TPM 1.2 Firmware Update Guidance for Infineon SLB9655 and SLB9660 Rev. 05 Toshiba Client Solutions Co., Ltd. Document Number: 3600xxxxx 1. Introduction This guidance described about in-field firmware update

More information

10ZiG Technology. 10ZiG Manager Getting Started Guide. Page 1

10ZiG Technology. 10ZiG Manager Getting Started Guide. Page 1 10ZiG Technology 10ZiG Manager Getting Started Guide Page 1 10ZiG Manager Getting Started 10ZiG Technology Limited Headquarters US 2012 W Lone Cactus Dr Phoenix, AZ 85027 Phone 866-864-5250 Fax 623-516-8697

More information

Intelligent Tiered Storage Acceleration Software for Windows 10

Intelligent Tiered Storage Acceleration Software for Windows 10 for Windows 10 QUICK START GUIDE April 2018 2018 Advanced Micro Devices, Inc. All rights reserved. AMD, the AMD logo, Ryzen, Threadripper, and combinations thereof are trademarks are of Advanced Micro

More information

TSM800 / TSM1330 Update Instructions

TSM800 / TSM1330 Update Instructions TSM800 / TSM1330 Update Instructions Contents Contents... 1 Automatic Updates... 1 Manual Update to the Latest Version of N2KView... 2 Manual Update of the Complete Operating System... 3 Automatic Updates

More information

Windows 8 Step by Step Upgrade Guide 1/53

Windows 8 Step by Step Upgrade Guide 1/53 Windows 8 Step by Step Guide 1/53 Contents 1. Before you Start Upgrading 1. Windows 8 Setup Process 2. System Requirements 3. Preparations 2. 3. 4. the 5. Clean the 6. 1. Personalize 2. Wireless 3. Custom

More information

User Guide. Rebit Backup. https://rebitbackup.rebitgo.com

User Guide. Rebit Backup. https://rebitbackup.rebitgo.com User Guide Information in this document is subject to change without notice. 2017 Rebit Inc. All rights reserved. Reproduction of this material in any manner whatsoever without the written permission of

More information

How to install the software of ZNS8022

How to install the software of ZNS8022 How to install the software of ZNS8022 1. Please connect ZNS8022 to your PC after finished assembly. 2. Insert Installation CD to your CD-ROM drive and initiate the auto-run program. The wizard will run

More information

3M Molecular Detection System Software Upgrade/Installation Instructions

3M Molecular Detection System Software Upgrade/Installation Instructions User Manual Supplement Number: TB.342837.03 Effective Date: March 2018 Supersedes: TB.342837.02 Technology Platform: 3M Molecular Detection System Originating Location: St. Paul, MN 3M Molecular Detection

More information

DATA SHEET Advanced Graphical Interface, AGI 300 series

DATA SHEET Advanced Graphical Interface, AGI 300 series DATA SHEET Advanced Graphical Interface, AGI 300 series For dedicated HMI solutions Advanced programming software For marine and harsh environments Available in 3 sizes: 4.3", 7" and 15" DEIF A/S Frisenborgvej

More information

Image Kiosk /WinCE 5.0 Power Tools. User s Guide

Image Kiosk /WinCE 5.0 Power Tools. User s Guide Image Kiosk /WinCE 5.0 Power Tools User s Guide Disclaimer Hand Held Products, Inc. ( Hand Held Products ) reserves the right to make changes in specifications and other information contained in this document

More information

How to update or recover the system program Ver.8.6

How to update or recover the system program Ver.8.6 How to update or recover the system program Ver.8.6 Introduction CDROM includes system program installation program to update or to recover your Programmable Terminal (PT). Please follow the instruction

More information

Contents. Version 1.5 and later. Introduction Panel Descriptions Sending Still Images to the VR-4HD... 12

Contents. Version 1.5 and later. Introduction Panel Descriptions Sending Still Images to the VR-4HD... 12 VR-4HD RCS is software designed to control the VR-4HD remotely using a computer. By connecting the VR-4HD and a computer via USB, along with operating the unit from the computer, you can also save and

More information

DL User s Manual

DL User s Manual DL Sm@rtSet User s Manual DL Sm@rtSet USER'S MANUAL DATALOGIC S.p.A. Via Candini, 2 40012 - Lippo di Calderara di Reno Bologna - Italy DL Sm@rtSet Ed.:11/2003 This manual refers to software version 1.40

More information

User Addendum User Box Scan support on the Fiery E C-KM Color Server, version 1.1

User Addendum User Box Scan support on the Fiery E C-KM Color Server, version 1.1 User Addendum User Box Scan support on the Fiery E 10 50-45C-KM Color Server, version 1.1 This document describes installing software for User Box scan support on the Fiery E 10 50-45C-KM Color Server,

More information

Leopard Installation. It s not as easy or as complicated as it sounds

Leopard Installation. It s not as easy or as complicated as it sounds Leopard Installation It s not as easy or as complicated as it sounds Sources Take Control ebook Taking Control of Upgrading to Leopard Mac related internet sites Opinions of other WAP gurus Experience

More information

IMPORTANT NOTE for. Choose the zip file v and unzip it in USB. Do not rename the UPG folder. Follow

IMPORTANT NOTE for. Choose the zip file v and unzip it in USB. Do not rename the UPG folder. Follow IMPORTANT NOTE for (HTB3280G/12 HTB3520/40/55/94/98 HTB3520G/12/51 HTB3550/40/98 HTB3550G/12 HTB3580/40/79/98 HTB3580G/12/51 HTB4520G/51 HTB4580G/51 HTB5260G/12 HTB5520/55/94/98 HTB5520G/12 HTB5550/98

More information

C A S P E R USER GUIDE V ERSION 10

C A S P E R USER GUIDE V ERSION 10 TM C A S P E R TM USER GUIDE V ERSION 10 Copyright and Trademark Information Information in this document is subject to change without notice. Federal law prohibits unauthorized use, duplication, and distribution

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

In the following table, asterisks (*) indicate the factory default setting. First level Second level Third level Fourth level Values

In the following table, asterisks (*) indicate the factory default setting. First level Second level Third level Fourth level Values Supplies menu To display: At the product control panel, press the Home menu. button, and then select the Supplies In the following table, asterisks (*) indicate the factory default setting. Table 3-18

More information

4190 Information Management System (IMS) Software Upgrade Instructions

4190 Information Management System (IMS) Software Upgrade Instructions 4190 Information Management System (IMS) Software Upgrade Instructions Introduction This publication describes the software upgrade procedure for the 4190 Information Management System (IMS). Inspecting

More information

Unity Loader V2.3 Readme

Unity Loader V2.3 Readme Unity Loader V2.3 Readme Table of Contents 1 SYSTEM REQUIREMENTS... 2 2 SETUP PROCEDURE... 2 2.1 Recommendations before installation... 2 2.2 Unity Loader Setup procedure... 2 2.3 Communication Drivers

More information

Mac OS 8 Installation Instructions for Sonnet Presto and Presto Plus Processor Upgrade Cards

Mac OS 8 Installation Instructions for Sonnet Presto and Presto Plus Processor Upgrade Cards Mac OS 8 Installation Instructions for Sonnet Presto and Presto Plus Processor Upgrade Cards What You Need: Sonnet Presto or Presto Plus processor upgrade card. Sonnet Presto 8 Enabler Boot diskette. Macintosh

More information

EntraPass (W10) Installation Guide Kantech-OnBoard systems

EntraPass (W10) Installation Guide Kantech-OnBoard systems Overview Purpose ExacqVision recorders now include Kantech EntraPass Corporate Edition software. The purpose of this document is to guide the technician or installer through the process of installing and

More information

User Manual PDUTracker

User Manual PDUTracker User Manual PDUTracker Management Software for PDU Table of Contents 1. Overview... 1 1.1. Introduction... 1 1.2. Features... 1 2. Install and Uninstall... 1 2.1. System Requirement... 1 2.2. Software

More information

Image Backup and Recovery Procedures For Windows 7

Image Backup and Recovery Procedures For Windows 7 Image Backup and Recovery Procedures For Windows 7 Thank you for purchasing a Fujitsu computer. Fujitsu is committed to bringing you the best computing experience with your new system. It is very important

More information

EMCO MSI Package Builder Professional 7. Copyright EMCO. All rights reserved.

EMCO MSI Package Builder Professional 7. Copyright EMCO. All rights reserved. EMCO MSI Package Builder Professional 7 Copyright 2001-2017 EMCO. All rights reserved. Company web site: emcosoftware.com Support e-mail: support@emcosoftware.com Table of Contents Chapter... 1: Introduction

More information

Laplink PCmover Windows Upgrade Assistant

Laplink PCmover Windows Upgrade Assistant Laplink PCmover Windows Upgrade Assistant User Guide Customer Service/Technical Support: Web: http://www.laplink.com/contact E-mail: CustomerService@laplink.com Tel (USA): +1 (425) 952-6001 Fax (USA):

More information

HMI30 BASIC Basic configuration > see note 1

HMI30 BASIC Basic configuration > see note 1 HMI 30 BASIC HMI30 BASIC LCD TFT 5,7" Touch-Screen 5,7" ARM Cortex A8, 1 GHz 512 MB RAM 256 MB NAND-Flash 2GB emmc Windows WEC7 Premium HMI 3 BASIC CE runtime ASEM UBIQUITY POR-Eth CE runtime aluminium

More information

IT Essentials v6.0 Windows 10 Software Labs

IT Essentials v6.0 Windows 10 Software Labs IT Essentials v6.0 Windows 10 Software Labs 5.2.1.7 Install Windows 10... 1 5.2.1.10 Check for Updates in Windows 10... 10 5.2.4.7 Create a Partition in Windows 10... 16 6.1.1.5 Task Manager in Windows

More information

Avnet Zynq Mini Module Plus Embedded Design

Avnet Zynq Mini Module Plus Embedded Design Avnet Zynq Mini Module Plus Embedded Design Version 1.0 May 2014 1 Introduction This document describes a Zynq standalone OS embedded design implemented and tested on the Avnet Zynq Mini Module Plus. 2

More information

FuzeDrive. User Guide. for Microsoft Windows 10 x64. Version Date: June 20, 2018

FuzeDrive. User Guide. for Microsoft Windows 10 x64. Version Date: June 20, 2018 for Microsoft Windows 10 x64 User Guide Version 1.3.4 Date: June 20, 2018 2018 Enmotus, Inc. All rights reserved. FuzeDrive, FuzeRAM and vssd are a trademarks of Enmotus, Inc. All other trademarks and

More information

CleanMyPC User Guide

CleanMyPC User Guide CleanMyPC User Guide Copyright 2017 MacPaw Inc. All rights reserved. macpaw.com CONTENTS Overview 3 About CleanMyPC... 3 System requirements... 3 Download and installation 4 Activation and license reset

More information

Lesson 2: Installing Windows 8.1. MOAC : Configuring Windows 8.1

Lesson 2: Installing Windows 8.1. MOAC : Configuring Windows 8.1 Lesson 2: Installing Windows 8.1 MOAC 70-687: Configuring Windows 8.1 Overview Exam Objective 1.2: Install Windows 8.1 o Install as Windows To Go o Migrate from previous versions of Windows to Windows

More information

Tofino CMP Installation & Upgrade Guide Tofino CMP Version Tofino Firmware Version 1.7.0

Tofino CMP Installation & Upgrade Guide Tofino CMP Version Tofino Firmware Version 1.7.0 Tofino CMP Installation & Upgrade Guide Tofino CMP Version 1.7.0 Tofino Firmware Version 1.7.0 March 9, 2012 Copyright Information By res Security Inc and MT L Instrum ents While this information is presented

More information

Quick Start Guide TABLE OF CONTENTS COMMCELL ARCHITECTURE OVERVIEW COMMCELL SOFTWARE DEPLOYMENT INSTALL THE COMMSERVE SOFTWARE

Quick Start Guide TABLE OF CONTENTS COMMCELL ARCHITECTURE OVERVIEW COMMCELL SOFTWARE DEPLOYMENT INSTALL THE COMMSERVE SOFTWARE Page 1 of 35 Quick Start Guide TABLE OF CONTENTS This Quick Start Guide is designed to help you install and use a CommCell configuration to which you can later add other components. COMMCELL ARCHITECTURE

More information

SICAM SICAM FCM Configurator

SICAM SICAM FCM Configurator Preface Open Source Software SICAM SICAM FCM Configurator Table of Contents SICAM FCM Configurator 1 Index V02.10 Configuration and Operation E50417-H8940-C592-A3 i NOTE For your own safety, observe the

More information

Software Images. About Software Images. Dependent Factors. Send documentation comments to CHAPTER

Software Images. About Software Images. Dependent Factors. Send documentation comments to CHAPTER CHAPTER 10 This chapter describes how to install and upgrade software images, and introduces the file system. It includes the following sections: About, page 10-1 Essential Upgrade Prerequisites, page

More information

LiveNX Upgrade Guide from v5.1.2 to v Windows

LiveNX Upgrade Guide from v5.1.2 to v Windows LIVEACTION, INC. LiveNX Upgrade Guide from v5.1.2 to v5.1.3 - Windows UPGRADE LiveAction, Inc. 3500 Copyright WEST BAYSHORE 2016 LiveAction, ROAD Inc. All rights reserved. LiveAction, LiveNX, LiveUX, the

More information

Professional. User Guide. Professional. User Guide MN-PCMPRO-EN-06 (REV. 07/2010)

Professional. User Guide. Professional. User Guide MN-PCMPRO-EN-06 (REV. 07/2010) h t t p : / / w w w. l a p l i n k. c o m / h e l p Tel (USA): +1 (425) 952-6001 Fax (USA): +1 (425) 952-6002 E-mail us at CustomerService@laplink.com Tel (UK): +44 (0) 870-2410-983 Fax (UK): +44 (0) 870-2410-984

More information

User Manual. Backup Utility for MiniStation MiniStation. v 2.0

User Manual. Backup Utility for MiniStation MiniStation.   v 2.0 User Manual Backup Utility for MiniStation MiniStation www.buffalotech.com v 2.0 MiniStation Utility Installation Install the Backup Utility by running the EasySetup Wizard from the MiniStation CD (This

More information

DomiOP ebis504. Tech-note. Highlights

DomiOP ebis504. Tech-note. Highlights DomiOP ebis504 The ebis504 compact 4,3 widescreen display completes the ebis series with a no-compromise lowcost product. The built-in dual 100Mb Ethernet interfaces with switch functionality enhance its

More information

Manual Format Windows Xp Computer Using Pendrive

Manual Format Windows Xp Computer Using Pendrive Manual Format Windows Xp Computer Using Pendrive If you have windows XP ISO then mount image to Virtual drive using ultraiso. If ultraiso is not Then Click Next button and your USB pen drive will be formatted.

More information

The Data timeout plugin PRINTED MANUAL

The Data timeout plugin PRINTED MANUAL The Data timeout plugin PRINTED MANUAL Data timeout plugin All rights reserved. No parts of this work may be reproduced in any form or by any means - graphic, electronic, or mechanical, including photocopying,

More information

ZoomText 11 USB. Setup Guide

ZoomText 11 USB. Setup Guide ZoomText 11 USB Setup Guide Copyrights ZoomText Magnifier Copyright 2017, Freedom Scientific, Inc. All Rights Reserved. ZoomText Magnifier/Reader Copyright 2017, Freedom Scientific, Inc. All Rights Reserved.

More information

ViconNet Version 6 XX Installation and Upgrade Guide.

ViconNet Version 6 XX Installation and Upgrade Guide. Installation and Upgrade Guide XX222-01-02 ViconNet Version 6 Vicon Industries Inc., 89 Arkay Drive, Hauppauge, New York 11788 Tel: 631-952-2288 Fax: 631-951-2288 Toll Free: 800-645-9116 24-Hour Technical

More information

Oracle Enterprise Single Sign-on Logon Manager. Installation and Setup Guide Release E

Oracle Enterprise Single Sign-on Logon Manager. Installation and Setup Guide Release E Oracle Enterprise Single Sign-on Logon Manager Installation and Setup Guide Release 10.1.4.1.0 E12635-01 March 2009 Oracle Enterprise Single Sign-on, Installation and Setup Guide, Release 10.1.4.1.0 E12635-01

More information

XLink EzRollBack Pro User Manual Table Contents

XLink EzRollBack Pro User Manual Table Contents XLink EzRollBack Pro User Manual Table Contents Chapter 1 Welcome to XLink's EzRollback... 2 1.1 System Requirements... 4 1.2 Installation Guide... 5 1.3 License Information... 9 1.4 How To Get Help From

More information

User Manual. cmt-iv5 Startup Guide

User Manual. cmt-iv5 Startup Guide User Manual cmt-iv5 Startup Guide v 2.2 JAN 8, 2016 Table of Contents Chapter1. Overview... 1 1.1. Specification... 1 1.2. Dimensions... 2 1.3. Ethernet port... 3 1.4. CR1225 battery... 3 1.5. Power connection...

More information

2. install windows vista

2. install windows vista 2. install windows vista Windows Vista comes preloaded on many brand-new PCs. If you already have a computer with Windows Vista installed, you can go directly to Chapter 3, Move from another PC. If you

More information

This chapter covers the following items: System requirements to use the program Installation instructions for the program

This chapter covers the following items: System requirements to use the program Installation instructions for the program Installation Overview This chapter covers the following items: System requirements to use the program Installation instructions for the program System Requirements for the Program To use the program, you

More information

Finding information on your computer

Finding information on your computer Important Be sure to create recovery discs immediately after your computer is ready for use because there are no recovery discs provided with the computer. For instructions on how to create the recovery

More information

DVR 528 Digital Video Camera

DVR 528 Digital Video Camera DVR 528 Digital Video Camera User Manual 2010 Sakar International, Inc. All rights reserved. Windows and the Windows logo are registered trademarks of Microsoft Corporation. All other trademarks are the

More information

The Aggregator plugin PRINTED MANUAL

The Aggregator plugin PRINTED MANUAL The Aggregator plugin PRINTED MANUAL Aggregator plugin All rights reserved. No parts of this work may be reproduced in any form or by any means - graphic, electronic, or mechanical, including photocopying,

More information

v5: How to restore a backup image

v5: How to restore a backup image This article describes how to restore a backup image Restoring a backup image is very simple using Macrium Reflect. If the image contains only data, it is a matter of restoring it back to its original

More information

How to update OS image from V1421 to V1501 by Exe file

How to update OS image from V1421 to V1501 by Exe file Author Sean Hsu Version 1.0.0 Date 2010/4/20 Page 1/13 How to update OS image from V1421 to V1501 by Exe file Applies to: Platform OS version WinPAC/ViewPAC utility version WP-8x3x N/A N/A WP-8x4x All

More information

Sage Installation and System Administrator s Guide. March 2019

Sage Installation and System Administrator s Guide. March 2019 Sage 100 2019 Installation and System Administrator s Guide March 2019 2019 The Sage Group plc or its licensors. All rights reserved. Sage, Sage logos, and Sage product and service names mentioned herein

More information

How to Update NN3D to v2.07 (Combo Update) MFDBB

How to Update NN3D to v2.07 (Combo Update) MFDBB How to Update NN3D to v2.07 (Combo Update) MFDBB 1. NN3D v2.07 Update Introduction MFDBB The combo update for the MFDBB requires a USB Jump Drive (USB flash memory stick). Additionally, a USB KEYBOARD

More information

IBM Personal Computer. About Your Software Windows 95, Applications, and Support Software

IBM Personal Computer. About Your Software Windows 95, Applications, and Support Software IBM Personal Computer About Your Software Windows 95, Applications, and Support Software IBM Personal Computer About Your Software Windows 95, Applications, and Support Software IBM Note Before using

More information

Simplex 4190 TrueSite Workstation (TSW) Software Upgrade Instructions

Simplex 4190 TrueSite Workstation (TSW) Software Upgrade Instructions Simplex 4190 TrueSite Workstation (TSW) Software Upgrade Instructions Introduction This publication describes the software upgrade procedure for the Simplex 4190 TrueSite Workstation (TSW). Inspecting

More information

MarkzTools User Guide Markzware

MarkzTools User Guide Markzware MarkzTools User Guide 2017 Markzware MarkzTools Table of Contents MarkzTools for InDesign Mac System Requirements... 3 MarkzTools for InDesign Subscription License Model... 4 Installing MarkzTools for

More information

Download instructions for DataTrace Pro software

Download instructions for DataTrace Pro software Download instructions for DataTrace Pro software Please follow the steps below to download DataTrace Pro software 1. Go to the DataTrace Pro Downloads web page www.cik-solutions.de/datatrace-support 2.

More information

JMobile Suite User Manual

JMobile Suite User Manual JMobile Suite User Manual This document contains information for JMobile Suite on-line help, accessible from JMobile Studio\Help command Sitek S.p.A. PTn343 Ver. 1.26 Copyright 2011 Sitek S.p.A. Verona,

More information

PassMark Software. White paper Using BurnInTest in a production line environment by. Edition: 1.0. BurnInTest Version: 3.2

PassMark Software. White paper Using BurnInTest in a production line environment by. Edition: 1.0. BurnInTest Version: 3.2 White paper Using BurnInTest in a production line environment by Edition: 1.0 Date: 18/July/2003 BurnInTest Version: 3.2 BurnInTest is a trademark of software BurnInTest in a production line environment

More information

TouchKit Touch Panel User manual for Windows9X/ME Version: 3.1.4

TouchKit Touch Panel User manual for Windows9X/ME Version: 3.1.4 TouchKit Touch Panel User manual for Windows9X/ME Version: 3.1.4 TouchKit Touch Panel v3.1.4 0 CONTENT CHAPTER 1. TOUCH PANEL CONTROLLER... 2 1.1 CONTROLLER... 2 1.2 SPECIFICATIONS AND FEATURES... 3 CHAPTER

More information

Installation and Setup Guide

Installation and Setup Guide Installation and Setup Guide to Diana SUNDE VDI Cloud Computing Terminal 1 1 Hardware Configuration of Host PC (Server)----------------------------------------------------3 2 The Installation of vpoint

More information

Administrator Guide. Windows Embedded Standard 7

Administrator Guide. Windows Embedded Standard 7 Administrator Guide Windows Embedded Standard 7 Copyright 2010, 2012 2015, 2017 HP Development Company, L.P. Citrix and XenDesktop are registered trademarks of Citrix Systems, Inc. and/or one more of its

More information

Download the current release* of VirtualBox for the OS on which you will install VirtualBox. In these notes, that's Windows 7.

Download the current release* of VirtualBox for the OS on which you will install VirtualBox. In these notes, that's Windows 7. Get VirtualBox Go to www.virtualbox.org and select Downloads. VirtualBox/CentOS Setup 1 Download the current release* of VirtualBox for the OS on which you will install VirtualBox. In these notes, that's

More information

IRONKEY WORKSPACE PROVISIONING TOOL 1.3. User Guide

IRONKEY WORKSPACE PROVISIONING TOOL 1.3. User Guide IRONKEY WORKSPACE PROVISIONING TOOL 1.3 User Guide Copyright 2014 Imation Corp. Imation and Imation logo, IronKey and IronKey logo are trademarks of Imation Corp. All other trademarks are the property

More information

The following documents are included with your Sony VAIO computer.

The following documents are included with your Sony VAIO computer. Documentation The following documents are included with your Sony VAIO computer. Printed Documentation Quick Start Guide Describes the process from unpacking to starting up your VAIO. Troubleshooting and

More information

WinLock Remote Administrator

WinLock Remote Administrator WinLock Remote Administrator User's Manual Copyright Crystal Office Systems. All rights reserved. www.crystaloffice.com Windows is a registered trademark owned by Microsoft Corporation. All other mentioned

More information

How to install Virtuoso Chromeleon Integration Software! Only valid for Microsoft Windows 7 64bit version!

How to install Virtuoso Chromeleon Integration Software! Only valid for Microsoft Windows 7 64bit version! How to install Virtuoso Chromeleon Integration Software! Only valid for Microsoft Windows 7 64bit version! 1. You need Chromeleon 7.2 SR1 Muc installed on your computer 2. Install PI Gateway software (gatewayssetup.msi)

More information

T29 - New PanelView TM 800 HMI Family

T29 - New PanelView TM 800 HMI Family T29 - New PanelView TM 800 HMI Family PUBLIC PUBLIC - 5058-CO900G 2 Introducing PanelView 800 HMI Family 3 sizes to suit various application needs 3 High Resolution with 65K Colors Support more complex

More information

AgcCls. AgcCls Installation & User Manual. Concurrent License Server for WinIGS. Software Version April 2017

AgcCls. AgcCls Installation & User Manual. Concurrent License Server for WinIGS. Software Version April 2017 AgcCls Concurrent License Server for WinIGS AgcCls Installation & User Manual Software Version 2.04 April 2017 Copyright A. P. Sakis Meliopoulos 1998-2017 NOTICES Copyright Notice This document may not

More information