HackMind.Org MS-DOS Guide

Size: px
Start display at page:

Download "HackMind.Org MS-DOS Guide"

Transcription

1 PREMISES This document when I am writing refers to the command prompt of Windows 8.1 which is the version of the operating system that I currently use. Despite the MS-DOS commands are the same for most of the windows operating systems is only right to remind you that may not necessarily be the same, and therefore I recommend to check on your operating system before performing the operations. As already indicated in my website and any actions or activities related to the material contained Within this file is Solely your responsibility. Do not insert the complete disclaimer because the document itself would become too long, but you can view it in the following link MS-DOS (short for Microsoft Disk Operating System) is an operating system for x86-based personal computers mostly developed by Microsoft. It was the most commonly used member of the DOS family of operating systems, and was the main operating system for IBM PC compatible personal computers during the 1980s to the mid-1990s, when it was gradually superseded by operating systems offering a graphical user interface (GUI), in various generations of the Microsoft Windows operating system. INDEX PREMISES and INDEX Page 1 INTRODUCTION Page 2 MS-DOS OPERATIONS Page 1 to Page 6 CREATE AND USE BATCH FILES Page 7 NETWORK TROUBLESHOOTING WITH COMMAND PROMPT Page 8 MS-DOS COMMAND LIST Page 9 to Page 10 Pag. 1 of 10

2 INTRODUCTION MS-DOS is still used in embedded x86 systems due to its simple architecture and minimal memory and processor requirements. The command line interpreter of NT-based versions of Windows, CMD.EXE, maintains most of the same commands and some compatibility with DOS batch files. The way I prefer to open the command prompt (the interface from which to enter the MS-DOS command under Windows) is as follows: Windows + R you will see the following screen where you will have to write "cmd" and press ok: Now you will get the prompt from which you can enter all the commands to perform the operations you need. For completeness the end of this guide I have entered all the commands you can use with their description, but be careful, some commands that are generally used by the prompt to make network diagnostics, such as PING, NETSTAT and IPCONFIG are not dos commands. These applications that can be called from the command prompt, and don t worry I ll see you later ;) Pag. 2 of 10

3 MS-DOS OPERATIONS Commands can be typed in response to the network DOS prompt: C:\> (or like the previous example C:\User\Username\> this may vary by the version of the OS) Commands may be typed in upper or lower case. Here, they are specified in upper case to distinguish them from other input. Commands have a particular format. Some can be used simply by typing the command name only, as in: DIR which displays a listing of files in the current directory. Many commands can take extra information called parameters to make them more specific, For example, the COPY command can have a parameter specifying a file to be copied and a parameter specifying a file to which the copy is to be made. So the command would look like this: COPY filea fileb In this case, filea would be the name of a file to copy from and fileb would be the name of a file to copy to. Parameters can sometimes be omitted in which case a default action will apply. Commands can also be qualified by the use of options. Options are preceded by a / sign. A simple example of the use of an option is with the DIR command. DIR can be qualified by /P or /W. Thus the commands: DIR DIR /W DIR /P result in listings presented in a different format as detailed later. Make a copy of a file or merge files together. COPY original-file destination-file where original-file and destination-file are file names, separated by a space. The command can be used to merge several files into one file since the original-file parameter can be a list of filenames separated by the + symbol. For example: COPY file1 + file2 file3 would copy file1 and file2 into file3. Note that the file names used in the copy command must include the file extension if it exists. So if you were copying a fortran program called first.for, for example, you would need to include the.for extension in the filename. Delete a file. DEL filename where filename is the name of the file to be deleted. You are asked to confirm that you really want to delete the file. Note that the name must include the file extension. Pag. 3 of 10

4 The amount of space on a disk is limited and it is necessary periodically to tidy up unwanted files. It is possible to use a '*' character in a filename to match any sequence of characters. This feature is very useful when deleting unwanted files with identical extensions. For example, when developing programs, DEL *.obj will delete every binary (.obj) file in the current directory. Since an.obj file can always be recreated from the original source program, it is usually unnecessary to keep it. Obtain a list of the files stored in a directory. If used without options this command will give a list of files in the current directory, including any extension (e.g..for), and their size. If used with the option /P, that is: DIR /P The same information will be displayed page by page with the message: strike a key when ready at the end of each page. If it is used with the /W option, i.e. DIR /W the listing is of names and extensions only and in a more compact format across the page. Take a security copy of your working disk. It is very important to have a second copy of your programs and data in case you lose your disk or it becomes unreadable for some reason. Use the DISKCOPY command as follows: DISKCOPY A: A: where A: denotes the drive the disks will be loaded into. When a copy of your disk is generated in the computer's memory, the computer tells you to remove the first or source disk and insert the disk, which is to become the copy (the target disk). Insert the target disk and press ENTER. If the second disk is not formatted it will be formatted automatically. The source disk should be write protected using the tab in the corner in case you mistake it for the target disk (see the chapter on using disks). Obtain a printed listing of a file. LIST filename where filename is the file to be printed. If the printer is busy, or if you don't need a printed copy, you can use the TYPE command to view a file on the screen. You could also use an editor such as DOS Edit to display a file, in which case, as a bonus, you would then be in a position to correct any errors you might notice. Remember that the file name must include the file extension. So if you want to print your Pascal program called first you would need to use: LIST first.pas Change the name of a file. This command can be abbreviated to REN: Pag. 4 of 10

