قسم ھندسة السیطرة و النظم مادة البرمجة/ المحاظرة الاولى المرحلة الاولى مدرسة المادة صبا طارق سالم 2010/2011

Size: px
Start display at page:

Download "قسم ھندسة السیطرة و النظم مادة البرمجة/ المحاظرة الاولى المرحلة الاولى مدرسة المادة صبا طارق سالم 2010/2011"

Transcription

1 قسم ھندسة السیطرة و النظم مادة البرمجة/ المحاظرة الاولى المرحلة الاولى مدرسة المادة صبا طارق سالم 2010/2011 1

2 1.Introduction to MS-DOS : MS-DOS (Microsoft Disk Operating System) was the Microsoft-marketed version of the first widely-installed operating system in personal computers. It was essentially the same operating system that (Bill Gates's) young company developed for IBM as Personal Computer - Disk Operating System in Most users of either DOS system simply referred to their system as Disk Operating System. Like PC-DOS, MS-DOS was (and still is) a non-graphical line-oriented commanddriven operating system, with a relatively simple interface but not overly "friendly" user interface. Its prompt to enter a command looks like this: C:\> MS-DOS does not care about anything called an icon, wallpaper or screen saver. Rather than being considered as a Graphical User Interface (GUI) MS-DOS is what is known as a command-line interface. You type commands on what is called the command line. MS-DOS is a single-user, single-tasking computer operating system. In spite of its very small size and relative simplicity, it is one of the most successful operating systems that has been developed to date. In DOS, a file name consists of eight character followed by a 3 character file extension. The size of a file is restricted to a 4 byte file descriptor, which limits a file s maximum size to approximately 4 billion characters. The first release of DOS could not read or write to disk drives so users could only read and write to a floppy disc. DOS was not a state of the art operating system, even for its time. Its success can be attributed only to its relative cost to other operating systems at the time it was released. However, DOS was and still is a widely-used operating system. Understanding how it came to be and how it works can lead to greater insight into the current state of computing. 2

3 2.Field of Application Control & Systems Engineering Department - booting system for storage media. - File management - For single user systems only - Network client (NetBEUI, IPX/SPX, TCP/IP) - batch processing 3.Structure information - 16-bit operating system, (formerly 8-bit) - Single tasking - command interpreter for internal and external commands - external driver software imbedding for periphery devices possible 4.System environment - minimum: 512 Kbytes RAM, 5 Mbyte hard disk storage (depends on version for full installation) - FAT file system. - executable with every x86 compatible CPU - low RAM and fixed storage disk needs 5.The Command Prompt The command prompt - this is where you will see any output produced. This screen, among being called a command prompt, is often referred to as simply a DOS prompt, command line or a MS-DOS prompt. All versions of Microsoft Windows have had an MS-DOS like commandline interface (CLI). How to get to a MS-DOS prompt / Windows command line Windows NT, 2000, XP, Vista, and 7 users 1. Click Start. 2. Click Run. 3. Type cmd and press enter. 3

4 Otherwise, if you are using an older version of Windows, type command into the Run box and click "OK". You could also type command.exe After you click "OK", an MS-DOS command prompt window will appear. Depending upon which version of Windows you are using, the MS-DOS command window will look similar to this image: 4

5 The standard window displays white text on a black background. This color combination may make text difficult to read. To make the window display black text on a white background, type the command: color f0 (that's the letter f followed by the digit zero 0). To go back to the standard of white text on a black background, type: color This is called the command prompt or DOS prompt. The flashing underscore next to the command prompt is called the cursor. The cursor shows where the command you type will appear. 6.MS-DOS Commands 1- Viewing the Contents of a Directory (dir) To view the contents of a directory Type the following at the command prompt: C:\> dir A list similar to the following appears: 5

6 2-Make Directory (md) Allows you to create your own directories in MS-DOS. C:\>md test The above example creates the "test" directory in the directory you are currently in. md c:\test Create the "test" directory in the c:\ directory. 3- Change Directory (cd) The cd command is an internal command used to switch directories in MS-DOS cd\ Goes to the highest level, the root of the drive. cd.. Goes back one directory cd Typing cd alone will print the working directory. 6

7 4- Remove Directory ( rd) Removes empty directories in MS-DOS. To delete directories with files or directories within them the user must use the deltree command. 5- IP Configuration ( ipconfig ) Useful for troubleshooting your internet connection. Displays the current IP address of your computer and the DNS server address. If you call your ISP (Internet Service Provider) for reporting a bad internet connection, he will probably ask you to run ipconfig. To get your computers local network IP address, subnet mask, and default gateway typing ipconfig alone will display this information as shown below. Keep in mind this is only your local network information. 6- File Attributes (attrib) attrib allows a user to change the properties of a specified file. Using attrib, the user has the capability of changing the file to have any of the below attributes. attrib +r attrib +h attrib -h 7- edit Add the read-only attribute to a file so it cannot be modified until the read only attribute is taken off. Add the hidden attribute to the file causing it to be not be seen by the average user. This command will do the opposite of the above command. Instead of hiding the file it will unhide the file if hidden. Edit allows a user to view, create, and/or modify their computer files Edit is only able to open a file with a maximum of 65,280 lines. If you are running a MS-DOS version 4.x or lower or you are unable to find edit on your hard disk drive. 7

8 8- type Allows the user to see the contents of a file TYPE [drive:][path]filename 9- copy Allows the user to copy one or more files to an alternate location. copy *.* a: Copy all files in the current directory to the floppy disk drive. copy myfile1.txt+myfile2.txt 10- cls Copy the contents in myfile2.txt and combines it with the contents in myfile1.txt. Cls is a command that allows a user to clear the complete contents of the screen and leave only a prompt. 11- date The date command can be used to look at the current date of the computer as well as change the date to an alternate date. Date Display the current date and prompt for a new one. If no date is entered, the current date will be kept. 12- Rename Used to rename files and directories from the original name to a new name. RENAME [drive:][path][directoryname1 filename1] [directoryname2 filename2] REN [drive:][path][directoryname1 filename1] [directoryname2 filename2] Note that you cannot specify a new drive or path for your destination. 8

9 12- Delete (Del) Del is a command used to delete files from the computer. del test.tmp = Deletes the test.tmp in the directory that you currently are in, if the file exists. del c:\windows\test.tmp = Delete the c:\windows\test.tmp in the windows directory if it exists. del c:\windows\temp\*.* = (* is for wild character(s)) *.* indicates that you would like to delete all files in the c:\windows\temp directory. del c:\windows\temp\?est.tmp = (? is a single wild character for one letter) This command would delete any file ending with est.tmp such as pest.tmp or zest.tmp Format Format is used to erase all of the information off of a computer diskette or fixed drive. When using the format command, remember all information on the drive you wish to format will be completely erased. format a: Would erase all the contents off a disk. Commonly used on a diskette that has not been formatted or on a diskette you wish to erase. format a: /q Quickly erases all the contents of a floppy diskette. Commonly used to quickly erase all information on the diskette. format c: This would erase all the contents of your C: hard disk drive. In other words, unless you wish to erase all your computer's information, this command should not be done unless you're planning to start over. 9

10 10

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

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

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

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

Point to Point Broadband Internet Service Business

Point to Point Broadband Internet Service Business Point to Point Broadband Internet Service Business [Type the company name] USER GUIDE VERSION 1.012010 [Type the document subtitle] Table of Contents Welcome to Point to Point Broadband!... 2 Disclaimer.

More information

Installing Windows 95 Drivers and Utilities for the Cisco Aironet 340/350 Series Client Adapters

Installing Windows 95 Drivers and Utilities for the Cisco Aironet 340/350 Series Client Adapters Installing Windows 95 Drivers and Utilities for the Cisco Aironet 340/350 Series Client Adapters Document ID: 12134 You need a valid Cisco.com account in order to download Cisco Aironet drivers, firmware,

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

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

A+ Guide to Managing and Maintaining Your PC, 7e. Chapter 2 Introducing Operating Systems

A+ Guide to Managing and Maintaining Your PC, 7e. Chapter 2 Introducing Operating Systems A+ Guide to Managing and Maintaining Your PC, 7e Chapter 2 Introducing Operating Systems Objectives Learn about the various operating systems and the differences between them Learn about the components

More information

new Business Online Technical Troubleshooting Guide

new Business Online Technical Troubleshooting Guide new Business Online Technical Troubleshooting Guide TABLE OF CONTENTS How to install Java 1.6 Page 3 How to install Java 1.6 without ActiveX control Page 6 How to uninstall Java Runtime Environment Page

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

How to configure DVR and computer for running Remote Viewer via IP network

How to configure DVR and computer for running Remote Viewer via IP network How to configure DVR and computer for running Remote Viewer via IP network Follow these steps to configure a network DVR and a computer with Remote Viewer software to see live pictures via IP network.

More information

A+ Guide to Software: Managing, Maintaining, and Troubleshooting, 5e. Chapter 3 Installing Windows

A+ Guide to Software: Managing, Maintaining, and Troubleshooting, 5e. Chapter 3 Installing Windows : Managing, Maintaining, and Troubleshooting, 5e Chapter 3 Installing Windows Objectives How to plan a Windows installation How to install Windows Vista How to install Windows XP How to install Windows

More information

Omni 56K USB Lite Quick Start Guide

Omni 56K USB Lite Quick Start Guide Omni 56K USB Lite Quick Start Guide ZyXEL TOTAL INTERNET ACCESS SOLUTION 1. Hardware Installation Connect your modem to your analog phone or fax. Use the phone cord included to connect to the phone jack

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

StrikeRisk v6.0 IEC/EN 62305-2 Risk Management Software Getting Started

StrikeRisk v6.0 IEC/EN 62305-2 Risk Management Software Getting Started StrikeRisk v6.0 IEC/EN 62305-2 Risk Management Software Getting Started Contents StrikeRisk v6.0 Introduction 1/1 1 Installing StrikeRisk System requirements Installing StrikeRisk Installation troubleshooting

More information

EA6-EducationAdministrationInstallationGuide-110503

EA6-EducationAdministrationInstallationGuide-110503 110503 2003 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, recording, storage

More information

Chapter 5: Fundamental Operating Systems

Chapter 5: Fundamental Operating Systems Chapter 5: Fundamental Operating Systems IT Essentials: PC Hardware and Software v4.1 Chapter5 2007-2010 Cisco Systems, Inc. All rights reserved. Cisco Public 1 Chapter 5 Objectives 5.1 Explain the purpose

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

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

Microsoft Windows Overview Desktop Parts

Microsoft Windows Overview Desktop Parts Microsoft Windows Overview Desktop Parts Icon Shortcut Icon Window Title Bar Menu Bar Program name Scroll Bar File Wallpaper Folder Start Button Quick Launch Task Bar or Start Bar Time/Date function 1

More information

Installing the Microsoft Network Driver Interface

Installing the Microsoft Network Driver Interface Installing the Microsoft Network Driver Interface Overview This guide explains how to install the PictureTel Live200 Microsoft Network Driver Interface (NDIS) software you have downloaded from PictureTel's

More information

Chapter 15: Advanced Networks

Chapter 15: Advanced Networks Chapter 15: Advanced Networks IT Essentials: PC Hardware and Software v4.0 1 Determine a Network Topology A site survey is a physical inspection of the building that will help determine a basic logical

More information

Course: WIN310. Student Lab Setup Guide. Summer 2010. Microsoft Windows Server 2003 Network Infrastructure (70-291)

Course: WIN310. Student Lab Setup Guide. Summer 2010. Microsoft Windows Server 2003 Network Infrastructure (70-291) Course: WIN310 Student Lab Setup Guide Summer 2010 Microsoft Windows Server 2003 Network Infrastructure (70-291) ISBN: 0-470-06887-6 Published by Wiley & Sons 1 STUDENT COMPUTER SETUP Hardware Requirements

More information

Installing Windows XP Professional

Installing Windows XP Professional CHAPTER 3 Installing Windows XP Professional After completing this chapter, you will be able to: Plan for an installation of Windows XP Professional. Use a CD to perform an attended installation of Windows

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

Operating System Today s Operating Systems File Basics File Management Application Software

Operating System Today s Operating Systems File Basics File Management Application Software Lecture Content Operating System Today s Operating Systems File Basics File Management Application Software Operating Systems and File Management 2 Operating Systems and File Management 3 Operating System

More information

e-config Data Migration Guidelines Version 1.1 Author: e-config Team Owner: e-config Team

e-config Data Migration Guidelines Version 1.1 Author: e-config Team Owner: e-config Team Data Migration was a one-time optional activity to migrate the underlying portfolio database in e- config and was only needed during the e-config Upgrade that was rolled out on January 21, 2013. This document

More information

USB-PRINTER WIRELESS LAN PRINTSERVER (DN-13014-2) Quick Installation Guide

USB-PRINTER WIRELESS LAN PRINTSERVER (DN-13014-2) Quick Installation Guide USB-PRINTER WIRELESS LAN PRINTSERVER (DN-13014-2) Quick Installation Guide 1.1 Product Introduction Thank you for purchasing and using our print server. This print server allows your printer to become

More information

Preparing the Computers for TCP/IP Networking

Preparing the Computers for TCP/IP Networking Configuration Preparing the Computers for TCP/IP Networking Configuring Windows 98, and ME for TCP/IP Networking Verifying TCP/IP Properties Configuring Windows 2000 or XP for IP Networking Install or

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

c. Securely insert the Ethernet cable from your cable or DSL modem into the Internet port (B) on the WGT634U. Broadband modem

c. Securely insert the Ethernet cable from your cable or DSL modem into the Internet port (B) on the WGT634U. Broadband modem Start Here Follow these instructions to set up your router. Verify That Basic Requirements Are Met Assure that the following requirements are met: You have your broadband Internet service settings handy.

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

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

Section 5: Connecting the Laser to Your Computer

Section 5: Connecting the Laser to Your Computer Section 5: Connecting the Laser to Your Computer In This Section Connecting the Laser to your Computer USB Port Ethernet Port Connecting the Laser to Your Computer All Epilog systems are designed to be

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

Lab 8.4.3a Managing Cisco IOS Images with TFTP

Lab 8.4.3a Managing Cisco IOS Images with TFTP Lab 8.4.3a Managing Cisco IOS Images with TFTP Host Device Name Interface IP Address Subnet Mask R1 R1 Fast Ethernet 0/0 172.17.0.1 255.255.0.0 Objectives Analyze the Cisco IOS image and router flash memory.

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

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

Adding a printer to a network using TCP/IP

Adding a printer to a network using TCP/IP Adding a printer to a network using TCP/IP To add a printer to a network using TCP/IP, you need the following elements: 1) A printer with an Ethernet card 2) An unused IP address 3) A Windows 2000 or XP

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

