Moving Files from TSO to a PC

Size: px
Start display at page:

Download "Moving Files from TSO to a PC"

Transcription

1 Moving Files from TSO to a PC WIN9X004 Ginger Carey October 1999 University of Hawai i Information Technology Services "Every big problem was at one time a wee disturbance." Unknown Moving TSO files to another platform is one of those tasks that is easy to keep putting off until another day. However, time is running out to move your files from TSO to another platform. If you wait until the final days of access to TSO to move your files, it will likely be a big problem for you and for Information Technology Services (ITS). In four easy steps, I will show you how to give your TSO files a new life on your PC. Using the word LIFE, I made an acrostic to simplify and help you to remember the steps. L ogon I dentify F TP E xamine LOGON Logon to your TSO ID. If you cannot remember your password or have problems logging on, call the ITS Help Desk at or send to tsomove@hawaii.edu. IDENTIFY Identify the files you want to move. You will need to make some decisions about which files to move. In selecting the files you want to move, consider these three things: if you have not used the file in two or more years, do you really need it; if you do not move the file now, will you have any regrets in a few months when you no longer have access to the file; if it is a file type that you cannot use on a PC such as object code or load module, do you have the source code file to transfer. You probably have active files, migrated files and files that are stored on the backup tapes. Only active files are transferable. You need to recall migrated files and recover backup files for them to be active files. Recall any migrated files and recover any backup files that are no longer in your catalog and are on the backup tapes if you think you may need them. The TSO commands MAPACCT, HLIST, HRECALL, and HRECOVER will help you locate your files and restore the migrated and backup files to active files. Below are brief descriptions and examples of each command. For complete information on these commands, on TSO type "h" followed by the command-name, such as "h hlist". Moving Files from TSO to a PC WIN9X004 Page 1

2 MAPACCT submits a batch job which generates a listing of the names of the active and migrated data sets for your TSO ID. For each active data set, the report lists volume serial identification, date of creation, date of last reference, DCB information, and space utilization information. Include the MEMBERS operand to list members of partitioned data sets in the report. The number and names of data sets listed will be the same as obtained by issuing a catalog node listing on TSO. Examples: mapacct mapacct members HLIST lists information about migrated files as the default. The more important information that you can obtain is a listing of all backup data sets by specifying the BCDS (Backup Control Data Set) operand or the BOTH (migrated and backup) operand. For a printed copy, also specify the operand SYSOUT(A). Pick up the printed copy in the ITS Keller Hall first floor lobby. You may specify SYSOUT(H) instead of SYSOUT(A) if you prefer the output go to HELD output. This command may take a few minutes to execute. For many ID's, the number of data sets listed will be greater than the number listed by issuing a catalog node listing. Cross-check the two listings and identify files to recover using the HRECOVER command. Example: hlist both sysout(a) HRECALL recalls one or more migrated data sets. For a faster and easier method to recall several data sets, go to ISPF panel 3.4 (Data Set List Utility). Press enter to display the data set list. When the data set list is displayed, type hrecall in the Command field by a data set name you want to recall. Then enter = by additional data sets names you want to recall. The = symbol means to execute the previous command. HRECOVER recovers a data set from a backup version or restores a data set from a dump copy. DSNAME is a required positional parameter and is the name of the data set to recover. Example: hrecover myfile.data Creating SAS and SPSS Transport Files The files you want to move need to be in a format that is readable by another operating system. There is no conversion necessary to move your raw data files and your program source code files to your PC. However, if you are moving any SAS or SPSS system files, you will first need to export (convert) the files to a transport format. To create a SAS Version Page 2 Moving Files from TSO to a PC WIN9X004

3 6 transport file or an SPSS portable file, follow the instructions in the following examples. If you also have SAS Version 5 files to move, you first need to convert the Version 5 files to Version 6 using PROC V5TOV6. SAS System File These are the instructions to export a SAS system file into a SAS transport file using an example where the TSO ID is SHOWME and the SAS system file is named PAPAYA.SSD. A SAS transport file named PAPAYA.CPORT is created. When using these instructions to convert your files, substitute your TSO ID and file names. At the TSO READY prompt, type: copy 'sys2.migrate.sas.cport' export.sas nonum This creates a file named EXPORT.SAS on your TSO ID. This file is a template of a SAS program to copy a SAS library to a SAS transport file. Modify this file to contain the correct filenames. Initially, EXPORT.SAS contains the following: LIBNAME SASAV 'SHIRLEY.ANYFILE.SSD01'; FILENAME TRANFILE 'SHIRLEY.ANYFILE.CPORT' SPACE=(CYL,(1,2),RLSE) DISP=(NEW,CATLG) LRECL=80 BLKSIZE=8000 RECFM=FB; PROC CPORT LIBRARY=SASAV FILE=TRANFILE; Edit EXPORT.SAS: On line 1, replace SHIRLEY.ANYFILE.SSD01 with.papaya.ssd On line 2, replace SHIRLEY.ANYFILE.CPORT with.papaya.cport Be sure to leave in the single quotes and prefix the file name with a period. If your SAS file is extremely large, increase the (1,2) on line 3. EXPORT.SAS now contains the following: LIBNAME SASAV '.PAPAYA.SSD'; FILENAME TRANFILE '.PAPAYA.CPORT' SPACE=(CYL,(1,2),RLSE) DISP=(NEW,CATLG) RECL=80 BLKSIZE=8000 RECFM=FB; PROC CPORT LIBRARY=SASAV FILE=TRANFILE; Run EXPORT.SAS by typing at the READY prompt: sas inp(export.sas) If EXPORT.SAS does not run successfully, delete the transport file the job created, make any necessary changes to the SAS program and rerun. In the above example, you would delete PAPAYA.CPORT, make changes to the SAS program EXPORT.SAS and rerun. After EXPORT.SAS successfully, compare the number of observations in the SAS transport file with the SAS system file to verify that the transport file is complete. Moving Files from TSO to a PC WIN9X004 Page 3