5 REN oldname newname where oldname is the file to be renamed and newname is the name it is to be given. Note that files on drives other than the current drive can be referred to by prefixing the filename by the relevant drive letter, for example: A:\filename where the \ refers to the root directory of the drive. Filenames can also include directories separated by the \ character as in: A:\dir1\dir2\filename View a file on the screen. TYPE filename where filename is the name of the file to be displayed on the monitor screen. If you are looking at a long file, you will need to press the PAUSE key to stop continuous scrolling. Press the space bar to continue scrolling when you have read the screen. To format a floppy disk, place the disk in the floppy drive and type: FORMAT A: Note that by default the disk will be formatted to hold about 1.44 megabytes of data. Warning: formatting will destroy any data on the disk so only do this once! DOS Command Listing In the following section, alternative options are separated by the! character. Arguments are optional unless in italics. cwd stands for Current Working Directory. DOS commands are not case sensitive. Some commands have switches; these must be preceded by a forward slash (/). Pathnames may be preceded by a drive letter as in X:pathname and if no drive or pathname is given the current directory is assumed. Full details of all DOS commands can be seen by following the command with the switch /? For example, DIR /? gives a listing of all DIR options. DOS commands are stored in a template and previous commands can be recalled, character by character enabling editing as required. The template is accessed by the following keys: F1 - get next character from template F2 C - get characters up to but excluding character C F3 - get remaining characters from template del - skip one character in template F4 C - skip characters up to but excluding character C ESC - clear command line INS - toggle overwriting of template F5 - copy command to template for re-editing F6 - put ^Z in new template The arrow keys may also be used to recall the previous command. All DOS commands may be used in batch files. Additionally, the following commands are useful for more advanced batch processes. Pag. 5 of 10

6 Arguments for batch files are accessed as %1 to %9. ECHO on!off!message display echo status, turn echoing on!off (default on) or display message FOR %%C IN (SET of items) DO command C is any character other than 0-9, SET is e.g. list of files GOTO LABEL LABEL is any line of text, usually preceded by colon (:) in first column, which makes MS-DOS ignore it other than as a label. Terminates if label not found IF ERRORLEVEL number command command executed if previous command returned exit code >= number IF string1 == string2 command command executed if strings match may be negated by NOT before condition IF EXIST filename command command executed if file exists may be negated by NOT before condition PAUSE comment comment displayed only if echo on REM comment remark - ignored by MS-DOS Several special characters may be used when referring to directories and files: \ = root directory or a directory separator. = current directory.. = parent directory Wildcard characters may be used in filenames or extensions:? = any character * = any tail or extension X: - switches to current working directory (cwd) on drive X. The FC command enables comparison of two files: FC pathname1 pathname2 compare two files, or two wildcarded sets of files /a - abbreviate output of ASCII comparison /b - force binary comparison (byte-by-byte) /c - ignore case /L - force ASCII comparison (lineby-line) /Lb# - use line buffer of # lines /n - display line numbers in ASCII mode /t - do not expand tabs - default expands to spacing of 8 /w - compress white space (tabs and spaces) to single space (leading or trailing white space always ignored) /# - # lines must match to re-synchronize else regarded different (default is 2) I/O Control DOS input and output may be controlled by the following control key sequences. (^ = the CTRL key). ^C - abort current command ^H - destructive backspace ^J - linefeed - physical newline to input long lines ^N - toggle copying of terminal output to printer ^P - toggle redirection of terminal output to printer ^S - suspend/restart terminal output ^X - cancel current line, and output \-CR-LF ^Z - end of file Input and output from commands or programs can be redirected by using the following symbols: > send output to... >> append output to... < take input from... pipe output to next input For example: pipe output from command a to input of command b: command a command b send a directory listing to file filename: DIR > filename DOS includes a full-screen editor invoked by the EDIT command (with or without a filename). To use this editor type: EDIT (filename) The editor provides pull-down menus, operated by the keyboard or mouse, and a help facility. Note that any changes made to a file overwrites the original, no backup is created. Pag. 6 of 10