Integration of DTV Recorder Generator DVRG into a TCP/IP Network

Integration of DTV Recorder Generator DVRG into a TCP/IP Network Product: DVRG Integration of DTV Recorder Generator DVRG into a TCP/IP Network The DTV recorder generator DVRG is a useful tool for recording and replaying MPEG2 transport streams in addition to uncompressed

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

How to Install and use Windows XP Mode and Windows Virtual PC in Windows 7 for older 32 bit only Applications

How to Install and use Windows XP Mode and Windows Virtual PC in Windows 7 for older 32 bit only Applications How to Install and use Windows XP Mode and Windows Virtual PC in Windows 7 for older 32 bit only Applications Important Applies to Windows 7 Professional, Ultimate, Enterprise As of April 8, 2014, technical

More information

Windows XP Managing Your Files

Windows XP Managing Your Files Windows XP Managing Your Files Objective 1: Understand your computer s filing system Your computer's filing system has three basic divisions: files, folders, and drives. 1. File- everything saved on your

More information

ScanShell.Net Install Guide

ScanShell.Net Install Guide ScanShell.Net Install Guide Please install the software first - DO NOT PLUG IN THE SCANNER The scanner has been carefully packaged to avoid damage during transportation. Before operating the scanner, please

More information

Lab 5 Managing Access to Shared Folders

