1 of 5 17/06/2013 9:10 AM

Size: px
Start display at page:

Download "1 of 5 17/06/2013 9:10 AM"

Transcription

1 1 of 5 17/06/2013 9:10 AM

2 2 of 5 17/06/2013 9:10 AM RUNNING ADJUSTMENTS BATCH PROCESSING FROM THE COMMAND LINE Using the STAR*NET Batch File Feature STAR*NET can be executed from a command line and told to run a given project. Upon completion, it writes a run status file and exits. If you wish to use this feature, you or your staff must have the ability to create and execute a batch file (*.bat) and also create additional programs to parse the various output files if that is required for your use for running STAR*NET in a batch fashion. Below is a simple batch file we used to test STAR*NET using the batch file feature. The batch file executes STAR*NET, opens up an existing project Trav3D.prj and then the /RUN command-line option causes the program to run an adjustment. Upon completion of the run, a status file Trav3D.run file is created to document the status of the run. The test batch off :Top REM User programs for constructing STAR*NET data go here REM Run STAR*NET "C:\Program Files\MicroSurvey\Starnet V6\StarNet.exe" C:\JOBS\BatchTest\Trav3D.prj /RUN echo STAR*NET ran and created a run status file C:\JOBS\BatchTest\Trav3D.run... REM User programs for checking run status file and analyzing data files go here REM User programs may sleep for a time betweem runs REM User programs may loop to top or go to End depending on the logic scheme REM This batch test loops to the top and keeps rerunning until manual termination echo echo This test loops to run again - Press Ctrl-C to terminate goto Top :End Note that there are remarks before and after the command line that runs STAR*NET. These lines indicate location of your programs that prepare STAR*NET data and analyze resulting STAR*NET output. The batch test above simply loops continuously - starting up STAR*NET, running it, writing a status file, exiting and then doing all over again until you manually terminate by pressing Control-C. Please let us know if you have questions about this. Notes: 1. The format for the command line that executes the STAR*NET program is: Path\StarNet.exe Path\ProjectName.prj /RUN The /RUN parameter causes the program to run the adjustment and to create a run status file upon completion. By default, the name of the status file is the project name with a run extension and it will be located in the same directory as the the original prj file. If it is preferred that the status file be named something else and written to a specified directory, you can add a

3 3 of 5 17/06/2013 9:10 AM colon : to the /RUN parameter and follow it by complete a path and file name. For example, the line below will create the status file in C:\MyTests with a Status.txt name. Path\StarNet.exe Path\ProjectName.prj /RUN:C:\MyTests\Status.txt If the path and/or filename for either the.prj and/or the specified status file contains a space character, you must use the equivalent short DOS-compatible 8.3 filename for that subfolder/file. To determine the short 8.3 file/folder name, at the command line type "dir /x" to view the short filenames. For example, the path to a project in your My Documents folder might be: C:\Documents and Settings\Your Name\My Documents\MicroSurvey\StarNet\My Project.prj but for each folder or file containing a space you must specify its equivalent DOS-compatible 8.3 name like: C:\DOCUME~1\YOURNA~1\MYDOCU~1\MicroSurvey\StarNet\MYPROJ~1.prj The status file contains one or more lines. The first line always contains a single number which is the status of the run. This number is constructed by setting status bits as defined below. One or more bits are combined to create the status number. A program written by your programmers can read this status number and by examining the individual bits that are set, determine some resulting information about the run. For example, your program logic may be designed to continue the batch process if the adjustment was completed and only bit 0x0001 and/or 0x0002 were set. But it may be designed to terminate if 0x0004 or 0x0008 bits were on. If any of the status bits set in the lower group are on, your batch program sequence must be designed to terminate because the adjustment did not complete! The following shows the status bits (expressed in hexidecimal) and the meaning of each: Adjustment completed: Run Warnings = 0x0001 Run Failed Chi Square Test Lower = 0x0002 Run Failed Chi Square Test Upper = 0x0004 Run Did Not Converge = 0x0008 Adjustment not started or not completed Run Errors = 0x0100 Security Key Failure = 0x0200 Project File Open Failure = 0x0400 Project File Errors = 0x0800 Unable To Start Adjustment = 0x1000 When the status number is zero, this indicates the adjustment ran successfully and there were no errors or warnings. When there are errors or warnings, the status number will be non-zero and your program should decide what to do by testing which bits are set in the status number. When the status number is non-zero, additional lines are printed in the file giving you a way to visually check which errors or warnings were found. The example status file below shows the status number (expressed in decimal) followed by the individual bits (also expressed in decimal) that were set. This adjustment did not run because there was a problem accessing the security key most likely it could not be found by STAR*NET Security Key Failure