7 CREATE AND USE BATCH FILES With batch files, which are also called batch programs or scripts, you can simplify routine or repetitive tasks. A batch file is an unformatted text file that contains one or more commands and has a.bat or.cmd file name extension. When you type the file name at the command prompt, Cmd.exe runs the commands sequentially as they appear in the file. You can include any command in a batch file. Certain commands, such as for, goto, and if, enable you to do conditional processing of the commands in the batch file. For example, the if command carries out a command based on the results of a condition. Other commands allow you to control input and output and call other batch files. If you want create a simple batch file that show files inside a directory, you can open notepad write inside it the command DIR (In this case I have inserted the PAUSE command to avoid that the window will automatically close) and save the file with the extension.bat like in the image shows below: When you want execute the batch file just double click on it and the prompt will show and execute the command that you have inserted on it, as the following image shows: Pag. 7 of 10

8 NETWORK TROUBLESHOOTING WITH COMMAND PROMPT As I tell before, if you need to do some network troubleshooting, you can use the command prompt and the following commands, and remember that if you need the command options just write the command followed by /?: Get MAC Address (Getmac.exe) Discovers the Media Access Control (MAC) address and lists associated network protocols for all network cards in a computer, either locally or across a network. Hostname (Hostname.exe) Displays the host name of the current computer. IP Configuration Utility (Ipconfig.exe) Displays all current Transmission Control Protocol/Internet Protocol (TCP/IP) network configuration values, and refreshes Dynamic Host Configuration Protocol (DHCP) and DNS settings. Name Server Lookup (Nslookup.exe) Displays information about Domain Name System records for specific IP addresses and/or host names so that you can troubleshoot DNS problems. Net services commands (Net.exe) Performs a broad range of network tasks. Type net with no parameters to see a full list of available command-line options. Netstat (Netstat.exe) Displays active TCP connections, ports on which the computer is listening, Ethernet statistics, the IP routing table, and IPv4/IPv6 statistics. Network Command Shell (Netsh.exe) Displays or modifies the network configuration of a local or remote computer that is currently running. This command-line scripting utility has a huge number of options, which are fully detailed in Help. PathPing (Pathping.exe) Combines the functions of Traceroute and Ping to identify problems at a router or network link. TCP/IP NetBIOS Information (Nbtstat.exe) Displays statistics for the NetBIOS over TCP/IP (NetBT) protocol, NetBIOS name tables for both the local computer and remote computers, and the NetBIOS name cache. TCP/IP Ping (Ping.exe) Verifies IP-level connectivity to another internet address by sending Internet Control Message Protocol (ICMP) packets and measuring response time in milliseconds. TCP/IP Route (Route.exe) Displays and modifies entries in the local IP routing table. TCP/IP Traceroute (Tracert.exe) Determines the path to an internet address, and lists the time required to reach each hop. It s useful for troubleshooting connectivity problems on specific network segments. Here you have an example of a PING command execution that verify the connection between us and Google Web Server: Pag. 8 of 10

9 MS-DOS COMMAND LIST If you want see the complete list of the commands that you can use, on command prompt just write Help And press enter, you ll see the following list: ASSOC ATTRIB BREAK BCDEDIT CACLS CALL CD CHCP CHDIR CHKDSK CHKNTFS CLS CMD COLOR COMP COMPACT CONVERT COPY DATE DEL DIR DISKCOMP DISKCOPY DISKPART DOSKEY DRIVERQUERY ECHO ENDLOCAL ERASE EXIT FC FIND FINDSTR FOR FORMAT FSUTIL FTYPE GOTO GPRESULT GRAFTABL HELP ICACLS Displays or modifies file extension associations. Displays or changes file attributes. Sets or clears extended CTRL+C checking. Sets properties in boot database to control boot loading. Displays or modifies access control lists (ACLs) of files. Calls one batch program from another. Displays the name of or changes the current directory. Displays or sets the active code page number. Displays the name of or changes the current directory. Checks a disk and displays a status report. Displays or modifies the checking of disk at boot time. Clears the screen. Starts a new instance of the Windows command interpreter. Sets the default console foreground and background colors. Compares the contents of two files or sets of files. Displays or alters the compression of files on NTFS partitions. Converts FAT volumes to NTFS. You cannot convert the current drive. Copies one or more files to another location. Displays or sets the date. Deletes one or more files. Displays a list of files and subdirectories in a directory. Compares the contents of two floppy disks. Copies the contents of one floppy disk to another. Displays or configures Disk Partition properties. Edits command lines, recalls Windows commands, and creates macros. Displays current device driver status and properties. Displays messages, or turns command echoing on or off. Ends localization of environment changes in a batch file. Deletes one or more files. Quits the CMD.EXE program (command interpreter). Compares two files or sets of files, and displays the differences bet them. Searches for a text string in a file or files. Searches for strings in files. Runs a specified command for each file in a set of files. Formats a disk for use with Windows. Displays or configures the file system properties. Displays or modifies file types used in file extension associations. Directs the Windows command interpreter to a labeled line in a batch. Displays Group Policy information for machine or user. Enables Windows to display an extended character set in graphics mode. Provides Help information for Windows commands. Display, modify, backup, or restore ACLs for files and directories. Pag. 9 of 10