Lab 5 Managing Access to Shared Folders Islamic University of Gaza Computer Network Lab Faculty of engineering ECOM 4121 Computer Department. Prepared by : Eng. Eman R. Al-Kurdi Managing Access to Shared Folders Objective: Manage access to shared

More information

NETFORT LANGUARDIAN INSTALLING LANGUARDIAN ON MICROSOFT HYPER V

NETFORT LANGUARDIAN INSTALLING LANGUARDIAN ON MICROSOFT HYPER V NETFORT LANGUARDIAN INSTALLING LANGUARDIAN ON MICROSOFT HYPER V Instructions apply to installs on Windows Server 2012 R2 Before you begin When deployed in a Hyper V environment, LANGuardian will capture

More information

GETTING STARTED. Please turn to the correct section for your operating system

GETTING STARTED. Please turn to the correct section for your operating system GETTING STARTED PCI/PXI-8212 for Windows Please turn to the correct section for your operating system No CD-ROM drive? Please see back cover for alternative installation options. Windows 95 Windows Me/98

More information

Upon completion of this chapter, you will able to answer the following questions:

Upon completion of this chapter, you will able to answer the following questions: CHAPTER 2 Operating Systems Objectives Upon completion of this chapter, you will able to answer the following questions: What is the purpose of an OS? What role do the shell and kernel play? What is the