4 Another method of creating a SAS transport file is to use PROC COPY and the XPORT engine. When you want to select specific data sets in a SAS library, you need to use PROC COPY. SPSS Save File These are the instructions to export an SPSS save file into an SPSS portable file using an example where the TSO ID is SHOWME and the SPSS save file is named PAPAYA.SPSSYS. An SPSS portable file named PAPAYA.POR is created. When using these instructions to convert your files, substitute your TSO ID and file names. At the TSO READY prompt, type: copy 'sys2.migrate.spss.xport' export.spss nonum This creates a file named EXPORT.SPSS on your TSO ID. This file is a template of an SPSS program to copy an SPSS save file to an SPSS export file. Modify this file to contain the correct filenames. Initially, EXPORT.SPSS contains the following: Line # 1 //SHIRLEYS JOB,'MKE SPSS TRANSPORT',NOTIFY=SHIRLEY, 2 // MSGLEVEL=(1,1),MSGCLASS=H 3 /*JOBPARM TIME=4 4 //* CREATES A SPSS TRANSPORT FILE ON TSO DISK. 5 //* INPUT IS A SPSS SYSTEM FILE ON DISK. 6 // EXEC SPSS 7 //SPSSDATA DD DISP=SHR,DSN=SHIRLEY.TRNACTN.SPSSYS 8 //TRANFILE DD DISP=(NEW,CATLG), 9 // DSN=SHIRLEY.TRNACTN.XPORT, 10 // SPACE=(CYL,(1,2),RLSE),UNIT=TSODA, 11 // DCB=(RECFM=FB,LRECL=80,BLKSIZE=8000) 12 GET FILE=SPSSDATA 13 DISPLAY DICTIONARY 14 LIST CASES FROM 1 TO EXPORT OUTFILE=TRANFILE /MAP Edit your EXPORT.SPSS file: On line 1, change SHIRLEYS to SHOWMES and SHIRLEY to SHOWME On line 7, change SHIRLEY.TRNACTN.SPSSYS to SHOWME.PAPAYA.SPSSYS On line 9, change SHIRLEY.TRNACTN.XPORT to SHOWME.PAPAYA.POR Note: use the file type of POR as the file name extension On line 10, only if you have an exceptionally large SPSS save file, increase 1,2. EXPORT.SPSS now contains the following: 1 //SHOWMES JOB,'MKE SPSS TRANSPORT',NOTIFY=SHOWME, 2 // MSGLEVEL=(1,1),MSGCLASS=H 3 /*JOBPARM TIME=4 4 //* CREATES A SPSS TRANSPORT FILE ON TSO DISK. 5 //* INPUT IS A SPSS SYSTEM FILE ON DISK. Page 4 Moving Files from TSO to a PC WIN9X004

5 6 // EXEC SPSS 7 //SPSSDATA DD DISP=SHR,DSN=SHOWME.PAPAYA.SPSSYS 8 //TRANFILE DD DISP=(NEW,CATLG), 9 // DSN=SHOWME.PAPAYA.POR, 10 // SPACE=(CYL,(1,2),RLSE),UNIT=TSODA, 11 // DCB=(RECFM=FB,LRECL=80,BLKSIZE=8000) 12 GET FILE=SPSSDATA 13 DISPLAY DICTIONARY 14 LIST CASES FROM 1 TO EXPORT OUTFILE=TRANFILE /MAP Run EXPORT.SPSS by typing at the READY prompt: sub export.spss The output from the batch job is routed to HELD output for you to view on TSO. If you need to rerun EXPORT.SPSS, delete PAPAYA.POR first. Now you can logoff TSO and move your TSO files to your PC using FTP. FTP can transfer both sequential and partitioned (PDS) files. FTP FTP is simple to use and allows you to transfer files to or from another system on the network. You can download (copy) the files to your PC from TSO using FTP. Make sure that you have enough disk space on your PC for all the files you plan to transfer. If you do not have an FTP program on your PC, WS_FTP works on an MS-Windows based computer system and is available from When you start WS_FTP, the program will display a "Session Profile" screen similar to the following screen. Moving Files from TSO to a PC WIN9X004 Page 5

6 On this screen specify testmvs.its.hawaii.edu for "Host Name" (the site you wish to connect to), your TSO login ID for "User ID" and your password. Leave the "Host Type:" field set as "auto detect", and the "Account:" field blank. You may want to save this particular combination of site name and account information under a profile name. To do this, specify a "Profile Name" of your choice and then click on the "Apply" button. To use a previously defined profile name, click on the drop-down list button to the right of "Profile Name:" then click on the desired profile name. To actually log into TSO, click on the "OK" button. WS_FTP will proceed to connect to your TSO ID. Logging into TSO will take a few seconds. Once logged in, WS_FTP will display a listing of the current directory for both the local system (your PC) and the remote system (TSO). These lists may also take a few seconds to be displayed. The directories and files on your PC are displayed on the left and your TSO files on the right of the WS_FTP screen. TSO partitioned data sets (PDS) are displayed as folders in the TSO directory. If a PDS file is not being displayed as a folder, the file might have been migrated from the system. A simple listing of the file will recall the data set. It will then display properly as a folder. Page 6 Moving Files from TSO to a PC WIN9X004

7 The WS_FTP screen looks like this: How to Use the WS_FTP Screen To select a file to copy from TSO to your PC, simply select the file name on the remote system's directory by clicking on it. If you have a PDS file on TSO, click on the folder to open the PDS and display the member names. Select the member you want to move by clicking on the member name. You may select multiple file and member names to move (copy) several files and members rather than moving one at a time. Use the standard windows method of selecting multiple files with the SHIFT or CTRL key. When transferring multiple files, the transfer mode (ASCII or binary) must be the same for all the files selected. Directly below the local and remote directory windows, you will see three buttons labeled ASCII, Binary, and Auto. For most TSO files, you want the transfer mode to be ASCII. The notable exception is SAS transport files which must be transferred in binary mode. Select the format by clicking the button. Remember to select the transfer mode you want before clicking the transfer arrow button. The next step is to open the directory on your PC to which you want to transfer the files. Above the file names are the subdirectories names within the current directory. To change to one of the subdirectories on your PC, click on the name, then click on the "ChgDir" button. The file listing for that directory will automatically be displayed. If not currently at the top level (or "root") directory, an entry for ".." will appear as one of the directories. Changing to that directory will place you in the directory that is the "parent" directory for the previous one. Different disk drives are also indicated on the local system's directory --- changing to "[-a-]" will switch to the A: disk drive. To transfer (copy) the files to your PC, press the "<-" left transfer arrow button located between the list boxes. Moving Files from TSO to a PC WIN9X004 Page 7