10 IF LABEL MD MKDIR MKLINK MODE MORE MOVE OPENFILES PATH PAUSE POPD PRINT PROMPT PUSHD RD RECOVER REM REN RENAME REPLACE RMDIR ROBOCOPY SET SETLOCAL SC SCHTASKS SHIFT SHUTDOWN SORT START SUBST SYSTEMINFO TASKLIST TASKKILL TIME TITLE TREE TYPE VER VERIFY VOL XCOPY WMIC Performs conditional processing in batch programs. Creates, changes, or deletes the volume label of a disk. Creates a directory. Creates a directory. Creates Symbolic Links and Hard Links Configures a system device. Displays output one screen at a time. Moves one or more files from one directory to another directory. Displays files opened by remote users for a file share. Displays or sets a search path for executable files. Suspends processing of a batch file and displays a message. Restores the previous value of the current directory saved by PUSHD. Prints a text file. Changes the Windows command prompt. Saves the current directory then changes it. Removes a directory. Recovers readable information from a bad or defective disk. Records comments (remarks) in batch files or CONFIG.SYS. Renames a file or files. Renames a file or files. Replaces files. Removes a directory. Advanced utility to copy files and directory trees Displays, sets, or removes Windows environment variables. Begins localization of environment changes in a batch file. Displays or configures services (background processes). Schedules commands and programs to run on a computer. Shifts the position of replaceable parameters in batch files. Allows proper local or remote shutdown of machine. Sorts input. Starts a separate window to run a specified program or command. Associates a path with a drive letter. Displays machine specific properties and configuration. Displays all currently running tasks including services. Kill or stop a running process or application. Displays or sets the system time. Sets the window title for a CMD.EXE session. Graphically displays the directory structure of a drive or path. Displays the contents of a text file. Displays the Windows version. Tells Windows whether to verify that your files are written correctly. Displays a disk volume label and serial number. Copies files and directory trees. Displays WMI information inside interactive command shell. If you need more command details about options, you can write on the command prompt for example: DIR /? or XCOPY /? or VER /? (wherevercommand /?) and press Enter. Pag. 10 of 10

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

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

Shree M. & N. Virani Science College. DOS Commands. By Milan Kothari. Yogidham, Kalawad Road, Rajkot 5 Ph : 2576681

Shree M. & N. Virani Science College. DOS Commands. By Milan Kothari. Yogidham, Kalawad Road, Rajkot 5 Ph : 2576681 DOS Commands By Milan Kothari What Is Dos? DOS or the Disk Operating System designed to operate personal computer is basically a collection of software programs that help to manage the personal computer

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

Procedure: You can find the problem sheet on Drive D: of the lab PCs. 1. IP address for this host computer 2. Subnet mask 3. Default gateway address

Procedure: You can find the problem sheet on Drive D: of the lab PCs. 1. IP address for this host computer 2. Subnet mask 3. Default gateway address Objectives University of Jordan Faculty of Engineering & Technology Computer Engineering Department Computer Networks Laboratory 907528 Lab.4 Basic Network Operation and Troubleshooting 1. To become familiar

More information

Introduction to Operating Systems

Introduction to Operating Systems Introduction to Operating Systems It is important that you familiarize yourself with Windows and Linux in preparation for this course. The exercises in this book assume a basic knowledge of both of these

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

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

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

Fundamentals of UNIX Lab 16.2.6 Networking Commands (Estimated time: 45 min.)

Fundamentals of UNIX Lab 16.2.6 Networking Commands (Estimated time: 45 min.) Fundamentals of UNIX Lab 16.2.6 Networking Commands (Estimated time: 45 min.) Objectives: Develop an understanding of UNIX and TCP/IP networking commands Ping another TCP/IP host Use traceroute to check

More information

The Windows Command Prompt: Simpler and More Useful Than You Think

The Windows Command Prompt: Simpler and More Useful Than You Think The Windows Command Prompt: Simpler and More Useful Than You Think By Ryan Dube When most people think of the old DOS command prompt window that archaic, lingering vestige of computer days gone by they

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

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

Hands On Activities: TCP/IP Network Monitoring and Management

Hands On Activities: TCP/IP Network Monitoring and Management Hands On Activities: TCP/IP Network Monitoring and Management 1. TCP/IP Network Management Tasks TCP/IP network management tasks include Examine your physical and IP network address Traffic monitoring

More information

7 TRANSMISSION CONTROL PROTOCOL/ INTERNET PROTOCOL (TCP/IP)

7 TRANSMISSION CONTROL PROTOCOL/ INTERNET PROTOCOL (TCP/IP) 7 TRANSMISSION CONTROL PROTOCOL/ INTERNET PROTOCOL (TCP/IP) PROJECTS Project 7.1 Project 7.2 Project 7.3 Project 7.4 Project 7.5 Understanding Key Concepts Configuring TCP/IP Properties Comparing Name

More information

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

