DOS COMMAND EXAMPLES. TIME To set your computer's clock to 1:36 P.M., use either of the following commands:

Size: px
Start display at page:

Download "DOS COMMAND EXAMPLES. TIME To set your computer's clock to 1:36 P.M., use either of the following commands:"

Transcription

1 DIR Suppose you want to display all files and directories in a directory, including hidden or system files. To specify this display, type the following command: dir /a Suppose you want DIR to display one directory listing after another, until it has displayed the listing for every directory on the disk in the current drive. Suppose also that you want DIR to alphabetize each directory listing, display it in wide format, and pause after each screen. To specify such a display, be sure the root directory is the current directory and then type the following command: dir /s/w/o/p DATE MS-DOS records the current date for each file you create or change; this date is listed next to the filename in the directory. Syntax Parameter mm-dd-yy DATE [mm-dd-yy] Sets the date you specify. Values for day, month, and year must be separated by periods (.), hyphens (-), or slash marks (/). The date format depends on the COUNTRY setting you are using in your CONFIG.SYS file. The following list shows the valid values for the month, day, and year portions of the mm-dd-yy parameter. mm 1 through 12 dd 1 through 31 yy 80 through 99 or 1980 through 2099 TIME To set your computer's clock to 1:36 P.M., use either of the following commands: TIME 13:36 TIME 1:36p FORMAT To format a new floppy disk in drive A using the default size, type the format a: To perform a quick format on a previously formatted disk in drive A, type the following command: format a: /q To format a floppy disk in drive A, completely deleting all data on the disk, type the following command: 1

2 format a: /u To format a 360K floppy disk in drive A and copy the operating system files to the disk to make it a system disk, type the following command: format a: /f:360 /s To format a floppy disk in drive A and assign to it the volume label "DATA", type the following command: format a: /v:data SYS To copy the MS-DOS system files and command interpreter from the disk in the current drive to a disk in drive A, type the following command: sys a: To copy the MS-DOS system files and command interpreter from a disk in drive B to a disk in drive A, type the following the command: sys b: a: PROMPT The following example sets the command prompt to display the current drive and path followed by the greater-than sign (>): prompt $p$g The following command displays a two-line prompt in which the current time appears on the first line and the current date appears on the second line: prompt time is: $t$_date is: $d DISKCOMP If your system has only one floppy disk drive, drive A, and you want to compare two disks, type the following command: diskcomp a: a: COPY The following command copies a file and ensures that an end-of-file character is at the end of the copied file: copy memo.doc letter.doc /a To copy the NOTE.TXT file from the current drive and directory to the directory MYNOTES, and to prevent MS-DOS from prompting you before overwriting the destination file (if it already exists), type the following command: copy note.txt mynotes /y 2

3 To copy a file named ROBIN.TYP from the current drive and directory to an existing directory named BIRDS that is located on drive C, type the following command: copy robin.typ c:\birds If the BIRDS directory doesn't exist, MS-DOS copies the file ROBIN.TYP into a file named BIRDS that is located in the root directory on the disk in drive C. To copy several files into one file, list any number of files as source parameters on the COPY command line. Separate filenames with a plus sign (+) and specify a filename for the resulting combined file, as the following example shows: copy mar89.rpt + apr89.rpt + may89.rpt report This command combines the files named MAR89.RPT, APR89.RPT, and MAY89.RPT from the current drive and directory and places them in a file named REPORT in the current directory on the current drive. When files are combined, the destination file is created with the current date and time. If you omit destination, MS-DOS combines the files and stores them under the name of the first specified file. For example, if a file named REPORT already exists, you can use the following command to combine all four files in REPORT: copy report + mar89.rpt + apr89.rpt + may89.rpt You can also combine several files into one by using wildcards, as the following example shows: copy *.txt combin.doc This command combines all files in the current directory on the current drive that have the extension.txt into one file named COMBIN.DOC, also in the current directory on the current drive. If you want to combine several binary files into one by using wildcards, include the /B switch, as the following example shows: copy /b *.exe combin.exe This prevents MS-DOS from treating CTRL+Z as an end-of-file character. CAUTION: If you combine binary files, the resulting file might not be usable due to internal formatting. In the following example, COPY combines each file that has a.txt extension with its corresponding.ref file. The result is a file with the same filename but with a.doc extension. Thus, COPY combines FILE1.TXT with FILE1.REF to form FILE1.DOC. Then COPY combines FILE2.TXT with FILE2.REF to form FILE2.DOC, and so on. copy *.txt + *.ref *.doc The following COPY command combines first all files with the.txt extension, then all files with the.ref extension into one file named COMBIN.DOC: copy *.txt + *.ref combin.doc Copying information from the keyboard The following COPY command copies what you type at the keyboard to the OUTPUT.TXT file: 3

4 copy con output.txt After you type this command and press ENTER, MS-DOS copies everything you type to the file OUTPUT.TXT. When you are finished typing, press CTRL+Z to indicate that you want to end the file. The CTRL+Z character will appear on the screen as "Z". You can also end a COPY CON command by pressing the F6 key. When you press F6, it generates the CTRL+Z character, which appears on the screen as Z. The following example copies information from the keyboard to the printer connected to LPT1: copy con lpt1 REN Suppose you want to change the extensions of all the filenames in the current directory that have the extension.txt; for example, suppose you want to change the.txt extensions to.doc extensions. To make this change, type the following command: ren *.txt *.doc To rename a file named CHAP10 (on drive B) to PART10, type the following command: ren b:chap10 part10 The newly renamed file PART10 remains on drive B. DEL To delete the CAT.TMP file from the TEST directory on drive C, you can use either of the following commands: del c:\test\cat.tmp erase c:\test\cat.tmp To delete all the files in a directory named TEST on drive C, you can use either of the following commands: del c:\test del c:\test\*.* UNDELETE The following command specifies that UNDELETE is to recover all deleted files in the current directory one at a time, to prompt for confirmation on each file, and to use the highest available level of delete tracking: undelete The following command specifies that UNDELETE is to recover all deleted files with the.bat extension in the root directory of drive C, without prompting for confirmation on each file: undelete c:\*.bat /all 4