8 Briefly, these are the steps to transfer files: 1. Select the TSO files to transfer. 2. Select the file transfer mode. 3. Open the PC directory where you want to transfer the files. 4. Click on the left arrow button. 5. Repeat steps 1-4, if necessary. WS_FTP has good online documentation. Click on the button marked Help at the middle bottom of the WS_FTP screen for additional information and assistance. To log off TSO, simply click on the "Close" button in the bottom left corner of the WS_FTP window. The remote system directory information will be cleared from the screen, and the "Close" button will be relabeled as "Connect." Click on the "Exit" button in the bottom right corner to end WS_FTP. Copying Files to a CD-ROM at the Digital Media Center It is also possible for you to burn (copy) your TSO files to a CD-ROM. ITS's Digital Media Center (DMC) has set up a TSO download station for you to burn your files to a CD-ROM. The DMC is located in Kuykendall 105 and the telephone number is Call the DMC to make an appointment to use the TSO download station. You will need to bring blank CD- ROMs and have your TSO files ready to move. A CD-ROM can hold about 650 megabytes. A DMC staff member will assist you. EXAMINE To complete the task of moving from TSO to your PC, examine the files that you moved to your PC. Look at your raw data files and program source code files to verify that the entire contents of the files were downloaded. Import (convert) the SAS transport files and the SPSS portable files back to SAS system files and SPSS format data files respectfully and then view the contents. Importing a SAS Transport File The SAS procedure PROC CIMPORT must be used to restore a SAS transport file created by the CPORT procedure. If you used the XPORT engine to create the transport file instead of PROC CPORT, you cannot use PROC CIMPORT to restore it. This is the SAS program to restore the SAS transport file created earlier: LIBNAME MYLIB 'C:\THESIS\'; FILENAME TRANFILE 'C:\THESIS\PAPAYA.CPORT'; PROC CIMPORT LIBRARY=MYLIB INFILE=TRANFILE; RUN; The entire SAS data library is restored to the sub-directory specified on the LIBNAME statement. Once you have verified that the SAS data and catalogs files are OK, you can delete the SAS transport file. Page 8 Moving Files from TSO to a PC WIN9X004

9 Importing an SPSS Portable File SPSS 9.0 for Windows can open an SPSS portable file. Then you just need to save the contents in SPSS format. From the SPSS menus choose: File Open Under "Files of type:", select from the drop-down list : SPSS portable (*.por) Select the file you want to open and then click: Open The contents of the SPSS portable file are displayed in the Data Editor window. The next step is to save the data in SPSS format. From the SPSS menus choose: File Save As... Under "Save as type:", select from the drop-down list : SPSS (*.sav) Enter a filename for the new file and then click on: Save Once you have verified that the SPSS format data file is OK, you can delete the SPSS portable file. Now is the time to begin moving from TSO to your PC. If you have questions or need assistance with migration, send to tsomove@hawaii.edu or call the ITS Help Desk at "Begin -- to begin is half the work, let half still remain; again begin this, and thou wilt have finished." Ausonius Moving Files from TSO to a PC WIN9X004 Page 9

TM Online Storage: StorageSync

TM Online Storage: StorageSync TM Online Storage: StorageSync 1 Part A: Backup Your Profile 1: How to download and install StorageSync? Where to download StorageSync? You may download StorageSync from your e-storage account. Please

More information

Using SSH Secure Shell Client for FTP

Using SSH Secure Shell Client for FTP Using SSH Secure Shell Client for FTP The SSH Secure Shell for Workstations Windows client application features this secure file transfer protocol that s easy to use. Access the SSH Secure FTP by double-clicking

More information

WS_FTP Professional 12

WS_FTP Professional 12 WS_FTP Professional 12 Tools Guide Contents CHAPTER 1 Introduction Ways to Automate Regular File Transfers...5 Check Transfer Status and Logs...6 Building a List of Files for Transfer...6 Transfer Files

More information

Call Recorder Quick CD Access System

Call Recorder Quick CD Access System Call Recorder Quick CD Access System V4.0 VC2010 Contents 1 Call Recorder Quick CD Access System... 3 1.1 Install the software...4 1.2 Start...4 1.3 View recordings on CD...5 1.4 Create an archive on Hard

More information

How to use FTP Commander

How to use FTP Commander FTP (File Transfer Protocol) software can be used to upload files and complete folders to your web server. On the web, there are a number of free FTP programs that can be downloaded and installed onto

More information

FrontDesk Installation And Configuration

FrontDesk Installation And Configuration Chapter 2 FrontDesk Installation And Configuration FrontDesk v4.1.25 FrontDesk Software Install Online Software Activation Installing State Related Databases Setting up a Workstation Internet Transfer

More information

Using Microsoft Expression Web to Upload Your Site

Using Microsoft Expression Web to Upload Your Site Using Microsoft Expression Web to Upload Your Site Using Microsoft Expression Web to Upload Your Web Site This article briefly describes how to use Microsoft Expression Web to connect to your Web server

More information

Using Internet or Windows Explorer to Upload Your Site

Using Internet or Windows Explorer to Upload Your Site Using Internet or Windows Explorer to Upload Your Site This article briefly describes what an FTP client is and how to use Internet Explorer or Windows Explorer to upload your Web site to your hosting

More information

Moving the TRITON Reporting Databases