DOS COMMAND EXAMPLES. TIME To set your computer's clock to 1:36 P.M., use either of the following commands: 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

More information

LAB THREE STATIC ROUTING

LAB THREE STATIC ROUTING LAB THREE STATIC ROUTING In this lab you will work with four different network topologies. The topology for Parts 1-4 is shown in Figure 3.1. These parts address router configuration on Linux PCs and a

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

DiskPulse DISK CHANGE MONITOR

DiskPulse DISK CHANGE MONITOR DiskPulse DISK CHANGE MONITOR User Manual Version 7.9 Oct 2015 www.diskpulse.com info@flexense.com 1 1 DiskPulse Overview...3 2 DiskPulse Product Versions...5 3 Using Desktop Product Version...6 3.1 Product

More information

Configuring Virtual Blades

Configuring Virtual Blades CHAPTER 14 This chapter describes how to configure virtual blades, which are computer emulators that reside in a WAE or WAVE device. A virtual blade allows you to allocate WAE system resources for use

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

MOVES Batch Mode: Setting up and running groups of related MOVES run specifications. EPA Office of Transportation and Air Quality 11/3/2010

MOVES Batch Mode: Setting up and running groups of related MOVES run specifications. EPA Office of Transportation and Air Quality 11/3/2010 MOVES Batch Mode: Setting up and running groups of related MOVES run specifications EPA Office of Transportation and Air Quality 11/3/2010 Webinar Logistics Please use question box to send any questions

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

Computer Networks I Laboratory Exercise 1

Computer Networks I Laboratory Exercise 1 Computer Networks I Laboratory Exercise 1 The lab is divided into two parts where the first part is a basic PC network TCP/IP configuration and connection to the Internet. The second part is building a

More information

Command-line reference A-Z

Command-line reference A-Z Command-line reference A-Z To find information about a command, on the A-Z button menu at the top of this page, click the letter that the command starts with, and then click the command name. In addition

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

Hypercosm. Studio. www.hypercosm.com

Hypercosm. Studio. www.hypercosm.com Hypercosm Studio www.hypercosm.com Hypercosm Studio Guide 3 Revision: November 2005 Copyright 2005 Hypercosm LLC All rights reserved. Hypercosm, OMAR, Hypercosm 3D Player, and Hypercosm Studio are trademarks

More information

Windows XP Pro: Basics 1

Windows XP Pro: Basics 1 NORTHWEST MISSOURI STATE UNIVERSITY ONLINE USER S GUIDE 2004 Windows XP Pro: Basics 1 Getting on the Northwest Network Getting on the Northwest network is easy with a university-provided PC, which has

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

Easy Setup Guide for the Sony Network Camera

Easy Setup Guide for the Sony Network Camera -878-191-11 (1) Easy Setup Guide for the Sony Network Camera For setup, a computer running the Microsoft Windows Operating System is required. For monitoring camera images, Microsoft Internet Explorer

More information

Hands-On Microsoft Windows Server 2008. Chapter 12 Managing System Reliability and Availability

Hands-On Microsoft Windows Server 2008. Chapter 12 Managing System Reliability and Availability Hands-On Microsoft Windows Server 2008 Chapter 12 Managing System Reliability and Availability Objectives Understand general problem-solving strategies Resolve boot problems Use and configure Event Viewer

More information

Lab 1: Introduction to the network lab

Lab 1: Introduction to the network lab CSCI 312 - DATA COMMUNICATIONS AND NETWORKS FALL, 2014 Lab 1: Introduction to the network lab NOTE: Be sure to bring a flash drive to the lab; you will need it to save your data. For this and future labs,

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

Guest PC. for Mac OS X. User Guide. Version 1.6. Copyright 1996-2005 Lismore Software Systems, Ltd. All rights reserved.

Guest PC. for Mac OS X. User Guide. Version 1.6. Copyright 1996-2005 Lismore Software Systems, Ltd. All rights reserved. Guest PC for Mac OS X Version 1.6 User Guide Copyright 1996-2005 Lismore Software Systems, Ltd. All rights reserved. Table of Contents About Guest PC... 1 About your Virtual Computer... 1 Creating a Virtual

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

Tera Term Telnet. Introduction

Tera Term Telnet. Introduction Tera Term Telnet Introduction Starting Telnet Tera Term is a terminal emulation program that enables you to log in to a remote computer, provided you have a registered account on that machine. To start

More information

Back-up Server DOC-OEMSPP-S/2014-BUS-EN-10/12/13

Back-up Server DOC-OEMSPP-S/2014-BUS-EN-10/12/13 Back-up Server DOC-OEMSPP-S/2014-BUS-EN-10/12/13 The information contained in this guide is not of a contractual nature and may be subject to change without prior notice. The software described in this

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

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

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

IBM i Version 7.2. Security Service Tools