5 The following command loads the memory-resident portion of the UNDELETE program into memory, creates a hidden directory named SENTRY, and specifies that UNDELETE move files you delete on drive C to that directory: undelete /sc The following command loads the memory-resident portion of the UNDELETE program into memory and creates a PCTRACKER.DEL file to track up to 400 deleted files on drive C: undelete /tc-400 MD Suppose you want to create a directory on the disk in the current drive and use the directory to store all your tax information. To create a directory named TAXES, type the following command: mkdir \taxes You could also type this command with the same results: md \taxes Now suppose that the TAXES directory is the current directory and that you want to create a subdirectory of TAXES named PROPERTY. To create the PROPERTY directory, type the following command: mkdir property CD Either of the following commands changes your current directory to the directory named PRIMETIME: chdir \primetime cd \primetime Suppose you have a directory named SPECIALS with a subdirectory named SPONSORS. To change your current directory to \SPECIALS\SPONSORS, type the following command: cd \specials\sponsors Or, if your current directory is \SPECIALS, you can use the following command to change to the \SPECIALS\SPONSORS directory: cd sponsors To change from a subdirectory back to the parent directory, type the following command: cd.. To display the name of the current directory, you can use CHDIR or CD without a parameter. For example, if your current directory is \PUBLIC\JONES on the disk in drive B, type CHDIR to see the following response: B:\PUBLIC\JONES 5

6 If you are working on drive D and you want to copy all files in the \PUBLIC\JONES and \PUBLIC\LEWIS directories on drive C to the root directory on drive D, type the following commands: chdir c:\public\jones copy c:*.* d:\ chdir c:\public\lewis copy c:*.* d:\ If, instead, you want to copy all files in the \PUBLIC\JONES and \PUBLIC\LEWIS directories to your current location on drive D, type the following commands: chdir c:\public\jones copy c:*.* d: chdir c:\public\lewis copy c:*.* d: RD To delete a directory named \USER\SMITH, first ensure that the directory is empty, as in the following example: dir \user\smith /a MS-DOS should display only the "." and ".." symbols. Then, from any directory except \USER\SMITH, type the following command: rmdir \user\smith You can type the following command with the same result: rd \user\smith PATH The following command specifies that MS-DOS is to search three directories to find commands (the three paths for these directories are C:\USER\TAXES, B:\USER\INVEST, and B:\BIN): path c:\user\taxes;b:\user\invest;b:\bin TREE To display the names of all the subdirectories on the disk in your current drive, type the following command: tree \ To display, one screen at a time, the files in all the directories on drive C, type the following command: tree c:\ /f more To print the same list that the previous example displayed, type the following command: tree c:\ /f > prn 6

7 MOVE Suppose C:\LETTERS is a directory. To move the files ED.TXT and SIGRID.TXT from the current directory to the LETTERS directory on drive C, type the following at the command prompt: move ed.txt,sigrid.txt c:\letters To move the BILL.TXT file from the current directory to the LETTERS directory on drive C and rename it ANN.TXT, type the following at the command prompt: move bill.txt c:\letters\ann.txt To rename the THISYEAR directory on drive C to LASTYEAR, type the following at the command prompt: move c:\thisyear c:\last year DELTREE To delete the TEMP directory on drive C, including all files and subdirectories of the TEMP directory, type the following at the command prompt: deltree c:\temp CHKDSK To find out how much data is stored on drive C and how much space is still free, and to check the disk for errors, type the following command: chkdsk c: CHKDSK pauses and displays messages if it encounters errors. To redirect the output of CHKDSK to a file named STATUS, type the following command: chkdsk a: > status Because the output is redirected, MS-DOS does not repair errors it encounters during the check; but it records all the errors in a report file. Afterward, you can use CHKDSK with the /F switch without redirection to correct any errors noted in the status report. SCANDISK To check and fix the current drive, type the following: scandisk Suppose that DriveSpace is installed, but is unable to mount your compressed drive because of problems with the drive. The drive's compressed volume file is called DRVSPACE.000 and is located in the root directory of drive C. To repair the volume file, type the following: scandisk c:\drvspace.000 The DriveSpace volume file must be located in the root directory of the drive. 7

8 To check both drive C and drive E, type the following: scandisk c: e: To check all your drives, type the following: scandisk /all This will check all your hard disk partitions, in addition to all mounted DriveSpace drives (if DriveSpace is installed). Suppose you created an Undo disk, did not change the contents of the checked drive since you created the Undo disk, and placed the Undo disk in drive A. To undo the changes made by ScanDisk, type the following: scandisk /undo a: UNFORMAT To determine whether UNFORMAT can restore a formatted disk in drive A, type the following command: unformat a: /test To restore a formatted disk in drive A, listing all files and subdirectories, type the following command: unformat a: /l DEFRAG To load DEFRAG into conventional memory and specify that DEFRAG sort files according to the date they were created, from latest created to earliest created, type the following command: defrag c: /f /sd- /skiphigh This example fully optimizes drive C, but slows DEFRAG MSAV To start MSAV using a black and white color scheme, and to specify that MSAV check all drives except drives A and B, type the following command: msav /bw /a To write a simple batch program named VIRUS that supports the MSAV exit code and the /S switch to scan the current drive, you can type the following commands by using MS-DOS Editor: echo off rem Smith's msav command msav /s /n if errorlevel 86 goto virus if not errorlevel 86 goto none :virus 8