More information

Compulite File Server

Compulite File Server Compulite File Server General Information Compulite File Server (CFS) is an application that runs on Microsoft Windows based PCs. This application enables Compulite lighting consoles to access the PC's

More information

How to Restore a Windows System to Bare Metal

How to Restore a Windows System to Bare Metal How to Restore a Windows System to Bare Metal This article applies to Barracuda Backup Server firmware version 5.4 and higher. Bare metal recovery allows you to restore a complete Microsoft Windows system,

More information

FILE TRANSFER PROTOCOL (FTP) SITE

FILE TRANSFER PROTOCOL (FTP) SITE FILE TRANSFER PROTOCOL (FTP) SITE Section 1 - SPIN System Overview As part of the digital plan submission process that Registries is currently implementing a File Transfer Protocol (FTP) site has been

More information

August 13, 2014. Install/Uninstall/Share Xerox Print Drivers Best Practices for Windows Server 2012 R2 Customer Tip

August 13, 2014. Install/Uninstall/Share Xerox Print Drivers Best Practices for Windows Server 2012 R2 Customer Tip August 13, 2014 Install/Uninstall/Share Xerox Print Drivers Best Practices for Windows Server 2012 R2 Customer Tip 2014 Xerox Corporation. All rights reserved. Xerox, Xerox and Design, ColorQube, and WorkCentre

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