IBM i Version 7.2. Security Service Tools IBM i Version 7.2 Security Service Tools IBM i Version 7.2 Security Service Tools Note Before using this information and the product it supports, read the information in Notices on page 37. This edition

More information

Honeywell Internet Connection Module

Honeywell Internet Connection Module Honeywell Internet Connection Module Setup Guide Version 1.0 - Page 1 of 18 - ICM Setup Guide Technical Support Setup - Guide Table of Contents Introduction... 3 Network Setup and Configuration... 4 Setting

More information

MFC7840W Windows Network Connection Repair Instructions

MFC7840W Windows Network Connection Repair Instructions Difficulty printing from your PC can occur for various reasons. The most common reason a networked Brother machine may stop printing, is because the connection between the computer and the Brother machine

More information

CS 326e F2002 Lab 1. Basic Network Setup & Ethereal Time: 2 hrs

CS 326e F2002 Lab 1. Basic Network Setup & Ethereal Time: 2 hrs CS 326e F2002 Lab 1. Basic Network Setup & Ethereal Time: 2 hrs Tasks: 1 (10 min) Verify that TCP/IP is installed on each of the computers 2 (10 min) Connect the computers together via a switch 3 (10 min)

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

enicq 5 System Administrator s Guide

enicq 5 System Administrator s Guide Vermont Oxford Network enicq 5 Documentation enicq 5 System Administrator s Guide Release 2.0 Published November 2014 2014 Vermont Oxford Network. All Rights Reserved. enicq 5 System Administrator s Guide

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

Newton Backup Utility User s Guide. for the Windows Operating System

Newton Backup Utility User s Guide. for the Windows Operating System Newton Backup Utility User s Guide for the Windows Operating System K Apple Computer, Inc. 1995 Apple Computer, Inc. All rights reserved. Under the copyright laws, this manual may not be copied, in whole

More information

vtcommander Installing and Starting vtcommander

vtcommander Installing and Starting vtcommander vtcommander vtcommander provides a local graphical user interface (GUI) to manage Hyper-V R2 server. It supports Hyper-V technology on full and core installations of Windows Server 2008 R2 as well as on

More information

Using Logon Agent for Transparent User Identification

Using Logon Agent for Transparent User Identification Using Logon Agent for Transparent User Identification Websense Logon Agent (also called Authentication Server) identifies users in real time, as they log on to domains. Logon Agent works with the Websense

More information

Introduction to Mac OS X

Introduction to Mac OS X Introduction to Mac OS X The Mac OS X operating system both a graphical user interface and a command line interface. We will see how to use both to our advantage. Using DOCK The dock on Mac OS X is the

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

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

ADMINISTRATOR S GUIDE

ADMINISTRATOR S GUIDE F O R W I N D O W S N T ADMINISTRATOR S GUIDE 1997 Claris Corporation. All Rights Reserved. Claris Corporation 5201 Patrick Henry Drive Santa Clara, California 95052 Claris and FileMaker are trademarks

More information

Q N X S O F T W A R E D E V E L O P M E N T P L A T F O R M v 6. 4. 10 Steps to Developing a QNX Program Quickstart Guide

Q N X S O F T W A R E D E V E L O P M E N T P L A T F O R M v 6. 4. 10 Steps to Developing a QNX Program Quickstart Guide Q N X S O F T W A R E D E V E L O P M E N T P L A T F O R M v 6. 4 10 Steps to Developing a QNX Program Quickstart Guide 2008, QNX Software Systems GmbH & Co. KG. A Harman International Company. All rights

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

1 Getting Started. Before you can connect to a network

1 Getting Started. Before you can connect to a network 1 Getting Started This chapter contains the information you need to install either the Apple Remote Access Client or Apple Remote Access Personal Server version of Apple Remote Access 3.0. Use Apple Remote

More information

5nine Hyper-V Commander

5nine Hyper-V Commander 5nine Hyper-V Commander 5nine Hyper-V Commander provides a local graphical user interface (GUI), and a Framework to manage Hyper-V R2 server and various functions such as Backup/DR, HA and P2V/V2V. It

More information

The Helios Microsoft Windows Server

The Helios Microsoft Windows Server The Helios Microsoft Windows Server COPYRIGHT This document Copyright 1992 Distributed Software Limited. All rights reserved. This document may not, in whole or in part, be copied, photocopied, reproduced,

More information

User Guide. SysMan Utilities. By Sysgem AG

User Guide. SysMan Utilities. By Sysgem AG SysMan Utilities User Guide By Sysgem AG Sysgem is a trademark of Sysgem AG. Other brands and products are registered trademarks of their respective holders. 2013 Sysgem AG, Lavaterstr. 45, CH-8002 Zürich,

More information

During your session you will have access to the following lab configuration. CLIENT1 (Windows XP Workstation) 192.168.0.2 /24

During your session you will have access to the following lab configuration. CLIENT1 (Windows XP Workstation) 192.168.0.2 /24 Introduction The Network Vulnerabilities module provides you with the instruction and Server hardware to develop your hands on skills in the defined topics. This module includes the following exercises:

More information

VIP-102B IP Solutions Setup Tool Reference Manual

VIP-102B IP Solutions Setup Tool Reference Manual VIP-102B IP Solutions Setup Tool Reference Manual Table of Contents Overview...5 System Requirements for Managed VoIP Products...6 Term Definitions...7 Main Application Window...8 Legend Description...9

More information

Plesk 11 Manual. Fasthosts Customer Support

Plesk 11 Manual. Fasthosts Customer Support Fasthosts Customer Support Plesk 11 Manual This guide covers everything you need to know in order to get started with the Parallels Plesk 11 control panel. Contents Introduction... 3 Before you begin...

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

for the VaultDR Online Plugin for Linux-based Operating Systems

for the VaultDR Online Plugin for Linux-based Operating Systems Redefining Data Protection Title Page User s Guide for the VaultDR Online Plugin for Linux-based Operating Systems NVE 7009-36B 01/19-07 Copyrights NetVault:Backup - User s Guide for the VaultDR Online

More information

9 Administering Shared Folders

9 Administering Shared Folders 9 Administering Shared Folders Exam Objectives in this Chapter: Manage and troubleshoot access to shared folders. Create and remove shared folders. Why This Chapter Matters Control access to shared folders

More information

3.1 Connecting to a Router and Basic Configuration

3.1 Connecting to a Router and Basic Configuration 3.1 Connecting to a Router and Basic Configuration Objective This lab will focus on the ability to connect a PC to a router in order to establish a console session and observe the user interface. A console

More information

TestManager Administration Guide

TestManager Administration Guide TestManager Administration Guide RedRat Ltd July 2015 For TestManager Version 4.57-1 - Contents 1. Introduction... 3 2. TestManager Setup Overview... 3 3. TestManager Roles... 4 4. Connection to the TestManager

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

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

Freshservice Discovery Probe User Guide

Freshservice Discovery Probe User Guide Freshservice Discovery Probe User Guide 1. What is Freshservice Discovery Probe? 1.1 What details does Probe fetch? 1.2 How does Probe fetch the information? 2. What are the minimum system requirements

More information

UNIX: Introduction to TELNET and FTP on UNIX

UNIX: Introduction to TELNET and FTP on UNIX Introduction to TELNET and FTP on UNIX SYNOPSIS This document is written with the novice user in mind. It describes the use of TCP/IP and FTP to transfer files to and from the UNIX operating system and

More information

Migrating to Excel 2010 from Excel 2003 - Excel - Microsoft Office 1 of 1

Migrating to Excel 2010 from Excel 2003 - Excel - Microsoft Office 1 of 1 Migrating to Excel 2010 - Excel - Microsoft Office 1 of 1 In This Guide Microsoft Excel 2010 looks very different, so we created this guide to help you minimize the learning curve. Read on to learn key

More information

Local Caching Servers (LCS): User Manual

Local Caching Servers (LCS): User Manual Local Caching Servers (LCS): User Manual Table of Contents Local Caching Servers... 1 Supported Browsers... 1 Getting Help... 1 System Requirements... 2 Macintosh... 2 Windows... 2 Linux... 2 Downloading

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

Backup Server DOC-OEMSPP-S/6-BUS-EN-21062011

Backup Server DOC-OEMSPP-S/6-BUS-EN-21062011 Backup Server DOC-OEMSPP-S/6-BUS-EN-21062011 The information contained in this guide is not of a contractual nature and may be subject to change without prior notice. The software described in this guide

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

Chapter 10 Troubleshooting

Chapter 10 Troubleshooting Chapter 10 Troubleshooting This chapter provides troubleshooting tips and information for your ProSafe Dual WAN Gigabit Firewall with SSL & IPsec VPN. After each problem description, instructions are provided

More information

Fiery E100 Color Server. Welcome

Fiery E100 Color Server. Welcome Fiery E100 Color Server Welcome 2011 Electronics For Imaging, Inc. The information in this publication is covered under Legal Notices for this product. 45098226 27 June 2011 WELCOME 3 WELCOME This Welcome

More information

HP Integrity Servers with Microsoft Windows Server 2003 for Itanium-based Systems Recovering Windows Server 2003 on HP Integrity Servers

HP Integrity Servers with Microsoft Windows Server 2003 for Itanium-based Systems Recovering Windows Server 2003 on HP Integrity Servers HP Integrity Servers with Microsoft Windows Server 2003 for Itanium-based Systems Recovering Windows Server 2003 on HP Integrity Servers HP Part Number: 5992-4471 Published: April 2008 Copyright 2008 Hewlett-Packard

More information

Moxa Device Manager 2.0 User s Guide

Moxa Device Manager 2.0 User s Guide First Edition, March 2009 www.moxa.com/product 2009 Moxa Inc. All rights reserved. Reproduction without permission is prohibited. Moxa Device Manager 2.0 User Guide The software described in this manual

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

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