9 echo MSAV has detected a virus on your current drive! goto exit :none echo MSAV found no viruses on your current drive. goto exit :exit VSAFE To specify that VSAFE not check for formatting that could erase all data on the hard disk, that VSAFE warn of attempts to write to the boot sector of a floppy disk, and that ALT+T be assigned as the hot key to display the VSAFE screen, type the following command: vsafe /1- /7+ /At To specify that VSAFE not check for formatting that could erase all data on the hard disk, that VSAFE warn of attempts to write to the boot sector of a floppy disk, and that ALT+T be assigned as the hot key to display the VSAFE screen, type the following command: vsafe /1- /7+ /At MSD Starting the MSD program If you wanted to examine some of the technical information about your computer before calling Microsoft Product Support Services, you would start the MSD program by typing the following at the command prompt: msd The MSD program has an interface that makes it easy for you to access detailed technical information about your computer. Creating a report Before calling Microsoft Product Support Services, you could create a file called COMPUTER.TXT that contains a detailed technical report about your computer. To do this, you could type the following at the command prompt: msd /p computer.txt The COMPUTER.TXT file would contain the information about your computer. If you want MSD to create a detailed report about your computer and you wanted the report to include such information as your name, company, address, and phone number, you would type the following at the command prompt: msd /f computer.txt The MSD program will prompt you for the information. 9

10 ATTRIB To display the attributes of a file named NEWS86 located on the current drive, type the following command: attrib news86 To assign the Read-Only attribute to the file REPORT.TXT, type the following command: attrib +r report.txt To remove the Read-Only attribute from files in the \PUBLIC\JONES directory on a disk in drive B and from files in any subdirectories of \PUBLIC\JONES, type the following command: attrib -r b:\public\jones\*.* /s As a final example, suppose you want to give an associate a disk containing all files in the default directory on a disk in drive A except files with the.bak extension. Because you can use <XCOPY> to copy only those files marked with the Archive attribute, you need to set the Archive attribute for those files you want to copy. To do this, you would use the following two commands to set the Archive attribute for all files on drive A and then to clear the attribute for those files with the.bak extension: attrib +a a:*.* attrib -a a:*.bak Next, use the XCOPY command to copy the files from the disk in drive A to the disk in drive B. The /A switch in the following command causes XCOPY to copy only those files marked with the Archive attribute: xcopy a: b: /a If you want XCOPY to clear each file's Archive attribute after it copies the file, use the /M switch instead of /A, as in the following example: xcopy a: b: /m XCOPY The following example copies all the files and subdirectories (including any empty subdirectories) from the disk in drive A to the disk in drive B: xcopy a: b: /s /e The following example uses the /D: and /V switches: xcopy a: b: /d:01/18/93 /s /v In this example, only files on the disk in drive A that were written on or after 01/18/93 are copied to the disk in drive B. Once the files are written to the disk in drive B, the XCOPY command compares the files on the two disks to make sure they are the same. 10

11 You can create a batch program to perform XCOPY operations and use the batch IF command to process the exit code in case an error occurs. For example, the following batch program uses replaceable parameters for the XCOPY source and destination off rem COPYIT.BAT transfers all source rem files in all directories on the source rem drive (%1) to the destination drive (%2) xcopy %1 %2 /s /e REPLACE Suppose that several directories on drive C contain different versions of a file named PHONES.CLI, which contains client names and phone numbers. To replace all of these files with the latest version of the PHONES.CLI file from the disk in drive A, type the following command: replace a:\phones.cli c:\ /s Suppose you want to add new printer device drivers to a directory on drive C named TOOLS, which already contains several printer device-driver files for a word processor. To do this, type the following command: replace a:*.prd c:\tools /a This command searches the current directory on drive A for any files that have the extension.prd and then adds these files to the TOOLS directory on drive C. Because the /A switch is included, REPLACE adds only those files from drive A that do not exist on drive C. MEM Getting general program and memory information Suppose your system has both expanded memory and extended memory. To display a summary of your system's total memory conventional, expanded, extended, and upper and to display a list of programs currently loaded into memory, type the following command: mem /classify MEMMAKER To run MemMaker in batch mode and to direct it not to reserve any upper memory for Windows translation buffers, use the following command: memmaker /batch /w:0,0 To have MemMaker restore your previous system configuration, use the following command: memmaker /undo Suppose you use a disk-compression program. Your startup disk is drive C, but after the compression driver starts, drive C becomes your main compressed drive. Your startup files are now on drive D. Because of this drive-letter swapping, you would start MemMaker by using the following command: 11

12 memmaker /swap:d This command specifies that the current drive D was originally the startup drive and contains your CONFIG.SYS and AUTOEXEC.BAT files. Note: You do not need to use the /SWAP switch if you are using Microsoft DoubleSpace disk compression or the Stacker 2.0 disk-compression program. 12

DOS Command Reference

DOS Command Reference DOS Command Reference Introduction Some course material on the Teaching Network may still use the command line operating system called DOS (Disk Operating System). This requires the user to type specific

More information

DOS Command Reference DOS Commands Found in DOS 6.22, Windows 95, and Windows 98

DOS Command Reference DOS Commands Found in DOS 6.22, Windows 95, and Windows 98 DOS Reference Even if the systems you support, upgrade, and repair are all running the latest version of Windows, you will inevitably find yourself occasionally troubleshooting these systems from the DOS

More information

Understanding the Boot Process and Command Line Chapter #3

Understanding the Boot Process and Command Line Chapter #3 Understanding the Boot Process and Command Line Chapter #3 Amy Hissom Key Terms 1. Active Partition the primary partition on the hard drive that boots the OS. Windows NT/2000/XP calls the active partition