Option nv, Gaston Geenslaan 14, B-3001 Leuven Tel +32 16 317 411 Fax +32 16 207 164 http://www.option.com Page 1 of 14

Option nv, Gaston Geenslaan 14, B-3001 Leuven Tel +32 16 317 411 Fax +32 16 207 164 http://www.option.com Page 1 of 14 Page 1 of 14 ! " #!"#$ % &&' Page 2 of 14 1 INTRODUCTION One of the highly desirable features of the GlobeSurfer III device is the ability to network together Printers and External Hard Disk drives (aka

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

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

Technical Note #31. GE PMCS App Note 31 Page 1 of 5. RAS - Host and View Node. RAS - Host Configuration with No Network Adapter Installed:

Technical Note #31. GE PMCS App Note 31 Page 1 of 5. RAS - Host and View Node. RAS - Host Configuration with No Network Adapter Installed: GE PMCS App Note 31 Page 1 of 5 Technical Note #31 RAS - Host and View Node Subject: Configuring a Host and a View Node to communicate via modems. Applies To: PMCS 5.0 / Windows NT 3.51. For later versions

More information

ADC Windows 7 Professional

ADC Windows 7 Professional ADC Windows 7 Professional 8-April-2014 Revision: Release Publication Information 2014 Imagine Communications Corp. Proprietary and Confidential. Imagine Communications considers this document and its