Microsoft Migrating to Word 2010 from Word 2003

Microsoft Migrating to Word 2010 from Word 2003 In This Guide Microsoft Word 2010 looks very different, so we created this guide to help you minimize the learning curve. Read on to learn key parts of the new interface, discover free Word 2010 training,

More information

Windows NT Backup Software

Windows NT Backup Software TechNet Home > Products & Technologies > Windows NT Server > Maintain Windows NT Backup Software Topics on this Page TBU Advantages and Disadvantages Backup and Restore User Accounts Starting the TBU GUI

More information

Advanced Event Viewer Manual

Advanced Event Viewer Manual Advanced Event Viewer Manual Document version: 2.2944.01 Download Advanced Event Viewer at: http://www.advancedeventviewer.com Page 1 Introduction Advanced Event Viewer is an award winning application

More information

How To Install And Configure Windows Server 2003 On A Student Computer

How To Install And Configure Windows Server 2003 On A Student Computer Course: WIN310 Student Lab Setup Guide Microsoft Windows Server 2003 Network Infrastructure (70-291) ISBN: 0-470-06887-6 STUDENT COMPUTER SETUP Hardware Requirements All hardware must be on the Microsoft

More information

Scheduling in SAS 9.3

Scheduling in SAS 9.3 Scheduling in SAS 9.3 SAS Documentation The correct bibliographic citation for this manual is as follows: SAS Institute Inc 2011. Scheduling in SAS 9.3. Cary, NC: SAS Institute Inc. Scheduling in SAS 9.3

More information

Overview of ServerView Windows Agent This chapter explains overview of ServerView Windows Agent, and system requirements.

Overview of ServerView Windows Agent This chapter explains overview of ServerView Windows Agent, and system requirements. ServerView User s Guide (For Windows Agent) Areas Covered - Before Reading This Manual This section explains the notes for your safety and conventions used in this manual. Chapter 1 Overview of ServerView

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

Windows Server 2008 Versions Hard Drives & File Systems

Windows Server 2008 Versions Hard Drives & File Systems Windows Server 2008 Versions Windows 3.1, 95, 98, ME, NT, XP, Vista, 7, 8, 2000, 2003, 2008, 2012 All are a GUI environment (icons, mouse). Common items in Windows : Start button, My Computer, Network

More information

Handle Tool. User Manual

Handle Tool. User Manual User Manual Corporation for National Research Initiatives Version 2 November 2015 Table of Contents 1. Start the Handle Tool... 3 2. Default Window... 3 3. Console... 5 4. Authentication... 6 5. Lookup...

More information

WhatsUp Event Alarm v10.x Listener Console User Guide

WhatsUp Event Alarm v10.x Listener Console User Guide WhatsUp Event Alarm v10.x Listener Console User Guide Contents WhatsUp Event Alarm Listener Console Overview Firewall Considerations... 6 Using the WhatsUp Event Alarm Listener Console... 7 Event Alarm

More information

Packet Tracer 3 Lab VLSM 2 Solution

Packet Tracer 3 Lab VLSM 2 Solution Packet Tracer 3 Lab VLSM 2 Solution Objective Create a simulated network topology using Packet Tracer Design an IP addressing scheme using a Class B subnetwork address and VLSM Apply IP addresses to the

More information

Reboot the ExtraHop System and Test Hardware with the Rescue USB Flash Drive

Reboot the ExtraHop System and Test Hardware with the Rescue USB Flash Drive Reboot the ExtraHop System and Test Hardware with the Rescue USB Flash Drive This guide explains how to create and use a Rescue USB flash drive to reinstall and recover the ExtraHop system. When booting

More information

USER MANUAL GUIMGR Graphical User Interface Manager for FRM301/FRM401 Media Racks

USER MANUAL GUIMGR Graphical User Interface Manager for FRM301/FRM401 Media Racks USER MANUAL GUIMGR Graphical User Interface Manager for FRM301/FRM401 Media Racks CTC Union Technologies Co., Ltd. Far Eastern Vienna Technology Center (Neihu Technology Park) 8F, No. 60 Zhouzi St. Neihu,

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

HTML Code Generator V 1.0 For Simatic IT Modules CP 443-1 IT, 343-1 IT, 243-1 IT

HTML Code Generator V 1.0 For Simatic IT Modules CP 443-1 IT, 343-1 IT, 243-1 IT HTML Code Generator V 1.0 For Simatic IT Modules CP 443-1 IT, 343-1 IT, 243-1 IT Manual This manual and program are freeware. Every user can use, copy or forward this program and documentation FREE OF

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

VMware Horizon FLEX User Guide

VMware Horizon FLEX User Guide Horizon FLEX 1.5 This document supports the version of each product listed and supports all subsequent versions until the document is replaced by a new edition. To check for more recent editions of this

More information