More information

Operating System. Lab Manual for Cmp 621A 2nd Edition

Operating System. Lab Manual for Cmp 621A 2nd Edition Operating System Lab Manual for Cmp 621A 2nd Edition Department of Education Feb., 1997 MS-DOS Lab Manual 2 Note to teachers: The labs in this manual offer a brief introduction to the operating system

More information

LECTURE-7. Introduction to DOS. Introduction to UNIX/LINUX OS. Introduction to Windows. Topics:

LECTURE-7. Introduction to DOS. Introduction to UNIX/LINUX OS. Introduction to Windows. Topics: Topics: LECTURE-7 Introduction to DOS. Introduction to UNIX/LINUX OS. Introduction to Windows. BASIC INTRODUCTION TO DOS OPERATING SYSTEM DISK OPERATING SYSTEM (DOS) In the 1980s or early 1990s, the operating

More information

An Introduction to Using the Command Line Interface (CLI) to Work with Files and Directories

An Introduction to Using the Command Line Interface (CLI) to Work with Files and Directories An Introduction to Using the Command Line Interface (CLI) to Work with Files and Directories Windows by bertram lyons senior consultant avpreserve AVPreserve Media Archiving & Data Management Consultants

More information

List of FTP commands for the Microsoft command-line FTP client

List of FTP commands for the Microsoft command-line FTP client You are on the nsftools.com site This is a list of the commands available when using the Microsoft Windows command-line FTP client (requires TCP/IP to be installed). All information is from the Windows

More information

Thirty Useful Unix Commands

Thirty Useful Unix Commands Leaflet U5 Thirty Useful Unix Commands Last revised April 1997 This leaflet contains basic information on thirty of the most frequently used Unix Commands. It is intended for Unix beginners who need a

More information

Topic 2: Computer Management File Management Folders A folder is a named storage location where related files can be stored. A folder also known as

Topic 2: Computer Management File Management Folders A folder is a named storage location where related files can be stored. A folder also known as Topic 2: Computer Management File Management Folders A folder is a named storage location where related files can be stored. A folder also known as directory in some operating systems, all folders or directories

More information

Introduction. This white paper provides technical information on how to approach these steps with Symantec Antivirus Corporate edition.

Introduction. This white paper provides technical information on how to approach these steps with Symantec Antivirus Corporate edition. Introduction The process of updating virus definitions on workstations protected by Deep Freeze Enterprise involves three fundamental steps: 1. Rebooting the workstations into a Thawed state so the updates

More information

sqlcmd -S.\SQLEXPRESS -Q "select name from sys.databases"