4 4 of 5 17/06/2013 9:10 AM The example status file below shows the status number (expressed in decimal) followed by the individual bits (expressed in decimal) that were set. In this example, the adjustment successfully ran, but there were warnings. The fact that the adjustment did not converge should be reason enough for your to terminate the batch process so you can determine why this is happening Run Warnings 8 Run Did Not Converge 4 Run Failed Chi Square Test Upper Bound 4. When STAR*NET is executed from a batch file as illustrated in the example of the first page, before the run status file is written for the current run, STAR*NET will delete the run status file from a previous run if one exists.therefore, since the next command in the batch file will not be executed until STAR*NET has finished, the run status file is guaranteed to be fresh. However, if STAR*NET is executed from another program in the batch file (i.e. it becomes a separate process), there is no guarantee that STAR*NET will finish and and create a new run status file before another program in the batch file checks for it. In case you wish to do this, we have another program called WaitForFile which should be executed just before your program that checks the run status file. Note that to use this program, it will be your responsibility to delete an existing run status file before the batch program runs STAR*NET. The WaitForFile.exe program and command line parameters are as follows: WaitForFile.exe path\filename [ interval [ interval_count ] Filename: Interval: Full or relative path Sleep time in milliseconds between checks for file Optional, default is 100 ms Interval_count: Number of check attempts before timeout Optional (to be present requires interval to also be present Default: no limit Return value: 0 File Found 1 Timeout 2 Bad parameter found Again, this program (or a similar facility written by your programmers) need be used only when the execution of STAR*NET is not started directly from the batch file. See next page for an example of its use in a batch file. The following illustrates how the WaitForFile program might be used in a batch file. This batch file is basically the same as the original example except that STAR*NET is run from another program - not directly from the batch program. This causes STAR*NET to be run in a separate process. Any existing run status file must be deleted before STAR*NET is executed as illustrated below. A separate program WaitForFile.exe is then executed to wait for a status file to be created from STAR*NET.

5 5 of 5 17/06/2013 9:10 off :Top REM User programs for constructing STAR*NET data go here REM Delete existing run status file if present Del C:\WINSTAR\BatchTest\Trav3D.run REM Assume some other user program runs the STAR*NET program here using the same REM project name as illustrated in the original batch example. STAR*NET is now REM running as a separate process... REM Now run the WaitForFile program which keeps looking for the run status file WaitForFile C:\WINSTAR\BatchTest\Trav3D.run on errorlevel 2 goto BadParam on errorlevel 1 goto Timeout REM No errors returned from WaitFor File, therefore the run status file was found echo STAR*NET ran and created a run status file C:\WINSTAR\BatchTest\Trav3D.run... REM User programs for checking run status file and analyzing data files go here REM User programs may sleep for a time betweem runs REM User programs may loop to top or go to End depending on the logic scheme REM This batch test loops to the top and keeps rerunning until manual termination echo echo This test loops to run again - Press Cntrl-C to terminate goto Top :BadParam echo Bad Parameter for WaitForFile program goto End :Timeout echo Timeout for WaitForFile program goto End :End

Introduction. 1. Deactivating Anti-Executable. 2. Updating the virus definitions. 3. Reactivating Anti-Executable.

Introduction. 1. Deactivating Anti-Executable. 2. Updating the virus definitions. 3. Reactivating Anti-Executable. Introduction The process of updating virus definitions on workstations protected by Faronics Anti-Executable Enterprise involves three fundamental steps: 1. Deactivating Anti-Executable. 2. Updating the

More information

Programming Fundamentals

Programming Fundamentals Programming Fundamentals Computers are really very dumb machines -- they only do what they are told to do. Most computers perform their operations on a very primitive level. The basic operations of a computer

More information

Advanced Batch Files. Ch 11 1

Advanced Batch Files. Ch 11 1 Advanced Batch Files Ch 11 1 Overview Quick review of batch file commands learned in earlier chapters. Ch 11 2 Overview Advanced features of these commands will be explained and used. Ch 11 3 Overview

More information

Using

Using Using www.bcidaho.net Blue Cross supports a wide variety of clients and protocols for uploading and downloading files from our servers, including web-based tools, traditional clients and batch processing.

More information

Introduction. 1. Deactivating Anti-Executable Enterprise. 2. Updating the virus definitions 3. Reactivating Anti-Executable Enterprise.

Introduction. 1. Deactivating Anti-Executable Enterprise. 2. Updating the virus definitions 3. Reactivating Anti-Executable Enterprise. Introduction The process of updating virus definitions on workstations protected by Faronics Anti-Executable Enterprise involves three fundamental steps: 1. Deactivating Anti-Executable Enterprise. 2.

More information

Initial flashing instruction

Initial flashing instruction = D-Link DIR-300 Rev.A = Airlink101 AR430W = Airlink101 AR335W Contents 1 Initial flashing instruction 1.1 Install RedBoot 1.2 Install DD-WRT 1.3 Recovery and Upgrade 1.4 Redboot access script for Windows

More information

The QuickCalc BASIC User Interface

The QuickCalc BASIC User Interface The QuickCalc BASIC User Interface Running programs in the Windows Graphic User Interface (GUI) mode. The GUI mode is far superior to running in the CONSOLE mode. The most-used functions are on buttons,

More information

Command line and batch files Molekular Phylogenetics Practical

Command line and batch files Molekular Phylogenetics Practical Command line and batch files Molekular Phylogenetics Practical 2 1.1 The command line Alternative to the graphical user interface (GUI) of an operating system Advantages: Commands can be saved for repeated

More information

Post Build Event Failed With Error Code 1

Post Build Event Failed With Error Code 1 Post Build Event Failed With Error Code 1 When I paste that command on the command line, it works properly with no error message. Most of the same issues I've found were caused by not surrounding. I'm

More information

Extending Your Patch Management Framework

Extending Your Patch Management Framework VMWARE TECHNICAL NOTE VMware ACE Extending Your Patch Management Framework This document explains how to use the custom quarantine feature of VMware ACE to enforce the patch management policies that have

More information

COURSE OUTLINE. Division of Business and Technology NET 239. WAN Data Communications. Credits: 3 Class Hours: 2 Lab Hours: 2

COURSE OUTLINE. Division of Business and Technology NET 239. WAN Data Communications. Credits: 3 Class Hours: 2 Lab Hours: 2 COURSE OUTLINE Division of Business and Technology NET 239 WAN Data Communications Approved Catalog Description Covers the technology and terminology required to use routing and switching technologies

More information

Administration Guide. BlackBerry Resource Kit for BlackBerry UEM. Version 12.6

Administration Guide. BlackBerry Resource Kit for BlackBerry UEM. Version 12.6 Administration Guide BlackBerry Resource Kit for BlackBerry UEM Version 12.6 Published: 2016-12-16 SWD-20161128100753289 Contents Compatibility with other releases...4 Log Monitoring Tool... 5 Specifying

More information

Lab 3.1 : The Task Manager

Lab 3.1 : The Task Manager Lab 3.1 : The Task Manager Using the Windows NT or Windows 2000 Task Manager, you can examine processes that are running, the number of threads a process has, system performance, and page faults. Windows

More information

How to Archive s in Outlook 2007

How to Archive  s in Outlook 2007 How to Archive Emails in Outlook 2007 Step 1: Create an archive folder. 1. Go to File and choose Archive 2. You can have it auto-archive or set the parameters to where it creates an empty archive. Due

More information

MicroSurvey STAR*NET 9

MicroSurvey STAR*NET 9 STAR*NET 9.1 is a maintenance release that includes new improvements and fixes across all Pro, Plus, Std and Lev editions. MicroSurvey STAR*NET 9.1 introduces STAR*NET Ultimate an all-new, top-tier edition

More information

Manual Script Windows Batch If Condition. Statement Examples >>>CLICK HERE<<<

Manual Script Windows Batch If Condition. Statement Examples >>>CLICK HERE<<< Manual Script Windows Batch If Condition Statement Examples IF DEFINED MyVar (ECHO MyVar IS defined) ELSE (ECHO MyVar is NOT defined). The following code, which works in batch files for all MS-DOS, Windows.

More information

TreeCollapseCL 4 Emma Hodcroft Andrew Leigh Brown Group Institute of Evolutionary Biology University of Edinburgh

TreeCollapseCL 4 Emma Hodcroft Andrew Leigh Brown Group Institute of Evolutionary Biology University of Edinburgh TreeCollapseCL 4 Emma Hodcroft Andrew Leigh Brown Group Institute of Evolutionary Biology University of Edinburgh 2011-2015 This command-line Java program takes in Nexus/Newick-style phylogenetic tree

More information

4. Application Programming

4. Application Programming 4. Application Programming 4.4 Remote Access 4.4.1 Networking an STK500 Web accessed data acquisition and remote programming are two aspects of networking that can be achieved using an STK500 evaluation

More information

Loading 4A DOS or COMMAND DOS into a RAM device or Super Cart is quite easy.

Loading 4A DOS or COMMAND DOS into a RAM device or Super Cart is quite easy. This program is assumed to be ABANDONWARE This manual re-created, edited and enhanced in July of 2013 LOADING INSTRUCTIONS Loading 4A DOS or COMMAND DOS into a RAM device or Super Cart is quite easy. Choose

More information

How do I apply the patch files?

How do I apply the patch files? How do I apply the patch files? 1. Once the patch file has been saved to your hard disk, use Windows Explorer (Start > Programs > [Accessories > ] Windows Explorer) to browse to the directory where the

More information

MATLAB for MAPH 3071 Lab 2

MATLAB for MAPH 3071 Lab 2 MATLAB for MAPH 3071 Lab 2 1. Iteration Method - Continued We have looked at for loops as a control structure. We will now introduce more ways to control iterations. While Loops: MATLAB provides another

More information

How do I apply the patch files? The instructions shown here are only for the version patch.

How do I apply the patch files? The instructions shown here are only for the version patch. How do I apply the patch files? The instructions shown here are only for the version 10.2.1 patch. 1. Once the patch file has been saved to your hard disk, use Windows Explorer (Start > Programs > Windows

More information

Manual Script Windows Batch If Condition. Statement Example >>>CLICK HERE<<<

Manual Script Windows Batch If Condition. Statement Example >>>CLICK HERE<<< Manual Script Windows Batch If Condition Statement Example IF DEFINED MyVar (ECHO MyVar IS defined) ELSE (ECHO MyVar is NOT defined). The following code, which works in batch files for all MS-DOS, Windows.

More information

Security Correlation Server Redundancy And Failover Guide

Security Correlation Server Redundancy And Failover Guide CorreLog Security Correlation Server Redundancy And Failover Guide This document provides a discussion of techniques to implement CorreLog Server redundancy and failover, for high-availability usage of

More information

Using Vista, Firefox for browser, Google for search engine and AVG for viruses.

Using Vista, Firefox for browser, Google for search engine and AVG for viruses. Install OpenCPN and Training Chart For those who are comfortable with computers, we are going to download and install OpenCPN, and then copy two charts from the Chart Navigator CD into a directory we have

More information

Chapter 4 Using the Entry-Master Disk Utilities

Chapter 4 Using the Entry-Master Disk Utilities Chapter 4 Using the Entry-Master Disk Utilities Now that you have learned how to setup and maintain the Entry-Master System, you need to learn how to backup and restore your important database files. Making

More information

off REM REM Batch File Name: DRINK1.BAT REM Purpose: Demonstrate the use ECHO,

off REM REM Batch File Name: DRINK1.BAT REM Purpose: Demonstrate the use ECHO, DRINK1.BAT Batch File Name: DRINK1.BAT Purpose: Demonstrate the use of @, ECHO, and @ECHO Demonstrate the use of Demonstrate the use of the environment variable and SET Execution: C:\>DRINK SET cup=pepsi

More information

For correct operation of the AutoLogon feature when using the Georgia SoftWorks SSH2/Telnet Client two steps must occur.

For correct operation of the AutoLogon feature when using the Georgia SoftWorks SSH2/Telnet Client two steps must occur. Automatic Logon Autologon This feature allows you to pre-configure a list of IP addresses that will be able to connect and log on without any User ID, Password or Domain prompting when using the Georgia

More information

Software Verification

Software Verification AUTOMATING THE VERIFICATION CHECKING PROCESS Overview The automated procedure for running the verification check uses Visual Basic for Applications subroutines in specially prepared Excel files. The subroutines

More information

Click OK in the confirmation window. The selected workstations restart in the Thawed state.

Click OK in the confirmation window. The selected workstations restart in the Thawed state. Introduction The process of updating virus pattern files on workstations protected by Deep Freeze Enterprise involves three fundamental steps: 1. Rebooting the workstations into a Thawed state so the updates

More information

HOW TO DISABLE OR STOP AUTO CHKDSK DURING WINDOWS STARTUP

HOW TO DISABLE OR STOP AUTO CHKDSK DURING WINDOWS STARTUP Date: 18/04/2013 Procedure: How to disable or Stop Auto CHKDSK During Windows Startup Source: LINK Permalink: LINK Created by: HeelpBook Staff Document Version: 1.0 HOW TO DISABLE OR STOP AUTO CHKDSK DURING

More information

CONTROL-M/Agent for UNIX and Microsoft Windows

CONTROL-M/Agent for UNIX and Microsoft Windows CONTROL-M/Agent for UNIX and Microsoft Windows Windows Administrator Guide Supporting CONTROL-M/Agent for Windows version 6.2.01 September 15, 2005 Contacting BMC Software You can access the BMC Software

More information

For example, the Control-M Agent for Windows 32-bit is DRKAI _windows.zip and 64-bit is DRKAI _windows_x86_64.zip.

For example, the Control-M Agent for Windows 32-bit is DRKAI _windows.zip and 64-bit is DRKAI _windows_x86_64.zip. How to create BMC Server Automation (BSA) configuration file, depot and job objects for deploying new and upgrading existing Control-M Agents on Microsoft Windows servers This document details the steps

More information

You just told Matlab to create two strings of letters 'I have no idea what I m doing' and to name those strings str1 and str2.

You just told Matlab to create two strings of letters 'I have no idea what I m doing' and to name those strings str1 and str2. Chapter 2: Strings and Vectors str1 = 'this is all new to me' str2='i have no clue what I am doing' str1 = this is all new to me str2 = I have no clue what I am doing You just told Matlab to create two

More information

You can use the WinSCP program to load or copy (FTP) files from your computer onto the Codd server.

You can use the WinSCP program to load or copy (FTP) files from your computer onto the Codd server. CODD SERVER ACCESS INSTRUCTIONS OVERVIEW Codd (codd.franklin.edu) is a server that is used for many Computer Science (COMP) courses. To access the Franklin University Linux Server called Codd, an SSH connection

More information

GASCalc 5.1. Getting Started Guide. Bradley B Bean PE 419 East Columbia Street Colorado Springs, Colorado USA (719)

GASCalc 5.1. Getting Started Guide. Bradley B Bean PE 419 East Columbia Street Colorado Springs, Colorado USA (719) 419 East Columbia Street Colorado Springs, Colorado 80907 USA (719) 578-9391 www.b3pe.com 2019 - All rights reserved. Revision 001 GASCalc and the B-Cubed logo are trademarks of. Windows and associated

More information

Examples: Directory pathname: File pathname: /home/username/ics124/assignments/ /home/username/ops224/assignments/assn1.txt

Examples: Directory pathname: File pathname: /home/username/ics124/assignments/ /home/username/ops224/assignments/assn1.txt ULI101 Week 03 Week Overview Absolute and relative pathnames File name expansion Shell basics Command execution in detail Recalling and editing previous commands Quoting Pathnames A pathname is a list

More information

Using the Envirobase Coding Form. Information for coders

Using the Envirobase Coding Form. Information for coders Using the Envirobase Coding Form Information for coders Version 1.04. 7 Nov 2012 Using the Envirobase Coding Form Information for coders Contents 1 Installing and opening the Envirobase coding form...

More information

False because it for ASCII not EBCDIC Dir /O:order ex. Dir/O:n False because it s a valid command True False because there are lines

False because it for ASCII not EBCDIC Dir /O:order ex. Dir/O:n False because it s a valid command True False because there are lines Instructions: This is an open book pretest. Answer all questions. There are three sections. There are a total of five question pages. The time limit is two hours. Section one: Select only one answer for

More information

PostMaster Enterprise v8.xx Setup Guide Windows

PostMaster Enterprise v8.xx Setup Guide Windows PostMaster Enterprise v8.xx Setup Guide Windows How Do I Carry Out A Fresh Setup Of PMEv8 The complete installation of PMEv8 covers the following steps Start PMEv8 How Do I Carry Out A Fresh Setup Of PMEv8

More information

MATLAB GUIDE UMD PHYS375 FALL 2010

MATLAB GUIDE UMD PHYS375 FALL 2010 MATLAB GUIDE UMD PHYS375 FALL 200 DIRECTORIES Find the current directory you are in: >> pwd C:\Documents and Settings\ian\My Documents\MATLAB [Note that Matlab assigned this string of characters to a variable

More information

Cutting the SAS LOG down to size Malachy J. Foley, University of North Carolina at Chapel Hill, NC

Cutting the SAS LOG down to size Malachy J. Foley, University of North Carolina at Chapel Hill, NC Paper SY05 Cutting the SAS LOG down to size Malachy J. Foley, University of North Carolina at Chapel Hill, NC ABSTRACT Looking through a large SAS LOG (say 250 pages) for NOTE's and WARNING's that might

More information

Xpert / XLite GPRS232 Serial Interface Block USERS MANUAL. Part No Rev. 3.3 July 27, 2009

Xpert / XLite GPRS232 Serial Interface Block USERS MANUAL. Part No Rev. 3.3 July 27, 2009 Xpert / XLite GPRS232 Serial Interface Block USERS MANUAL Part No. 8800-1164 Rev. 3.3 July 27, 2009 Sutron Corporation 22400 Davis Drive Sterling, VA 20164 703.406.2800 www.sutron.com sales@sutron.com

More information

A. Upon receiving this query, I set about writing a program called WINDOS (see News column) to do this very task.

A. Upon receiving this query, I set about writing a program called WINDOS (see News column) to do this very task. HELPLINE Dilwyn Jones Q. How can I rename the medium name of some of my QXL.WIN files to something more meaningful than something like 'WIN2'? As I keep my fonts, documents and graphics in separate QXL.WIN

More information

User's Guide. GoldSim Player

User's Guide. GoldSim Player User's Guide GoldSim Player Copyright GoldSim Technology Group LLC, 2001-2017. All rights reserved. GoldSim is a registered trademark of GoldSim Technology Group LLC. Version 12.0 (February 2017) GoldSim

More information

Texas Skyward User Group Conference Emergency Database Restore Requested Lynn Reas

Texas Skyward User Group Conference Emergency Database Restore Requested Lynn Reas Texas Skyward User Group Conference Emergency Database Restore Requested Lynn Reas Emergency Database Restore Requested Are you prepared and ready? Backup Plan on local Skyward server Backup Plan on District

More information

Lab - Common Windows CLI Commands

Lab - Common Windows CLI Commands Introduction In this lab, you will use CLI commands to manage files and folders in Windows. Recommended Equipment A computer running Windows Step 1: Access the Windows command prompt. a. Log on to a computer

More information

Installing & Using CutePDF Writer

Installing & Using CutePDF Writer Page 1 of 6 According to there site CutePDF Writer allows you to: Create professional quality PDF files from almost any printable document. FREE for personal and commercial use! No watermarks! No popup

More information

Automate Secure Transfers with SAS and PSFTP

Automate Secure Transfers with SAS and PSFTP SESUG Paper 115-2017 Automate Secure Transfers with SAS and PSFTP Kyle Thompson, PPD, Morrisville, NC Kenneth W. Borowiak, PPD, Morrisville, NC INTRODUCTION The ability to transfer files between remote

More information

Process Eye Professional. Recall

Process Eye Professional. Recall Process Eye Professional Recall Process Eye Professional Recall User Manual SP104010.101 August 2005 As part of our continuous product improvement policy, we are always pleased to receive your comments

More information

USER S GUIDE MOYEA SOFTWARE CO., LTD. for Moyea Task Dispatcher. December 1, 2007 Document version: 1.0

USER S GUIDE MOYEA SOFTWARE CO., LTD. for Moyea Task Dispatcher. December 1, 2007 Document version: 1.0 MOYEA SOFTWARE CO., LTD. USER S GUIDE for Moyea Task Dispatcher December 1, 2007 Document version: 1.0 Copyright(C) 2003-2007 Moyea Software Co., Ltd. All rights reserved. www.moyea.com TABLE OF CONTENTS

More information

Exceptions Management Guide

Exceptions Management Guide SCI Store Exceptions Management Guide For SCI Store Release 8.5 SCI-DPUG-012 2013 NHS National Services Scotland 1 Introduction... 2 1.1 Purpose... 2 1.1 Intended Audience... 2 1.2 Scope... 2 2 Uploaded

More information

User Set-up - AutoCAD. Version 2015

User Set-up - AutoCAD. Version 2015 User Set-up - AutoCAD Version 2015 INTRODUCTION / Strictly Confidential INTRODUCTION 3 Overview 3 SET UP 4 Your processes and system 4 Install on each computer 4 Configuration files 4 HOW IT WORKS 6 Title

More information

Technical Guide Network Video Management System Tips and Troubleshooting

Technical Guide Network Video Management System Tips and Troubleshooting Technical Guide Network Video Management System Tips and Troubleshooting Network Video Management System October 27, 2017 NVMSTG010 Revision 1.0.0 CONTENTS 1. Overview... 3 1.1. About This Document...

More information

============================================================================

============================================================================ The VcRedist installer failed with error code 1603 Posted by mp26-25 Apr 2011 07:26 Hi, i have try t install it and get this error: The VcRedist installer failed with error code 1603. Features which require

More information

Multiple.minecraft file Organiser + Backuper - Batch File

Multiple.minecraft file Organiser + Backuper - Batch File Downloaded from: justpaste.it/gzhe Multiple.minecraft file Organiser + Backuper - Batch File by Pixel Zerg title Minecraft Files Organiser By Pixel Zerg :Menu echo MENU echo 1 to create an empty new preset

More information

Your File System Applications What s running on your machine It s own devices Networking. L07 - Getting to know your computer

Your File System Applications What s running on your machine It s own devices Networking. L07 - Getting to know your computer Getting to Know Your Computer Your File System Applications What s running on your machine It s own devices Networking Your File System My Computer Directories & Folders Hierarchy File Explorer (Rather

More information

TIBCO Foresight Instream

TIBCO Foresight Instream TIBCO Foresight Instream Validation Highlighter Software Release 8.5.0 July 2015 Two-Second Advantage Important Information SOME TIBCO SOFTWARE EMBEDS OR BUNDLES OTHER TIBCO SOFTWARE. USE OF SUCH EMBEDDED

More information

Copyright 2018, fp Technologies, Inc. of Ohio All Rights Reserved. filepro Installation Windows (Versions 7, 10 and Server Editions)

Copyright 2018, fp Technologies, Inc. of Ohio All Rights Reserved. filepro Installation Windows (Versions 7, 10 and Server Editions) Copyright 2018, fp Technologies, Inc. of Ohio All Rights Reserved These documents and software are covered under the terms and conditions of the fp Technologies of Ohio, Inc. Program License Agreement

More information

Scheduling in SAS 9.2

Scheduling in SAS 9.2 Scheduling in SAS 9.2 The correct bibliographic citation for this manual is as follows: SAS Institute Inc. 2009. Scheduling in SAS 9.2. Cary, NC: SAS Institute Inc. Scheduling in SAS 9.2 Copyright 2009,

More information

15-122: Principles of Imperative Computation

15-122: Principles of Imperative Computation 15-122: Principles of Imperative Computation Lab 0 Navigating your account in Linux Tom Cortina, Rob Simmons Unlike typical graphical interfaces for operating systems, here you are entering commands directly

More information

Extraxi aaa-reports! Automation Configuration Guide

Extraxi aaa-reports! Automation Configuration Guide Extraxi aaa-reports! Automation Configuration Guide Introduction... 2 System Requirements... 3 Reporting Server Computer... 3 Email Server Details... 3 Web/Shared Folders... 3 Windows Scheduler Service...

More information

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

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

More information

BATCH FILE PROGRAMMING

BATCH FILE PROGRAMMING BATCH FILE PROGRAMMING Chapter 1.- Introduction Chapter 2.- The DOS Command Structure Chapter 3.- The Batch Processor Chapter 4.- Special Batch Structures Chapter 5.- The Multiple Batch Files Chapter 6.-

More information

STRAT. A Program for Analyzing Statistical Strategic Models. Version 1.4. Curtis S. Signorino Department of Political Science University of Rochester

STRAT. A Program for Analyzing Statistical Strategic Models. Version 1.4. Curtis S. Signorino Department of Political Science University of Rochester STRAT A Program for Analyzing Statistical Strategic Models Version 1.4 Curtis S. Signorino Department of Political Science University of Rochester c Copyright, 2001 2003, Curtis S. Signorino All rights

More information

MAME - Compilingscript V2.3a

MAME - Compilingscript V2.3a - by Mucci Logo created by JackC 2016 by Mucci Contents Introduction...3 Chapter 1: Installing...4 Chapter 2: How to handle the script...16 Chapter 3: Using the script...17 Chapter 4: Troubleshooting...26

More information

Performance Monitors Setup Guide

Performance Monitors Setup Guide Performance Monitors Setup Guide Version 1.0 2017 EQ-PERF-MON-20170530 Equitrac Performance Monitors Setup Guide Document Revision History Revision Date May 30, 2017 Revision List Initial Release 2017

More information

Brief Guide on Using SPSS 10.0

Brief Guide on Using SPSS 10.0 Brief Guide on Using SPSS 10.0 (Use student data, 22 cases, studentp.dat in Dr. Chang s Data Directory Page) (Page address: http://www.cis.ysu.edu/~chang/stat/) I. Processing File and Data To open a new

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

Scheduling in SAS 9.4, Second Edition

Scheduling in SAS 9.4, Second Edition Scheduling in SAS 9.4, Second Edition SAS Documentation September 5, 2017 The correct bibliographic citation for this manual is as follows: SAS Institute Inc. 2016. Scheduling in SAS 9.4, Second Edition.

More information

MetaArchive BagIt Usage Instructions

MetaArchive BagIt Usage Instructions MetaArchive BagIt Usage Instructions 1. Overview of BagIt 1.1. What is BagIt? BagIt is a file packaging format intended for storing and moving digital content in an organized fashion. A BagIt-formatted

More information

NOTES ABOUT COMMANDS. ATTRIB.exe

NOTES ABOUT COMMANDS. ATTRIB.exe ATTRIB.exe Display or change file attributes. Find Filenames. Syntax ATTRIB [ + attribute - attribute ] [pathname] [/S [/D]] Key + : Turn an attribute ON - : Clear an attribute OFF pathname : Drive and/or

More information

Chapter 3: Deleting and Recycling Cases. 3.1 Deleting a Case

Chapter 3: Deleting and Recycling Cases. 3.1 Deleting a Case Page 1 of 5 Chapter 3: Deleting and Recycling Cases When you determine that case information no longer needs to be stored, you can delete a case from Needles. A deleted case retains basic case information,

More information

General Information. There are certain MATLAB features you should be aware of before you begin working with MATLAB.

General Information. There are certain MATLAB features you should be aware of before you begin working with MATLAB. Introduction to MATLAB 1 General Information Once you initiate the MATLAB software, you will see the MATLAB logo appear and then the MATLAB prompt >>. The prompt >> indicates that MATLAB is awaiting a

More information

Introduction to Computation and Problem Solving

Introduction to Computation and Problem Solving Class 3: The Eclipse IDE Introduction to Computation and Problem Solving Prof. Steven R. Lerman and Dr. V. Judson Harward What is an IDE? An integrated development environment (IDE) is an environment in

More information

Centurion Technologies

Centurion Technologies Centurion Technologies Answer File Installations Updated 03/25/14 Technical Support Available Monday to Friday hours: 8:30AM until 5:30PM CST/CDT 1-844-265-6055 support@centuriontech.com Introduction SmartShield

More information

The People in Dairy Generator

The People in Dairy Generator The People in Dairy Generator Quick reference guide The People in Dairy Generator is a package which includes The People in Dairy Installer.dot, a Microsoft Word template which runs a program to assist

More information

CS 209 Section 52 Lab 1-A: Getting Started with NetBeans Instructor: J.G. Neal Objectives: Lab Instructions: Log in Create folder CS209

CS 209 Section 52 Lab 1-A: Getting Started with NetBeans Instructor: J.G. Neal Objectives: Lab Instructions: Log in Create folder CS209 CS 209 Section 52 Lab 1-A: Getting Started with NetBeans Instructor: J.G. Neal Objectives: 1. To create a project in NetBeans. 2. To create, edit, compile, and run a Java program using NetBeans. 3. To

More information

Before you begin this unattended testing scenario, take the time to perform the following setup tasks:

Before you begin this unattended testing scenario, take the time to perform the following setup tasks: Unattended Testing How To You can use QA Wizard Pro to shorten your testing cycle by combining scripts into a single file that runs unattended overnight or longer. This How To walks you through creating,

More information

Centrify Infrastructure Services

Centrify Infrastructure Services Centrify Infrastructure Services Find Sessions User s Guide August 2018 (release 18.8) Centrify Corporation Legal Notice This document and the software described in this document are furnished under and

More information

Getting Started with Digital File Pro 2

Getting Started with Digital File Pro 2 Getting Started with Digital File Pro 2 With Digital File Pro, you can add download or upload functionality to your site. This can be useful when selling digital goods, providing customers with the ability

More information

Using Etps on Andrew. 1 Accessing Etps

Using Etps on Andrew. 1 Accessing Etps Using Etps on Andrew Copyright c Carnegie Mellon University 2005. This material is based upon work supported by NSF grants MCS81-02870, DCR-8402532, CCR-8702699, CCR-9002546, CCR-9201893, CCR-9502878,

More information

CTECS Connect 2.2 Release Notes December 10, 2009

CTECS Connect 2.2 Release Notes December 10, 2009 (Formerly VTECS) CTECS Connect 2.2 Release Notes December 10, 2009 This document contains information that supplements the CTECS Connect 2.2 documentation. Please visit the CTECS Connect Support area of

More information

Software Installation: AASPI Windows Installation

Software Installation: AASPI Windows Installation AASPI Windows Installation This guide shows a step-by-step installation, running, and uninstallation of AASPI software on Windows machine. Compatibility Currently we support 64-bit Windows XP, 7, 8, 8.1,

More information

Replication. Version

Replication. Version Replication Version 2018.3 Contents Before you start... 3 Principles... 4 Prerequisites... 5 Initial Steps... 6 Post Setup... 7 Supported Operating Systems... 7 Perform the Setup... 8 Read Committed Snapshot

More information

Operating System Interaction via bash

Operating System Interaction via bash Operating System Interaction via bash bash, or the Bourne-Again Shell, is a popular operating system shell that is used by many platforms bash uses the command line interaction style generally accepted

More information

Medtech32 InterBase Backup & Restore Guide

Medtech32 InterBase Backup & Restore Guide Medtech32 InterBase Backup & Restore Guide (March 2017) This user guide contains important information for all Medtech32 users and IT Support Personnel. Please ensure that the document is circulated amongst

More information

InSync Service User Guide

InSync Service User Guide InSync Service User Guide Matrix Logic Corporation 1 Published by Matrix Logic Corporation Copyright 2011 by Matrix Logic Corporation All rights reserved. No part of the content of this manual may be reproduced

More information

Review of PC-SAS Batch Programming

Review of PC-SAS Batch Programming Ronald J. Fehd September 21, 2007 Abstract This paper presents an overview of issues of usage of PC-SAS R in a project directory. Topics covered include directory structures, how to start SAS in a particular

More information

LexiCom Translator Integration Guide

LexiCom Translator Integration Guide LexiCom Translator Integration Guide For Emanio Trading Partner Document Version 2.3 February, 2005 Copyright 1998-2005 Cleo Communications LexiCom Translator Integration Guide This translator guide describes

More information

Basic SeismicHandler Introduction

Basic SeismicHandler Introduction Basic SeismicHandler Introduction Sebastian Rost October 2006 SeismicHandler (SH) is a tool for analyzing digital seismograms. It can be used for the analysis of earthquake records, as well as for examining

More information

Copyright 2004 BMC Software, Inc. All rights reserved. BMC Software, the BMC Software logos, and all other BMC Software product or service names are r

Copyright 2004 BMC Software, Inc. All rights reserved. BMC Software, the BMC Software logos, and all other BMC Software product or service names are r CONTROL-M/Agent for Microsoft Windows Administrator Guide Version 6.1.03 March 31, 2004 Copyright 2004 BMC Software, Inc. All rights reserved. BMC Software, the BMC Software logos, and all other BMC Software

More information

Individual Student Assessment Accessibility Profile (ISAAP)

Individual Student Assessment Accessibility Profile (ISAAP) About the Individual Student Assessment Process and the ISAAP Tool The ISAAP Process The ISAAP process represents a thoughtful and systematic approach to addressing student access needs for the Smarter

More information

0.7 Graphing Features: Value (Eval), Zoom, Trace, Maximum/Minimum, Intersect

0.7 Graphing Features: Value (Eval), Zoom, Trace, Maximum/Minimum, Intersect 0.7 Graphing Features: Value (Eval), Zoom, Trace, Maximum/Minimum, Intersect Value (TI-83 and TI-89), Eval (TI-86) The Value or Eval feature allows us to enter a specific x coordinate and the cursor moves

More information

File Transfer Protocol Tool FTP-WatchDog V3

File Transfer Protocol Tool FTP-WatchDog V3 A. Introduction: FTP-WatchDog is a reliable application program that can be used to send files using the File Transfer Protocol. FTP-WatchDog typically is used with software applications that periodically

More information

How to Update your Oxford University MATLAB TAH Individual License

How to Update your Oxford University MATLAB TAH Individual License How to Update your Oxford University MATLAB TAH Individual License The current MATLAB TAH Campus license expires at the end of August 2018. To continue using MATLAB, the license on your computer needs

More information

Advanced Aircraft Analysis 3.5 Network Floating License Installation

Advanced Aircraft Analysis 3.5 Network Floating License Installation Advanced Aircraft Analysis 3.5 Network Floating License Installation 1 Introduction uses the WIBU-Systems WIBU-KEY Copy Protection concept for the AAA network licensing. The WIBU-KEY concept consists of

More information

AXIBATCH Backing Up Procedure 9/6/2012 BACKUP PROCEDURES AXIBATCH SYSTEMS. Developed By. Control Systems

AXIBATCH Backing Up Procedure 9/6/2012 BACKUP PROCEDURES AXIBATCH SYSTEMS. Developed By. Control Systems AXIBATCH Backing Up Procedure 9/6/2012 BACKUP PROCEDURES AXIBATCH SYSTEMS Developed By Control Systems Version 2.0 July 2009 Filename: BackingUp.doc DATE REV DESCRIPTION ORIG CHEC D APP. 06/09/2012 2 Added

More information

Lockout PRO Online User Guide

Lockout PRO Online User Guide Lockout PRO Online User Guide February 2009 Copyright Wizmo Inc. 2006-2009 Page 1 Contents Setting up the hosted environment... 3 Logging into the Hosted Desktop... 8 Directories... 14 Logging off the

More information

Night Audit Reports Print To File Option Quick Reference Guide

Night Audit Reports Print To File Option Quick Reference Guide Night Audit Reports Print To File Option Quick Reference Guide Configuring the Print to File Option There is now a Print To FILE option within the Night Audit for both UNIX and Windows systems. This function

More information