Moving the TRITON Reporting Databases Moving the TRITON Reporting Databases Topic 50530 Web, Data, and Email Security Versions 7.7.x, 7.8.x Updated 06-Nov-2013 If you need to move your Microsoft SQL Server database to a new location (directory,

More information

How to Back Up and Restore an ACT! Database Answer ID 19211

How to Back Up and Restore an ACT! Database Answer ID 19211 How to Back Up and Restore an ACT! Database Answer ID 19211 Please note: Answer ID documents referenced in this article can be located at: http://www.act.com/support/index.cfm (Knowledge base link). The

More information

Symantec Backup Exec 12.5 for Windows Servers. Quick Installation Guide

Symantec Backup Exec 12.5 for Windows Servers. Quick Installation Guide Symantec Backup Exec 12.5 for Windows Servers Quick Installation Guide 13897290 Installing Backup Exec This document includes the following topics: System requirements Before you install About the Backup

More information

VERITAS Backup Exec TM 10.0 for Windows Servers

VERITAS Backup Exec TM 10.0 for Windows Servers VERITAS Backup Exec TM 10.0 for Windows Servers Quick Installation Guide N134418 July 2004 Disclaimer The information contained in this publication is subject to change without notice. VERITAS Software

More information

Legal Notes. Regarding Trademarks. 2012 KYOCERA Document Solutions Inc.

Legal Notes. Regarding Trademarks. 2012 KYOCERA Document Solutions Inc. Legal Notes Unauthorized reproduction of all or part of this guide is prohibited. The information in this guide is subject to change without notice. We cannot be held liable for any problems arising from

More information

SOS SO S O n O lin n e lin e Bac Ba kup cku ck p u USER MANUAL

SOS SO S O n O lin n e lin e Bac Ba kup cku ck p u USER MANUAL SOS Online Backup USER MANUAL HOW TO INSTALL THE SOFTWARE 1. Download the software from the website: http://www.sosonlinebackup.com/download_the_software.htm 2. Click Run to install when promoted, or alternatively,

More information

Managing Software and Configurations

Managing Software and Configurations 55 CHAPTER This chapter describes how to manage the ASASM software and configurations and includes the following sections: Saving the Running Configuration to a TFTP Server, page 55-1 Managing Files, page

More information

Symantec Backup Exec TM 11d for Windows Servers. Quick Installation Guide

Symantec Backup Exec TM 11d for Windows Servers. Quick Installation Guide Symantec Backup Exec TM 11d for Windows Servers Quick Installation Guide September 2006 Symantec Legal Notice Copyright 2006 Symantec Corporation. All rights reserved. Symantec, Backup Exec, and the Symantec

More information

NovaBACKUP. User Manual. NovaStor / November 2011

NovaBACKUP. User Manual. NovaStor / November 2011 NovaBACKUP User Manual NovaStor / November 2011 2011 NovaStor, all rights reserved. All trademarks are the property of their respective owners. Features and specifications are subject to change without

More information

Absolute IT Solutions Product Catalog / Sales Order Maker Application

Absolute IT Solutions Product Catalog / Sales Order Maker Application Absolute IT Solutions Product Catalog / Sales Order Maker Application The android app that raise your sales figures Application Overview We believe our android application, AIS SOM, will effectively improve

More information

Working With Your FTP Site

Working With Your FTP Site Working With Your FTP Site Welcome to your FTP Site! The UnlimitedFTP (UFTP) software will allow you to run from any web page using Netscape, Internet Explorer, Opera, Mozilla or Safari browsers. It can

More information

CGS 1550 File Transfer Project Revised 3/10/2005

CGS 1550 File Transfer Project Revised 3/10/2005 CGS 1550 File Transfer Project Revised 3/10/2005 PURPOSE: The purpose of this project is to familiarize students with the three major styles of FTP client, which are: Pure (FTP only), character-based,

More information

Installing LearningBay Enterprise Part 2

Installing LearningBay Enterprise Part 2 Installing LearningBay Enterprise Part 2 Support Document Copyright 2012 Axiom. All Rights Reserved. Page 1 Please note that this document is one of three that details the process for installing LearningBay

More information

Updates Click to check for a newer version of the CD Press next and confirm the disc burner selection before pressing finish.

Updates Click to check for a newer version of the CD Press next and confirm the disc burner selection before pressing finish. Backup. If your computer refuses to boot or load Windows or if you are trying to restore an image to a partition the Reflect cannot lock (See here), and then you will have to start your PC using a rescue

More information

Device Installer User Guide

Device Installer User Guide Device Installer User Guide Part Number 900-325 Revision B 12/08 Table Of Contents 1. Overview... 1 2. Devices... 2 Choose the Network Adapter for Communication... 2 Search for All Devices on the Network...

More information

16.4.3 Lab: Data Backup and Recovery in Windows XP

16.4.3 Lab: Data Backup and Recovery in Windows XP 16.4.3 Lab: Data Backup and Recovery in Windows XP Introduction Print and complete this lab. In this lab, you will back up data. You will also perform a recovery of the data. Recommended Equipment The

More information

ARCIS/MRS MTF Customer WEB Portal MTF User Guide. Version: 20141011

ARCIS/MRS MTF Customer WEB Portal MTF User Guide. Version: 20141011 ARCIS/MRS MTF Customer WEB Portal MTF User Guide Version: 20141011 Table of Contents Overview:... - 3 - Chapter 1: Creating the SDF and RI ASCII Files in CHCS (Performed by Medical Records Technicians)..

More information

TAMUS Terminal Server Setup BPP SQL/Alva

TAMUS Terminal Server Setup BPP SQL/Alva We have a new method of connecting to the databases that does not involve using the Texas A&M campus VPN. The new way of gaining access is via Remote Desktop software to a terminal server running here

More information

ELEPHANT. Serviced Offices. The 116 Group Limited Telephone: 0203 3713333

ELEPHANT. Serviced Offices. The 116 Group Limited Telephone: 0203 3713333 ELEPHANT In Serviced Offices The 116 Group Limited Telephone: 0203 3713333 Web: www.wcgl.co.uk Revision 1.9.0 ELEPHANT IN SERVICED OFFICES TABLE OF CONTENTS Elephant in Serviced Offices... 3 Table of contents...

More information

QIAsymphony Management Console User Manual

QIAsymphony Management Console User Manual April 2012 QIAsymphony Management Console User Manual For use with software version 4.0 Sample & Assay Technologies Trademarks QIAGEN, QIAsymphony, Rotor-Gene (QIAGEN Group). InstallShield (Informer Technologies,

More information

Using Stat/Transfer on the Linux/UNIX Systems

Using Stat/Transfer on the Linux/UNIX Systems 2011-2012 Using Stat/Transfer on the Linux/UNIX Systems Stanford University provides Linux computing resources, which can be accessed through the Stanford University Network (SUNet). The Stanford UNIX

More information

ACTIVE@ UNDELETE 7.0 USER GUIDE

ACTIVE@ UNDELETE 7.0 USER GUIDE ACTIVE@ UNDELETE 7.0 USER GUIDE COPYRIGHT Copyright 27, LSOFT TECHNOLOGIES INC. All rights reserved. No part of this documentation may be reproduced in any form or by any means or used to make any derivative

More information

Backing up Microsoft Outlook Email For the PC Using MS Outlook 2000 Keith Roberts

Backing up Microsoft Outlook Email For the PC Using MS Outlook 2000 Keith Roberts WIN1020 November 2003 Backing up Microsoft Outlook Email For the PC Using MS Outlook 2000 Keith Roberts INTRODUCTION... 1 PREPARATION... 1 BACKING UP EMAIL... 2 RESTORING EMAIL FROM A PERSONAL FILE FOLDER...

More information

Transitioning from TurningPoint 5 to TurningPoint Cloud - LMS 1

Transitioning from TurningPoint 5 to TurningPoint Cloud - LMS 1 Transitioning from TurningPoint 5 to TurningPoint Cloud - LMS 1 A Turning Account is a unique identifier that is used to tie together all software accounts and response devices. A Turning Account is required

More information

SA-9600 Surface Area Software Manual

SA-9600 Surface Area Software Manual SA-9600 Surface Area Software Manual Version 4.0 Introduction The operation and data Presentation of the SA-9600 Surface Area analyzer is performed using a Microsoft Windows based software package. The

More information

TSM for Windows Installation Instructions: Download the latest TSM Client Using the following link:

TSM for Windows Installation Instructions: Download the latest TSM Client Using the following link: TSM for Windows Installation Instructions: Download the latest TSM Client Using the following link: ftp://ftp.software.ibm.com/storage/tivoli-storagemanagement/maintenance/client/v6r2/windows/x32/v623/

More information

VERITAS Backup Exec 9.1 for Windows Servers Quick Installation Guide

VERITAS Backup Exec 9.1 for Windows Servers Quick Installation Guide VERITAS Backup Exec 9.1 for Windows Servers Quick Installation Guide N109548 Disclaimer The information contained in this publication is subject to change without notice. VERITAS Software Corporation makes

More information

Activity 1: Scanning with Windows Defender

Activity 1: Scanning with Windows Defender Activity 1: Scanning with Windows Defender 1. Click on Start > All Programs > Windows Defender 2. Click on the arrow next to Scan 3. Choose Custom Scan Page 1 4. Choose Scan selected drives and folders

More information

Keystone 600N5 SERVER and STAND-ALONE INSTALLATION INSTRUCTIONS

Keystone 600N5 SERVER and STAND-ALONE INSTALLATION INSTRUCTIONS The following instructions are required for installation of Best Access System s Keystone 600N5 (KS600N) network key control software for the server side. Please see the system requirements on the Keystone

More information

EDI Insight Manual. Training Manual. Presented By

EDI Insight Manual. Training Manual. Presented By EDI Insight Manual Training Manual Presented By EDI Insight Manual 2 Step 1 Upload File: Select the file to transmit on the eceno claims transmission screen and click connect. Login to EDI Insight, when

More information

Previewing & Publishing

Previewing & Publishing Getting Started 1 Having gone to some trouble to make a site even simple sites take a certain amount of time and effort it s time to publish to the Internet. In this tutorial we will show you how to: Use

More information

Web File Management with SSH Secure Shell 3.2.3

Web File Management with SSH Secure Shell 3.2.3 Web File Management with SSH Secure Shell 3.2.3 June 2003 Information Technologies Copyright 2003 University of Delaware. Permission to copy without fee all or part of this material is granted provided

More information

How To Backup A Database In Navision

How To Backup A Database In Navision Making Database Backups in Microsoft Business Solutions Navision MAKING DATABASE BACKUPS IN MICROSOFT BUSINESS SOLUTIONS NAVISION DISCLAIMER This material is for informational purposes only. Microsoft

More information

Use Remote Desktop capabilities to Access your Work PC from home over VPN

Use Remote Desktop capabilities to Access your Work PC from home over VPN Use Remote Desktop capabilities to Access your Work PC from home over VPN With Remote Desktop on Windows XP Professional, you can have access to a Windows session that is running on your computer when

More information

File Transfer Protocol (FTP) Instructions

File Transfer Protocol (FTP) Instructions File Transfer Protocol (FTP) Instructions How to upload your website to the AUI server The FTP client most used for PCs is WS_FTP. It is already downloaded onto your Lab computer desktop, and looks like

More information

Call Recorder Oygo Manual. Version 1.001.11

Call Recorder Oygo Manual. Version 1.001.11 Call Recorder Oygo Manual Version 1.001.11 Contents 1 Introduction...4 2 Getting started...5 2.1 Hardware installation...5 2.2 Software installation...6 2.2.1 Software configuration... 7 3 Options menu...8

More information

10.3.1.6 Lab - Data Backup and Recovery in Windows XP

10.3.1.6 Lab - Data Backup and Recovery in Windows XP 5.0 10.3.1.6 Lab - Data Backup and Recovery in Windows XP Introduction Print and complete this lab. In this lab, you will back up data. You will also perform a recovery of the data. Recommended Equipment

More information

Reference Document. SedonaOnline Support

Reference Document. SedonaOnline Support Document Overview This document is being provided to explain how to request a SedonaOnline password and how to use SedonaOnline to submit and view Support Tickets. Our company utilizes the SedonaOffice

More information

16.4.3 Optional Lab: Data Backup and Recovery in Windows 7

16.4.3 Optional Lab: Data Backup and Recovery in Windows 7 16.4.3 Optional Lab: Data Backup and Recovery in Windows 7 Introduction Print and complete this lab. In this lab, you will back up data. You will also perform a recovery of the data. Recommended Equipment

More information

WS_FTP Pro for Windows 95/98/NT

WS_FTP Pro for Windows 95/98/NT Note to Instructor: These instructions were written for the faculty and staff to use to familiarize themselves with WS_FTP Pro. The majority of the audience consists of nonspecialists and executives. Also,

More information

How to make a backup copy of a.pst file

How to make a backup copy of a.pst file How to make a backup copy of a.pst file If you do not use Outlook with Microsoft Exchange Server, Outlook stores all its data in a.pst file. You can use the backup copy to restore your Outlook data if

More information

emedny FTP Batch Dial-Up Number 866 488 3006 emedny SUN UNIX Server ftp 172.27.16.79

emedny FTP Batch Dial-Up Number 866 488 3006 emedny SUN UNIX Server ftp 172.27.16.79 This document contains most of the information needed to submit FTP Batch transactions with emedny. It does not contain the unique FTP User ID/Password required to log in to the emedny SUN UNIX Server.

More information

VTLBackup4i. Backup your IBM i data to remote location automatically. Quick Reference and Tutorial. Version 02.00

VTLBackup4i. Backup your IBM i data to remote location automatically. Quick Reference and Tutorial. Version 02.00 VTLBackup4i Backup your IBM i data to remote location automatically Quick Reference and Tutorial Version 02.00 Manufacture and distributed by VRTech.Biz LTD Last Update:16.9.2013 Contents 1. About VTLBackup4i...

More information

Personal Call Manager User Guide. BCM Business Communications Manager

Personal Call Manager User Guide. BCM Business Communications Manager Personal Call Manager User Guide BCM Business Communications Manager Document Status: Standard Document Version: 04.01 Document Number: NN40010-104 Date: August 2008 Copyright Nortel Networks 2005 2008

More information

Installing the SSH Client v3.2.2 For Microsoft Windows

Installing the SSH Client v3.2.2 For Microsoft Windows WIN1011 June 2003 Installing the SSH Client v3.2.2 For Microsoft Windows OVERVIEW... 1 SYSTEM REQUIREMENTS... 2 INSTALLING THE SSH PACKAGE... 2 STARTING THE PROGRAMS... 5 USING THE SHELL CLIENT... 8 USING

More information

Upgrading from MSDE to SQL Server 2005 Express Edition with Advanced Services SP2

Upgrading from MSDE to SQL Server 2005 Express Edition with Advanced Services SP2 Upgrading from MSDE to SQL Server 2005 Express Edition with Advanced Services SP2 Installation and Configuration Introduction This document will walk you step by step in removing MSDE and the setup and

More information

EDI Support Services

EDI Support Services EDI Support Services User Documentation: Bulletin Board System (BBS) Dialing and Logging into the BBS To submit electronic files to EDISS, Trading Partners log into the BBS with a unique ID issued by EDISS.

More information

Editing your Website User Guide

Editing your Website User Guide User Guide Adding content to your Website To add or replace content on your website you will need to log in to your Content Management System (Joomla) using your username and password. If you do not already

More information

5.6.3 Lab: Registry Backup and Recovery in Windows XP

5.6.3 Lab: Registry Backup and Recovery in Windows XP 5.6.3 Lab: Registry Backup and Recovery in Windows XP Introduction Print and complete this lab. In this lab, you will back up a computer registry. You will also perform a recovery of a computer registry.

More information

InformationNOW SQL 2008 Database Backup and Restoration

InformationNOW SQL 2008 Database Backup and Restoration InformationNOW SQL 2008 Database Backup and Restoration Backing up a SQL 2008 Database Users are advised to create frequent multiple offsite backups. Occasionally, it may be necessary to manually initiate

More information

NETWORK PRINT MONITOR User Guide

NETWORK PRINT MONITOR User Guide NETWORK PRINT MONITOR User Guide Legal Notes Unauthorized reproduction of all or part of this guide is prohibited. The information in this guide is subject to change without notice. We cannot be held liable

More information

Almyta Control System Advanced Reference Contents

Almyta Control System Advanced Reference Contents Almyta Control System Advanced Reference Contents Almyta Control System Advanced Reference... 1 Software Maintenance... 2 Sharing Your Local Company with Other Users. Networked Installation.... 5 Connecting

More information

Auto Archiving Folders in Outlook XP

Auto Archiving Folders in Outlook XP Auto Archiving Folders in Outlook XP Your Outlook email account on the Exchange server is allotted 50 megabytes of storage space on the server. Items in the Inbox, Calendar, Sent Items, Deleted Items,

More information

Introduction on Contact Management Software EZY Call Manager 7. Prepare By : Joseph Har 2503 2568 Web Site : www.bashk.org

Introduction on Contact Management Software EZY Call Manager 7. Prepare By : Joseph Har 2503 2568 Web Site : www.bashk.org Introduction on Contact Management Software EZY Call Manager 7 1 Leads How important it is? Leads are considered as raw details of un-develop business opportunity. Leads can become a great sales opportunities

More information

Step-by-Step Setup Guide Wireless File Transmitter FTP Mode

Step-by-Step Setup Guide Wireless File Transmitter FTP Mode EOS Step-by-Step Setup Guide Wireless File Transmitter FTP Mode Ad Hoc Setup Windows XP 2012 Canon U.S.A., Inc. All Rights Reserved. Reproduction in whole or in part without permission is prohibited. 1

More information

Snow Inventory. Installing and Evaluating

Snow Inventory. Installing and Evaluating Snow Inventory Installing and Evaluating Snow Software AB 2002 Table of Contents Introduction...3 1. Evaluate Requirements...3 2. Download Software...3 3. Obtain License Key...4 4. Install Snow Inventory

More information

Word 2010: Mail Merge to Email with Attachments

Word 2010: Mail Merge to Email with Attachments Word 2010: Mail Merge to Email with Attachments Table of Contents TO SEE THE SECTION FOR MACROS, YOU MUST TURN ON THE DEVELOPER TAB:... 2 SET REFERENCE IN VISUAL BASIC:... 2 CREATE THE MACRO TO USE WITHIN

More information

INPS Remote Vision MIQUEST Training Manual

INPS Remote Vision MIQUEST Training Manual INPS Remote Vision MIQUEST Training Manual DEVELOPED BY: DHARMESH PATEL DATE: SEPTEMBER 2008 Page 1 of 24 MIQUEST Miquest stands for Morbidity Query Information Export Syntax. It is a tool recommended

More information

10.3.1.4 Lab - Data Backup and Recovery in Windows 7

10.3.1.4 Lab - Data Backup and Recovery in Windows 7 5.0 10.3.1.4 Lab - Data Backup and Recovery in Windows 7 Introduction Print and complete this lab. In this lab, you will back up data. You will also perform a recovery of the data. Recommended Equipment

More information

Transferring vs. Transporting Between SAS Operating Environments Mimi Lou, Medical College of Georgia, Augusta, GA

Transferring vs. Transporting Between SAS Operating Environments Mimi Lou, Medical College of Georgia, Augusta, GA CC13 Transferring vs. Transporting Between SAS Operating Environments Mimi Lou, Medical College of Georgia, Augusta, GA ABSTRACT Prior to SAS version 8, permanent SAS data sets cannot be moved directly

More information

Beckhoff TwinCAT. Creating Boot Projects for TwinCAT

Beckhoff TwinCAT. Creating Boot Projects for TwinCAT Beckhoff TwinCAT Creating Boot Projects for TwinCAT Revision: 1.1 Updated: 06 December 2004 Table of Contents 1. Introduction...3 2. TwinCAT System Boot Project (V2.9.0 and later)...4 2.1. TwinCAT System

More information

Migrating From Bobcat Mail To Google Apps (Using Microsoft Outlook and Google Apps Sync)

Migrating From Bobcat Mail To Google Apps (Using Microsoft Outlook and Google Apps Sync) Migrating From Bobcat Mail To Google Apps (Using Microsoft Outlook and Google Apps Sync) This document is intended for those users moving from WVWC s Bobcat Mail system to the new Google Apps mail system

More information

NDSR Utilities. Creating Backup Files. Chapter 9

NDSR Utilities. Creating Backup Files. Chapter 9 Chapter 9 NDSR Utilities NDSR utilities include various backup and restore features, ways to generate output files, and methods of importing and exporting Header tab information. This chapter describes:

More information

WS_FTP Server. User s Guide. Software Version 3.1. Ipswitch, Inc.

WS_FTP Server. User s Guide. Software Version 3.1. Ipswitch, Inc. User s Guide Software Version 3.1 Ipswitch, Inc. Ipswitch, Inc. Phone: 781-676-5700 81 Hartwell Ave Web: http://www.ipswitch.com Lexington, MA 02421-3127 The information in this document is subject to

More information

SFTP Server User Login Instructions. Open Internet explorer and enter the following url: https://sftp.sae.org

SFTP Server User Login Instructions. Open Internet explorer and enter the following url: https://sftp.sae.org SFTP Server User Login Instructions Open Internet explorer and enter the following url: https://sftp.sae.org You will be prompted for a user id and password as such. Please enter your account id and password.

More information

Capture Pro Software FTP Server System Output

Capture Pro Software FTP Server System Output Capture Pro Software FTP Server System Output Overview The Capture Pro Software FTP server will transfer batches and index data (that have been scanned and output to the local PC) to an FTP location accessible

More information

A. I do not have my own personal certificate I am a new client or want to download a new certificate

A. I do not have my own personal certificate I am a new client or want to download a new certificate This user guide will help you to create your personal certificate in file/browser or smart card certificate. If you already own a personal certificate in file that you have saved on your computer, you

More information

DocuPrint C3290 FS Features Setup Guide

DocuPrint C3290 FS Features Setup Guide DocuPrint C3290 FS Features Setup Guide Adobe and PostScript are trademarks of Adobe Systems Incorporated in the United States and/or other countries. Apple, Bonjour, ColorSync, EtherTalk, Macintosh, and

More information

After going through this lesson you would be able to:

After going through this lesson you would be able to: 18 :: Data Entry Operations 2 Operating System 2.1 INTRODUCTION The operating system in these days uses a graphical user interface (GUI). Here you do not have to remember all the commands by heart. The

More information

Utilities. 2003... ComCash

Utilities. 2003... ComCash Utilities ComCash Utilities All rights reserved. No parts of this work may be reproduced in any form or by any means - graphic, electronic, or mechanical, including photocopying, recording, taping, or

More information

AT&T Global Network Client v6.8.0 and Passport IP Setup Instructions for Broadband VPN Access

AT&T Global Network Client v6.8.0 and Passport IP Setup Instructions for Broadband VPN Access AT&T Global Network Client v6.8.0 and Passport IP Setup Instructions for Broadband VPN Access October 19, 2006 1 Installing AT&T GNC 6.8.0 for Broadband VPN Access... 3 Getting Started... 3 License Agreement...

More information

Hosting Users Guide 2011

Hosting Users Guide 2011 Hosting Users Guide 2011 eofficemgr technology support for small business Celebrating a decade of providing innovative cloud computing services to small business. Table of Contents Overview... 3 Configure

More information

Backup and Recovery Procedures

Backup and Recovery Procedures CHAPTER 10 This chapter provides Content Distribution Manager database backup and ACNS software recovery procedures. This chapter contains the following sections: Performing Backup and Restore Operations

More information

OUTLOOK ANYWHERE CONNECTION GUIDE FOR USERS OF OUTLOOK 2010

OUTLOOK ANYWHERE CONNECTION GUIDE FOR USERS OF OUTLOOK 2010 OUTLOOK ANYWHERE CONNECTION GUIDE FOR USERS OF OUTLOOK 2010 CONTENTS What is Outlook Anywhere? Before you begin How do I configure Outlook Anywhere with Outlook 2010? How do I use Outlook Anywhere? I already

More information

EZblue BusinessServer The All - In - One Server For Your Home And Business

EZblue BusinessServer The All - In - One Server For Your Home And Business EZblue BusinessServer The All - In - One Server For Your Home And Business Quick Start Guide Version 3.8 1 2 3 EZblue Server Overview EZblue Server Installation EZblue Server Configuration 4 EZblue Magellan

More information

UltraBac Documentation. UBDR Gold. Administrator Guide UBDR Gold v8.0

UltraBac Documentation. UBDR Gold. Administrator Guide UBDR Gold v8.0 UltraBac Documentation UBDR Gold Bare Metal Disaster Recovery Administrator Guide UBDR Gold v8.0 UBDR Administrator Guide UBDR Gold v8.0 The software described in this guide is furnished under a license

More information

How to Manage a Windows NT Server Computer Remotely

How to Manage a Windows NT Server Computer Remotely MCSE Server Enterprise Using Windows NT Server Tools CHAPTER 14 Windows NT Server Tools................. 541 NT Server Tools for Windows 95 Computers........ 541 Installing NT Server tools on a Windows

More information

Tutorial: Configuring GOOSE in MiCOM S1 Studio 1. Requirements

Tutorial: Configuring GOOSE in MiCOM S1 Studio 1. Requirements Tutorial: Configuring GOOSE in MiCOM S1 Studio 1. Requirements - Two (2) MiCOM Px4x IEDs with Version 2 implementation of IEC 61850 - Two (2) Cat 5E Ethernet cable - An Ethernet switch 10/100 Mbps - MiCOM

More information

TAS-2000 Series. MSW-003 Software. User Guide. LT-880 Rev. 1 September 2004

TAS-2000 Series. MSW-003 Software. User Guide. LT-880 Rev. 1 September 2004 Advanced Life Safety Solutions TAS-2000 Series MSW-003 Software 3 4 5 7 8 9 0 User Guide LT-880 Rev. 1 September 2004 Contents TAS-2000 MSW-003 Software Manual Installing the Software... 1 Connecting

More information

Using WS_FTP. This tutorial explains how to use WS_FTP, a File Transfer Program for Microsoft Windows. INFORMATION SYSTEMS SERVICES.

Using WS_FTP. This tutorial explains how to use WS_FTP, a File Transfer Program for Microsoft Windows. INFORMATION SYSTEMS SERVICES. INFORMATION SYSTEMS SERVICES Using WS_FTP This tutorial explains how to use WS_FTP, a File Transfer Program for Microsoft Windows. AUTHOR: Information Systems Services DATE: July 2003 EDITION: 1.1 TUT

More information

How To Set Up A Backupassist For An Raspberry Netbook With A Data Host On A Nsync Server On A Usb 2 (Qnap) On A Netbook (Qnet) On An Usb 2 On A Cdnap (

How To Set Up A Backupassist For An Raspberry Netbook With A Data Host On A Nsync Server On A Usb 2 (Qnap) On A Netbook (Qnet) On An Usb 2 On A Cdnap ( WHITEPAPER BackupAssist Version 5.1 www.backupassist.com Cortex I.T. Labs 2001-2008 2 Contents Introduction... 3 Hardware Setup Instructions... 3 QNAP TS-409... 3 Netgear ReadyNas NV+... 5 Drobo rev1...

More information

File Transfer Protocol (FTP) Introduction. With Winsock_FTP

File Transfer Protocol (FTP) Introduction. With Winsock_FTP File Transfer Protocol (FTP) Introduction With Winsock_FTP Computing Education 1999-2000 Table of Contents Page Overview What is FTP? What FTP utility is used at Fuqua?... 1 FTP for File Transfer... 1

More information

Server & Workstation Installation of Client Profiles for Windows

Server & Workstation Installation of Client Profiles for Windows C ase Manag e m e n t by C l i e n t P rofiles Server & Workstation Installation of Client Profiles for Windows T E C H N O L O G Y F O R T H E B U S I N E S S O F L A W General Notes to Prepare for Installing

More information

Before You Begin... 2 Running SAS in Batch Mode... 2 Printing the Output of Your Program... 3 SAS Statements and Syntax... 3

Before You Begin... 2 Running SAS in Batch Mode... 2 Printing the Output of Your Program... 3 SAS Statements and Syntax... 3 Using SAS In UNIX 2010 Stanford University provides UNIX computing resources on the UNIX Systems, which can be accessed through the Stanford University Network (SUNet). This document provides a basic overview

More information

Using Remote Web Workplace Version 1.01

Using Remote Web Workplace Version 1.01 Using Remote Web Workplace Version 1.01 Remote web workplace allows you to access your Windows XP desktop through Small Business Server 2003 from a web browser. 1. Connect to the Internet in your remote

More information

Matisse Installation Guide for MS Windows. 10th Edition

Matisse Installation Guide for MS Windows. 10th Edition Matisse Installation Guide for MS Windows 10th Edition April 2004 Matisse Installation Guide for MS Windows Copyright 1992 2004 Matisse Software Inc. All Rights Reserved. Matisse Software Inc. 433 Airport

More information

Results CRM 2012 User Manual

Results CRM 2012 User Manual Results CRM 2012 User Manual A Guide to Using Results CRM Standard, Results CRM Plus, & Results CRM Business Suite Table of Contents Installation Instructions... 1 Single User & Evaluation Installation

More information

6 USING WINDOWS XP 6.1 INTRODUCTION

6 USING WINDOWS XP 6.1 INTRODUCTION 6 USING WINDOWS XP 6.1 INTRODUCTION The windows operating system started with the introduction of Windows OS and Windows for work group for networking. Since then it has come a long way and Windows 95,

More information

Help File. Version 1.1.4.0 February, 2010. MetaDigger for PC

Help File. Version 1.1.4.0 February, 2010. MetaDigger for PC Help File Version 1.1.4.0 February, 2010 MetaDigger for PC How to Use the Sound Ideas MetaDigger for PC Program: The Sound Ideas MetaDigger for PC program will help you find and work with digital sound

More information

Avaya Network Configuration Manager User Guide

Avaya Network Configuration Manager User Guide Avaya Network Configuration Manager User Guide May 2004 Avaya Network Configuration Manager User Guide Copyright Avaya Inc. 2004 ALL RIGHTS RESERVED The products, specifications, and other technical information

More information

Richmond Systems. SupportDesk Quick Start Guide

Richmond Systems. SupportDesk Quick Start Guide Richmond Systems SupportDesk Quick Start Guide Table of Contents SupportDesk Quick Start Guide...1 Introduction...1 Pre-requisites...2 Installation at a Glance...2 Installation...3 Setup Console...13

More information

If you have questions or need assistance, contact PCS Technical Services using the contact information on page 10.

If you have questions or need assistance, contact PCS Technical Services using the contact information on page 10. PCS Axis Database Backup and Restore Best Practices October 2014 Introduction This document explains how to backup and restore a PCS Axis database using Microsoft SQL Server Management Studio (SSMS). The

More information