sqlcmd -S.\SQLEXPRESS -Q select name from sys.databases A regularly scheduled backup of databases used by SyAM server programs (System Area Manager, Management Utilities, and Site Manager can be implemented by creating a Windows batch script and running it

More information

NTLDR is missing. Below are the full error messages that may be seen when the computer is booting.

NTLDR is missing. Below are the full error messages that may be seen when the computer is booting. NTLDR is missing Issue NTLDR is Missing. Related errors Below are the full error messages that may be seen when the computer is booting. NTLDR is Missing Press any key to restart Boot: Couldn't find NTLDR

More information

Optimizing and Protecting Hard Drives Chapter # 9

Optimizing and Protecting Hard Drives Chapter # 9 Optimizing and Protecting Hard Drives Chapter # 9 Amy Hissom Key Terms antivirus (AV) software Utility programs that prevent infection or scan a system to detect and remove viruses. McAfee Associates VirusScan

More information

Introduction to the UNIX Operating System and Open Windows Desktop Environment

Introduction to the UNIX Operating System and Open Windows Desktop Environment Introduction to the UNIX Operating System and Open Windows Desktop Environment Welcome to the Unix world! And welcome to the Unity300. As you may have already noticed, there are three Sun Microsystems

More information

Chapter 14 MS-DOS Operating System

Chapter 14 MS-DOS Operating System Understanding Operating Systems, Fifth Edition 14-1 Chapter 14 MS-DOS Operating System At a Glance Instructor s Manual Table of Contents Overview Objectives s Quick Quizzes Class Discussion Topics Additional

More information

5COMPUTER SCIENCE For Class IX (marks 55)

5COMPUTER SCIENCE For Class IX (marks 55) 5COMPUTER SCIENCE For Class IX (marks 55) 1. Introduction to Computers o History and development of computers - Types of computers (analogue, digital, hybrid) - Classification of digital computers (micro,

More information

Understanding Files and Folders

Understanding Files and Folders Windows Files and Folders Overview Before I get into Windows XP's method of file management, let's spend a little space on a files and folder refresher course. (Just in case you forgot, of course.) The

More information

RECOVER ( 8 ) Maintenance Procedures RECOVER ( 8 )

RECOVER ( 8 ) Maintenance Procedures RECOVER ( 8 ) NAME recover browse and recover NetWorker files SYNOPSIS recover [-f] [-n] [-q] [-u] [-i {nnyyrr}] [-d destination] [-c client] [-t date] [-sserver] [dir] recover [-f] [-n] [-u] [-q] [-i {nnyyrr}] [-I

More information

Chapter 3 Software Installation

Chapter 3 Software Installation Software Installation Chapter 3 Software Installation This chapter provides information on how to install the CyberSerial PCI s drivers and utilities for the following operating systems: Windows 95/98

More information

Avira Rescue System. HowTo

Avira Rescue System. HowTo Avira Rescue System HowTo Table of contents 1. Introduction... 3 2. System Requirements... 4 3. Product availability... 4 4. Product features... 5 5. Using the Rescue System... 6 5.1 The BIOS setup...6

More information

Fred Hantelmann LINUX. Start-up Guide. A self-contained introduction. With 57 Figures. Springer

Fred Hantelmann LINUX. Start-up Guide. A self-contained introduction. With 57 Figures. Springer Fred Hantelmann LINUX Start-up Guide A self-contained introduction With 57 Figures Springer Contents Contents Introduction 1 1.1 Linux Versus Unix 2 1.2 Kernel Architecture 3 1.3 Guide 5 1.4 Typographical

More information

ERD Commander 2003. User s Guide

ERD Commander 2003. User s Guide Winternals Software LP 3101 Bee Caves Road, Suite 150 Austin, Texas 78746 (512) 330-9130 (512) 330-9131 Fax www.winternals.com Copyright 2003 Winternals Software LP Table of Contents 1 Introduction...1

More information

A+ Guide to Managing and Maintaining Your PC, 7e. Chapter 16 Fixing Windows Problems

A+ Guide to Managing and Maintaining Your PC, 7e. Chapter 16 Fixing Windows Problems A+ Guide to Managing and Maintaining Your PC, 7e Chapter 16 Fixing Windows Problems Objectives Learn what to do when a hardware device, application, or Windows component gives a problem Learn what to do

More information

Active@ Password Changer for DOS User Guide

Active@ Password Changer for DOS User Guide Active@ Password Changer for DOS User Guide 1 Active@ Password Changer Guide Copyright 1999-2014, LSOFT TECHNOLOGIES INC. All rights reserved. No part of this documentation may be reproduced in any form

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

Paul McFedries. Home Server 2011 LEASHE. Third Edition. 800 East 96th Street, Indianapolis, Indiana 46240 USA

Paul McFedries. Home Server 2011 LEASHE. Third Edition. 800 East 96th Street, Indianapolis, Indiana 46240 USA Paul McFedries Microsoft Windows9 Home Server 2011 LEASHE Third Edition 800 East 96th Street, Indianapolis, Indiana 46240 USA Table of Contents Introduction 1 Part I Unleashing Windows Home Server Configuration

More information

Installing a Second Operating System

Installing a Second Operating System Installing a Second Operating System Click a link below to view one of the following sections: Overview Key Terms and Information Operating Systems and File Systems Managing Multiple Operating Systems

More information

User s Manual. Version 4.0. Levit & James, Inc.

User s Manual. Version 4.0. Levit & James, Inc. User s Manual Version 4.0 April 2008 [This page is intentionally left blank] CrossWords Installation & Operation Guide 3 LEGAL NOTES The information contained in this document represents the current view

More information

DiskPulse DISK CHANGE MONITOR

DiskPulse DISK CHANGE MONITOR DiskPulse DISK CHANGE MONITOR User Manual Version 7.9 Oct 2015 www.diskpulse.com [email protected] 1 1 DiskPulse Overview...3 2 DiskPulse Product Versions...5 3 Using Desktop Product Version...6 3.1 Product

More information

File Manager User Guide

File Manager User Guide File Manager User Guide Please note: EasySiteOptimizer Version 1.6 is supplied with Web Hosting (IBP) and Advanced Web Hosting only. File Manager Introduction to File Manager To access File Manager, select

More information

warpct.com Basic Computer Skills MS Windows XP Workbook courseware by WARP! Computer Training

warpct.com Basic Computer Skills MS Windows XP Workbook courseware by WARP! Computer Training warpct.com courseware by WARP! Computer Training Basic Computer Skills MS Windows XP Workbook Welcome! Thank you for evaluating a portion of this workbook. If you have any questions or comments regarding

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

#65 4GHGTGPEG")WKFG #FXCPEGF"6GTOKPCN"5QHVYCTG 8GTUKQP"502 HQT"%QPVTQNNGT/#% Catalog # 100123 Rev.02

#65 4GHGTGPEG)WKFG #FXCPEGF6GTOKPCN5QHVYCTG 8GTUKQP502 HQT%QPVTQNNGT/#% Catalog # 100123 Rev.02 #65 #FXCPEGF"6GTOKPCN"5QHVYCTG 8GTUKQP"502 HQT"%QPVTQNNGT/#% 4GHGTGPEG")WKFG Catalog # 100123 Rev.02 &RS\ULJKWý ý ýìääçñýìääåýe\ý(vkhgý5rerwhfýõìäåëôý/lplwhgï 2FWREHUýìääåýõ3')ýYHUVLRQô &DWDORJýúìííìëêý5HYïíë

More information

ATX Document Manager. User Guide

ATX Document Manager. User Guide ATX Document Manager User Guide ATX DOCUMENT MANAGER User Guide 2010 CCH Small Firm Services. All rights reserved. 6 Mathis Drive NW Rome, GA 30165 No part of this manuscript may be copied, photocopied,

More information

IT Essentials v4.1 LI 11.4.5 Upgrade and configure storage devices and hard drives. IT Essentials v4.1 LI 12.1.3 Windows OS directory structures

IT Essentials v4.1 LI 11.4.5 Upgrade and configure storage devices and hard drives. IT Essentials v4.1 LI 12.1.3 Windows OS directory structures IT Essentials v4.1 LI 11.4.5 Upgrade and configure storage devices and hard drives 2.3 Disk management tools In Windows Vista and Windows 7, use the following path: Start > Start Search > type diskmgmt.msc

More information

Lab Activity File Management with Windows Explorer Windows XP, Vista, Windows 7 and Windows 8 Brought to you by RMRoberts.com

Lab Activity File Management with Windows Explorer Windows XP, Vista, Windows 7 and Windows 8 Brought to you by RMRoberts.com Lab Activity File Management with Windows Explorer Windows XP, Vista, Windows 7 and Windows 8 Brought to you by RMRoberts.com After completing this laboratory activity, you will be able to: o Open and

More information

A Computer Glossary. For the New York Farm Viability Institute Computer Training Courses

A Computer Glossary. For the New York Farm Viability Institute Computer Training Courses A Computer Glossary For the New York Farm Viability Institute Computer Training Courses 2006 GLOSSARY This Glossary is primarily applicable to DOS- and Windows-based machines and applications. Address:

More information

Backup and Disaster Recovery Restoration Guide

Backup and Disaster Recovery Restoration Guide Backup and Disaster Recovery Restoration Guide Page 1 Table of Contents Table of Contents...2 Terms of Use...3 BDR...4 Creating Point-in-Time Restoration Volumes...4 Mounting a Restoration Volume...4 Dismounting

More information

BIGPOND ONLINE STORAGE USER GUIDE Issue 1.1.0-18 August 2005

BIGPOND ONLINE STORAGE USER GUIDE Issue 1.1.0-18 August 2005 BIGPOND ONLINE STORAGE USER GUIDE Issue 1.1.0-18 August 2005 PLEASE NOTE: The contents of this publication, and any associated documentation provided to you, must not be disclosed to any third party without

More information

History of Revisions. Ordering Information

History of Revisions. Ordering Information No part of this document may be reproduced in any form or by any means without the express written consent of II Morrow Inc. II Morrow, Apollo, and Precedus are trademarks of II Morrow Inc. Windows is

More information

020112 2008 Blackbaud, Inc. This publication, or any part thereof, may not be reproduced or transmitted in any form or by any means, electronic, or

020112 2008 Blackbaud, Inc. This publication, or any part thereof, may not be reproduced or transmitted in any form or by any means, electronic, or Point of Sale Guide 020112 2008 Blackbaud, Inc. This publication, or any part thereof, may not be reproduced or transmitted in any form or by any means, electronic, or mechanical, including photocopying,

More information

Parallels Desktop for Mac

Parallels Desktop for Mac Parallels Software International, Inc. Parallels Desktop for Mac Quick Start Guide 3.0 (c) 2005-2007 Copyright 2006-2007 by Parallels Software International, Inc. All rights reserved. Parallels and Parallels

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

Job Scheduler User Guide IGSS Version 11.0

Job Scheduler User Guide IGSS Version 11.0 Job Scheduler User Guide IGSS Version 11.0 The information provided in this documentation contains general descriptions and/or technical characteristics of the performance of the products contained therein.

More information

Microsoft" Windows8 Home Server

Microsoft Windows8 Home Server Paul MeFedries Microsoft" Windows8 Home Server I UNLEASHED Second Edition 800 East 96th Street, Indianapolis, Indiana 46240 USA Table of Contents Introduction 1 Part I Unleashing Windows Home Server Configuration

More information

Windows 7 Portable Command Guide: MOTS 70-680, and MCITP 70-685

Windows 7 Portable Command Guide: MOTS 70-680, and MCITP 70-685 Windows 7 Portable Command Guide: MOTS 70-680, and MCITP 70-685 and 70-686 Darril Gibson 800 East 96th Street Indianapolis, Indiana 46240 USA Table of Contents INTRODUCTION 1 PART I: Command Prompt Basics

More information

Bitrix Site Manager 4.0. Quick Start Guide to Newsletters and Subscriptions

Bitrix Site Manager 4.0. Quick Start Guide to Newsletters and Subscriptions Bitrix Site Manager 4.0 Quick Start Guide to Newsletters and Subscriptions Contents PREFACE...3 CONFIGURING THE MODULE...4 SETTING UP FOR MANUAL SENDING E-MAIL MESSAGES...6 Creating a newsletter...6 Providing

More information

Backing Up TestTrack Native Project Databases

Backing Up TestTrack Native Project Databases Backing Up TestTrack Native Project Databases TestTrack projects should be backed up regularly. You can use the TestTrack Native Database Backup Command Line Utility to back up TestTrack 2012 and later

More information

VERITAS NetBackup Microsoft Windows User s Guide

VERITAS NetBackup Microsoft Windows User s Guide VERITAS NetBackup Microsoft Windows User s Guide Release 3.2 Windows NT/95/98 May, 1999 P/N 100-001004 1994-1999 VERITAS Software Corporation. All rights reserved. Portions of this software are derived

More information

Microsoft Diagnostics and Recovery Toolset 7 Evaluation Guide

Microsoft Diagnostics and Recovery Toolset 7 Evaluation Guide Microsoft Diagnostics and Recovery Toolset 7 Evaluation Guide White Paper Descriptor This document provides administrators with information and steps-by-step technique for deploying Microsoft Diagnostics

More information

Running Wordstar 6 on Windows 7 Using vdos

Running Wordstar 6 on Windows 7 Using vdos Running Wordstar 6 on Windows 7 Using vdos Version 2.0 Bruce Hartford Thanks to Dennis McCunney and Robert J. Sawyer for helping me learn how to set vdos up. Contents: Phase 1: Setting up vdos on page

More information

USB. 16MB~2GB JetFlash. User s Manual

USB. 16MB~2GB JetFlash. User s Manual USB 16MB~2GB JetFlash User s Manual Introduction Table of Contents Package Contents...1 Features...1 System Requirements...2 Before Use...2 Driver Installation Driver Installation for Windows 98/98SE...3

More information

COMMANDS 1 Overview... 1 Default Commands... 2 Creating a Script from a Command... 10 Document Revision History... 10

COMMANDS 1 Overview... 1 Default Commands... 2 Creating a Script from a Command... 10 Document Revision History... 10 LabTech Commands COMMANDS 1 Overview... 1 Default Commands... 2 Creating a Script from a Command... 10 Document Revision History... 10 Overview Commands in the LabTech Control Center send specific instructions

More information

USER GUIDE. Gateway Computer

USER GUIDE. Gateway Computer USER GUIDE Gateway Computer Contents Chapter 1: Getting Help......................................................1 Thank you for purchasing our notebook!................................ 2 Gateway Web

More information

Using Process Monitor

Using Process Monitor Using Process Monitor Process Monitor Tutorial This information was adapted from the help file for the program. Process Monitor is an advanced monitoring tool for Windows that shows real time file system,

More information

Microsoft s SBS 2003 Best Practice Guide

Microsoft s SBS 2003 Best Practice Guide Microsoft s SBS 2003 Best Practice Guide For use with StorageCraft ShadowProtect Disclaimer This guide is for End Users and Resellers to provide some guidance when building an SBS 2003 Server for best

More information

Backing Up and Restoring Software

Backing Up and Restoring Software Backing Up and Restoring Software This chapter introduces the procedures you ll use to back up and restore the MCS software operating system, database, and applications software with the BackMaster utility.

More information

Opening a Command Shell

Opening a Command Shell Opening a Command Shell Win Cmd Line 1 In WinXP, go to the Programs Menu, select Accessories and then Command Prompt. In Win7, go to the All Programs, select Accessories and then Command Prompt. Note you

More information

Unix Sampler. PEOPLE whoami id who

Unix Sampler. PEOPLE whoami id who Unix Sampler PEOPLE whoami id who finger username hostname grep pattern /etc/passwd Learn about yourself. See who is logged on Find out about the person who has an account called username on this host

More information

ThinkServer RD550 and RD650 Operating System Installation Guide

ThinkServer RD550 and RD650 Operating System Installation Guide ThinkServer RD550 and RD650 Operating System Installation Guide Note: Before using this information and the product it supports, be sure to read and understand the Read Me First and Safety, Warranty, and

More information

Sophos Anti-Virus for Mac OS X Help

Sophos Anti-Virus for Mac OS X Help Sophos Anti-Virus for Mac OS X Help For networked and standalone Macs running Mac OS X version 10.4 or later Product version: 8 Document date: April 2012 Contents 1 About Sophos Anti-Virus...3 2 Scanning

More information

IMF Tune v7.0 Backup, Restore, Replication

IMF Tune v7.0 Backup, Restore, Replication IMF Tune v7.0 Backup, Restore, Replication Contents WinDeveloper IMF Tune v7.0 Backup, Restore, Replication... 3 1. IMFTBak Requirements... 3 2. Using IMFTBak... 3 3. Backing-Up Configuration Settings...

More information

Windows Command Line Administration Instant Reference

Windows Command Line Administration Instant Reference Brochure More information from http://www.researchandmarkets.com/reports/1689674/ Windows Command Line Administration Instant Reference Description: The perfect companion to any book on Windows Server

More information

12 NETWORK MANAGEMENT

12 NETWORK MANAGEMENT 12 NETWORK MANAGEMENT PROJECTS Project 12.1 Project 12.2 Project 12.3 Project 12.4 Understanding Key Concepts Backing Up and Restoring Data Monitoring Computer Activity Configuring SNMP Support 276 Networking

More information

Empower AutoArchive Software

Empower AutoArchive Software Empower AutoArchive Software Installation and Configuration Guide 34 Maple Street Milford, MA 01757 71500044207, Revision A NOTICE The information in this document is subject to change without notice and

More information

Sophos Anti-Virus for Linux configuration guide. Product version: 9

Sophos Anti-Virus for Linux configuration guide. Product version: 9 Sophos Anti-Virus for Linux configuration guide Product version: 9 Document date: September 2014 Contents 1 About this guide...8 2 About Sophos Anti-Virus for Linux...9 2.1 What Sophos Anti-Virus does...9

More information

About this Chapter. File Manager. Chapter 7. SYSTEM MANAGEMENT

About this Chapter. File Manager. Chapter 7. SYSTEM MANAGEMENT Chapter 7. SYSTEM MANAGEMENT Chapter 7. SYSTEM MANAGEMENT About this Chapter This chapter provides comprehensive instructions on the major features associated with System Management. Included are sections

More information

COMPUTER FORENSICS. DAVORY: : DATA RECOVERY

COMPUTER FORENSICS. DAVORY: : DATA RECOVERY COMPUTER FORENSICS. DAVORY: : DATA RECOVERY Supervised By: Dr. Lo ai Tawalbeh New York Institute of Technology (NYIT)-Amman-2006 TOPICS Definition Recovery from what?? Davory SOFTWARE. Restore Software.

More information

Objectives. At the end of this chapter students should be able to:

Objectives. At the end of this chapter students should be able to: NTFS PERMISSIONS AND SECURITY SETTING.1 Introduction to NTFS Permissions.1.1 File Permissions and Folder Permission.2 Assigning NTFS Permissions and Special Permission.2.1 Planning NTFS Permissions.2.2

More information

CPSC2800: Linux Hands-on Lab #3 Explore Linux file system and file security. Project 3-1

CPSC2800: Linux Hands-on Lab #3 Explore Linux file system and file security. Project 3-1 CPSC2800: Linux Hands-on Lab #3 Explore Linux file system and file security Project 3-1 Linux support many different file systems that can be mounted using the mount command. In this project, you use the

More information

BootManage PXE Toolkit. User Manual. Boot Manage

BootManage PXE Toolkit. User Manual. Boot Manage BootManage PXE Toolkit User Manual Boot Manage P X E Toolkit BootManage PXE Toolkit User Manual Copyright 1999 bootix Technology GmbH, Geranienstrasse 19, D-41466 Neuss Copyright: All rights reserved.

More information

CPSC 2800 Linux Hands-on Lab #7 on Linux Utilities. Project 7-1

CPSC 2800 Linux Hands-on Lab #7 on Linux Utilities. Project 7-1 CPSC 2800 Linux Hands-on Lab #7 on Linux Utilities Project 7-1 In this project you use the df command to determine usage of the file systems on your hard drive. Log into user account for this and the following

More information

AMD Radeon RAMDisk. User's Manual and FAQ

AMD Radeon RAMDisk. User's Manual and FAQ AMD Radeon RAMDisk User's Manual and FAQ Revision Tracker Revision Number Software Version Description Revision Date 03 V4.0.1 Initial Release October 2012 1 Contents 1. Introduction to RAMDISK... 3 What

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

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

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

OFF-LINE COMMUNICATIONS WITH CINCINNATI EQUIPMENT Pg. 1 of 5

OFF-LINE COMMUNICATIONS WITH CINCINNATI EQUIPMENT Pg. 1 of 5 Pg. 1 of MACHINE TYPE BACKGROUND CAPABILITIES SOFTWARE NEEDED* C. I. SOFTWARE AVAILABLE Autoform - VMEI NO Kermit - Off-Line Programming - -D Programming Autoform - VMEII YES Kermit - Same as above - D

More information

Microsoft Exchange 2003 Disaster Recovery Operations Guide

Microsoft Exchange 2003 Disaster Recovery Operations Guide Microsoft Exchange 2003 Disaster Recovery Operations Guide Microsoft Corporation Published: December 12, 2006 Author: Exchange Server Documentation Team Abstract This guide provides installation and deployment

More information

Cisco Networking Academy Program Curriculum Scope & Sequence. Fundamentals of UNIX version 2.0 (July, 2002)

Cisco Networking Academy Program Curriculum Scope & Sequence. Fundamentals of UNIX version 2.0 (July, 2002) Cisco Networking Academy Program Curriculum Scope & Sequence Fundamentals of UNIX version 2.0 (July, 2002) Course Description: Fundamentals of UNIX teaches you how to use the UNIX operating system and

More information

When upgrading your TAPIT software make sure that all call accounting data has been exported before you begin the installation process.

When upgrading your TAPIT software make sure that all call accounting data has been exported before you begin the installation process. When upgrading your TAPIT software make sure that all call accounting data has been exported before you begin the installation process. Registration Settings: SERIAL NUMBER: COMPUTER ID: REGISTRATION NUMBER:

More information

Sample of Hardware Equipment Acceptance Form

Sample of Hardware Equipment Acceptance Form Sample of Hardware Equipment Acceptance Form Acceptance Plan: (File Server) (Form P1) Server System Unit Item & Serial No. : Result : Pass / Fail Power-On Self (POST) to be conducted Power on the server

More information

Sophos Anti-Virus for Mac OS X: Home Edition Help

Sophos Anti-Virus for Mac OS X: Home Edition Help Sophos Anti-Virus for Mac OS X: Home Edition Help For standalone Macs running Mac OS X Product version: 9C Document date: June 2013 Sophos TOC 3 Contents About Sophos Anti-Virus...5 About the Scans window...5

More information

Copyright 2014 http://itfreetraining.com

Copyright 2014 http://itfreetraining.com This video looks at the four file systems supported by Windows. These are ReFS, NTFS, FAT and exfat. The video looks at what each file system is capable of and its limitations. Resilient File System (ReFS)

More information

HP Online ROM Flash. User Guide

HP Online ROM Flash. User Guide HP Online ROM Flash User Guide Part number: 216315-010 Tenth edition: March 2006 Legal notices Copyright 2000, 2006 Hewlett-Packard Development Company, L.P. The information contained herein is subject

More information

Inteset Secure Lockdown ver. 2.0

Inteset Secure Lockdown ver. 2.0 Inteset Secure Lockdown ver. 2.0 for Windows XP, 7, 8, 10 Administrator Guide Table of Contents Administrative Tools and Procedures... 3 Automatic Password Generation... 3 Application Installation Guard

More information

Patrol Master Software

Patrol Master Software Handheld Guard Tracking System PATROL Patrol Master Software Software version : 3.1.16 Document version: Rev. C Contents 1. Introduction... 3 1.1 Purpose and main features... 3 1.2. Requirements... 3 1.3.

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

NTFS Undelete User Manual

NTFS Undelete User Manual NTFS Undelete User Manual What is NTFS Undelete? NTFS Undelete is a small utility that scans your hard drive for all files that can be undeleted and attempts to recover them for you. Sounds like magic?

More information

Troubleshooting PCs What to do when you don't know what to do!

Troubleshooting PCs What to do when you don't know what to do! Troubleshooting PCs What to do when you don't know what to do! Prepared By: Helpdesk AIT-ITServ ITServ Troubleshooting techniques: Check the Cable Connections First. Check the Cable Connections First.

More information

Chapter Contents. Operating System Activities. Operating System Basics. Operating System Activities. Operating System Activities 25/03/2014

Chapter Contents. Operating System Activities. Operating System Basics. Operating System Activities. Operating System Activities 25/03/2014 Chapter Contents Operating Systems and File Management Section A: Operating System Basics Section B: Today s Operating Systems Section C: File Basics Section D: File Management Section E: Backup Security

More information

Symantec Backup Exec Desktop Laptop Option ( DLO )

Symantec Backup Exec Desktop Laptop Option ( DLO ) The following is a short description of our backup software: BACKUP-EXEC-DLO. We have set many of the parameters for you but, if necessary, these parameters can be changed. Symantec Backup Exec Desktop

More information