More information

While You Were Sleeping - Scheduling SAS Jobs to Run Automatically Faron Kincheloe, Baylor University, Waco, TX

While You Were Sleeping - Scheduling SAS Jobs to Run Automatically Faron Kincheloe, Baylor University, Waco, TX CC04 While You Were Sleeping - Scheduling SAS Jobs to Run Automatically Faron Kincheloe, Baylor University, Waco, TX ABSTRACT If you are tired of running the same jobs over and over again, this paper is

More information

Operating System Installation Guidelines

Operating System Installation Guidelines Operating System Installation Guidelines The following document guides you step-by-step through the process of installing the operating systems so they are properly configured for boot camp. The document

More information

MFC6490CW Windows Network Connection Repair Instructions

MFC6490CW 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

a) Network connection problems (check these for existing installations)

a) Network connection problems (check these for existing installations) How do I resolve issues with a Client not connecting to the Best Practice server instance? This FAQ is intended to answer common questions about resolving issues with a Best Practice client not connecting

More information

1-Port Wireless USB 2.0 Print Server Model # APSUSB201W. Quick Installation Guide. Ver. 2A

1-Port Wireless USB 2.0 Print Server Model # APSUSB201W. Quick Installation Guide. Ver. 2A 1-Port Wireless USB 2.0 Print Server Model # APSUSB201W Quick Installation Guide Ver. 2A Section 1 Step 1Connect one end of the Ethernet cable to the RJ-45 port of the Print Server and attach the other

More information

Windows Vista Installation Guide

Windows Vista Installation Guide Laser Printer Series Windows Vista Installation Guide Before you can use the printer, you must set up the hardware and install the driver. Please read the Quick Setup Guide and this Windows Vista Installation

More information

GUARD1 PLUS SE Administrator's Manual

GUARD1 PLUS SE Administrator's Manual GUARD1 PLUS SE Administrator's Manual Version 4.4 30700 Bainbridge Road Solon, Ohio 44139 Phone 216-595-0890 Fax 216-595-0991 info@guard1.com www.guard1.com i 2010 TimeKeeping Systems, Inc. GUARD1 PLUS

More information

Windows 2000, Windows XP, and Windows Server 2003

Windows 2000, Windows XP, and Windows Server 2003 Windows 2000, Windows XP, and Windows Server 2003 This topic includes: "Preliminary Steps" on page 3-14 "Quick CD-ROM Install Steps" on page 3-14 "Other Methods of Installation" on page 3-15 "Windows 2000,

More information

Part 3: Accessing Local drives and printers from the Terminal Server

Part 3: Accessing Local drives and printers from the Terminal Server In this guide: Part 1: What are Terminal Services / Remote Desktop? Part 2: Connecting to the HUSPSS Terminal Servers Part 3: Accessing Local drives and printers from the Terminal Server Part 4: Accessing

More information

USERS MANUAL PRODUCT OVERVIEW SYSTEM REQUIREMENTS

USERS MANUAL PRODUCT OVERVIEW SYSTEM REQUIREMENTS Active@ Password Changer v.3.0 Copyright 1998-2008 Active@ Data Recovery Software LSoft Technologies Inc. USERS MANUAL PRODUCT OVERVIEW Active@ Password Changer is a DOS-based solution designed for resetting

More information

Determining Your MAC Address in Windows XP

Determining Your MAC Address in Windows XP Determining Your MAC Address in Windows XP 1. Click Start then choose Run. 2. Type cmd into the Open: field and press the Enter key. 3. Type ipconfig /all at the prompt and press the Enter key. (Note:

More information

USB DATA Link Cable USER MANUAL. (Model: DA-70011-1) GO! Suite Quick Start Guide

USB DATA Link Cable USER MANUAL. (Model: DA-70011-1) GO! Suite Quick Start Guide USB DATA Link Cable USER MANUAL (Model: DA-70011-1) GO! Suite Quick Start Guide - GO! Suite Introduction - GO! Bridge Introduction - Remote Share Introduction - Folder Sync - Outlook Sync GO! Bridge for

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

How to set FTP Server (IIS)

How to set FTP Server (IIS) How to set FTP Server (IIS) Summary You can use FTP Server, in case of using the video play/record functions of GP-Pro EX V1.10. In this case, please prepare a PC into which FTP Server is installed separately.

More information

AIM SOFTWARE AND USB DRIVER INSTALLATION PROCEDURE

AIM SOFTWARE AND USB DRIVER INSTALLATION PROCEDURE AIM SOFTWARE AND USB DRIVER INSTALLATION PROCEDURE CONTENTS AIM software and USB Driver installation Chapter 1 Installing AIM software and AIM USB driver... 2 Chapter 2 Installation under Microsoft Windows

More information

Dokmee Enterprise Installation

Dokmee Enterprise Installation Dokmee Enterprise Installation 1 P a g e 1. Install Microsoft SQL on a server or local computer that everyone can access. Make sure that you have.net Framework 4.0 installed. If you go to the link below,

More information

4.1 Introduction 4.2 Explain the purpose of an operating system 4.2.1 Describe characteristics of modern operating systems Control Hardware Access

4.1 Introduction 4.2 Explain the purpose of an operating system 4.2.1 Describe characteristics of modern operating systems Control Hardware Access 4.1 Introduction The operating system (OS) controls almost all functions on a computer. In this lecture, you will learn about the components, functions, and terminology related to the Windows 2000, Windows

More information

How to Remotely Access Hikvision Devices User Manual

How to Remotely Access Hikvision Devices User Manual HIKVISION EUROPE B.V. How to Remotely Access Hikvision Devices User Manual (Use to remotely access Hikvision DVR s, NVR s and IP Cameras) Name: Remote Access Publisher: HIKVISION EUROPE B.V. Type: Information

More information

How to install the RTL8029 PCI Adapter Boot Rom for Windows95

How to install the RTL8029 PCI Adapter Boot Rom for Windows95 How to install the RTL8029 PCI Adapter Boot Rom for Windows95 0.0 Preview 1.0 Installing the Remoteboot Service on the Server 1.1 Installing Windows 95 for Windows 95 Clients Add DLC and NetBEUI Protocol,

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

Redirect Printer Port to LPT3 for Printing to Local Printer in Remote Desktop Session

Redirect Printer Port to LPT3 for Printing to Local Printer in Remote Desktop Session Redirect Printer Port to LPT3 for Printing to Local Printer in Remote Desktop Session Remote Desktop client CAN redirect printing to the local printer while controlling a host. http://support.microsoft.com/kb/312135

More information

3.5 EXTERNAL NETWORK HDD. User s Manual

3.5 EXTERNAL NETWORK HDD. User s Manual 3.5 EXTERNAL NETWORK HDD User s Manual Table of Content Before You Use Key Features H/W Installation Illustration of Product LED Definition NETWORK HDD Assembly Setup the Network HDD Home Disk Utility

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

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

TOSHIBA GA-1310. Printing from Windows

TOSHIBA GA-1310. Printing from Windows TOSHIBA GA-1310 Printing from Windows 2009 Electronics for Imaging, Inc. The information in this publication is covered under Legal Notices for this product. 45081979 04 February 2009 CONTENTS 3 CONTENTS

More information

FedEx Ship Manager Software. Installation Guide

FedEx Ship Manager Software. Installation Guide FedEx Ship Manager Software Installation Guide Before you start Check here to see that your PC has what it needs to run FedEx Ship Manager Software: Minimum System and Hardware Requirements Intel Pentium

More information

Acronis Backup & Recovery 11.5 Quick Start Guide

Acronis Backup & Recovery 11.5 Quick Start Guide Acronis Backup & Recovery 11.5 Quick Start Guide Applies to the following editions: Advanced Server for Windows Virtual Edition Advanced Server SBS Edition Advanced Workstation Server for Linux Server

More information

Windows 2000/XP Network

Windows 2000/XP Network This section provides installation and troubleshooting steps for Windows 2000/XP: Preliminary steps see page 23. Quick CD-ROM install steps see page 23. Other methods of installation see page 24. Quick

More information

Adaptive Log Exporter Users Guide

Adaptive Log Exporter Users Guide IBM Security QRadar Version 7.1.0 (MR1) Note: Before using this information and the product that it supports, read the information in Notices and Trademarks on page page 119. Copyright IBM Corp. 2012,

More information

Network Scanner Tool R3.1. User s Guide Version 3.0.04

Network Scanner Tool R3.1. User s Guide Version 3.0.04 Network Scanner Tool R3.1 User s Guide Version 3.0.04 Copyright 2000-2004 by Sharp Corporation. All rights reserved. Reproduction, adaptation or translation without prior written permission is prohibited,

More information

User Guide for Windows 10

User Guide for Windows 10 User Guide for Windows 10 System requirements E10684 First Edition July 2015 To facilitate a smoother transition from your previous operating system, read the system requirements below before upgrading

More information

Operating Instructions

Operating Instructions Operating Instructions (For Setting Up) Digital Imaging Systems Installation Overview Model No. DP-8060 / 8045 / 8035 Table of Contents Setting Your Machine Installation Overview General Installation Overview...

More information

Microsoft BackOffice Small Business Server 4.5 Installation Instructions for Compaq Prosignia and ProLiant Servers

Microsoft BackOffice Small Business Server 4.5 Installation Instructions for Compaq Prosignia and ProLiant Servers Integration Note October 2000 Prepared by OS Integration Engineering Compaq Computer Corporation Contents Introduction...3 Requirements...3 Minimum Requirements...4 Required Information...5 Additional

More information

64-Bit Compatibility with Micromeritics Applications

64-Bit Compatibility with Micromeritics Applications Tech Tip 7 64-Bit Compatibility with Micromeritics Applications Micromeritics products are designed to operate in most Microsoft Windows environments. However, more current versions of Microsoft Windows,

More information

Windows Vista /Windows 7 Installation Guide

Windows Vista /Windows 7 Installation Guide Windows Vista / 7 Installation Guide Before you can use the machine, you must set up the hardware and install the driver. Please read the Quick Setup Guide and this Windows Vista / 7 Installation Guide

More information

How to simulate network devices using the Verax SNMP Simulator (Linux/Windows)

How to simulate network devices using the Verax SNMP Simulator (Linux/Windows) How to simulate network devices using the Verax SNMP Simulator (Linux/Windows) Table of contents Abstract... 3 1. Verax SNMP Simulator installation... 4 2. Extracting SNMP record files from a physical

More information

Ultra Thin Client TC-401 TC-402. Users s Guide

Ultra Thin Client TC-401 TC-402. Users s Guide Ultra Thin Client TC-401 TC-402 Users s Guide CONTENT 1. OVERVIEW... 3 1.1 HARDWARE SPECIFICATION... 3 1.2 SOFTWARE OVERVIEW... 4 1.3 HARDWARE OVERVIEW...5 1.4 NETWORK CONNECTION... 7 2. INSTALLING THE

More information

DESKTOP. Internal Drive Installation Guide

DESKTOP. Internal Drive Installation Guide DESKTOP Internal Drive Installation Guide Seagate Desktop Installation Guide 2013 Seagate Technology LLC. All rights reserved. Seagate, Seagate Technology, the Wave logo, and FreeAgent are trademarks or

More information

Lab - Dual Boot - Vista & Windows XP

Lab - Dual Boot - Vista & Windows XP Lab - Dual Boot - Vista & Windows XP Brought to you by RMRoberts.com After completing this lab activity, you will be able to: Install and configure a dual boot Windows XP and Vista operating systems. Explain

More information