SlideShare a Scribd company logo
Galaxy	Computer	Education(ISO	9001:2015	CERTIFIED)		
M.S. DOS
DOS: Disk operating System
Disk Operating System is the first program that must be loaded in the memory of your PC
before you can use it for any application. Different version of DOS, such as 2.0, 3.0, 4.0, 5.0,
6.0, 6.2, 7.0, 8.0 are available. The higher versions have more features and commands.
However, the basic commands and features are available in all versions.
File, File name & Directory
A File is collection of related information. Like the contents of the file folder in a
desk, your computer might contain files related to different topic owned by different people.
Just as each folder in a file cabinet has a label, each file on a disk has to have a name.
This name has two parts a filename and an extension. While naming a file following points
should be kept in mind:
 File name cannot exceed 8 characters.
 Dot or period is optional, can be used for better management of files.
 Extension, which is optional, cannot be exceeding 3 characters.
 Some name and filename extensions have special meaning to DOS and to your
computer usage of such names should be avoided.
A directory on a disk is like a table of contents in a book. It contains the name of the file,
size of file. The data and time are also stamped, when files are created or modified.
Galaxy	Computer	Education(ISO	9001:2015	CERTIFIED)		
Internal & external DOS Commands
There are two types of DOS commands – internal & external. The internal commands
are those commands that are automatically loaded in the memory of your PC when DOS
is loaded. These commands can be used without the need of any DOS file or diskette. The
internal commands are simple and are used for common tasks such as copying, renaming
or erasing files; displaying a list of files in a diskette; creating and changing directories;
changing the current date in your PC etc. the external commands are used for relatively
complex jobs, such as copying an entire diskette, formatting a diskette; comparing or
joining files, sorting text etc.
Internal commands External Commands
DATE FORMAT
TIME
VER
DIR
DIR/P
DIR/W
COPY CON
TYPE
EDIT
DEL
CLS
RENAME
MD BATCH FILE
CD WILD CARDS
RD
COPY
ATTRIB
Galaxy	Computer	Education(ISO	9001:2015	CERTIFIED)		
Internal Commands:
1. To Come Out Window C:Windows> CD.. 
2. Date To See or Change the current Date of your System.
Syntax
C:>Date 
The Current Date is Tue 02-03-2009 [American Format]
Enter the New Date (mm-dd-yy) …………..
3. Time To see or to Change the Current time of your system.
Syntax
C:>Time
The Current Time is 3:35:49.34a
Enter the New Time ………….
4. Ver To see the version of your system.
Syntax
C:/>Ver 
Windows 98 [Version 4.10.2222]
5. Dir To see the list of files and folders existing in your disk.
Syntax
C:/>Dir 
Galaxy	Computer	Education(ISO	9001:2015	CERTIFIED)		
6. Dir/p To see the Directory Page Wise.
Syntax
C:/>Dir/p 
7. Dir/w To see the Directory Width Wise.
Syntax
C:/>Dir/w 
8. Copy con This command is used to create a Text file on your disk.
Syntax
C:/>Copy con <File name> 
Example:
C:/>copy con ABC
Type your text
(Hi…! My name is Money Gupta.
My institute name is Galaxy)
Press <ctrl + z> to save the file.
9. Type This command is used to see the contents of any existing file.
Syntax
C:/>Type <file name> 
Example:
C:/>type ABC
10. Edit This command is used to make changes in any text file.
Syntax
C:/>Edit <File name> 
Example:
C:/>Edit ABC
11. Cls This command is used to clear the screen.
Galaxy	Computer	Education(ISO	9001:2015	CERTIFIED)		
Syntax
C:/>Cls 
12. Del This command is used to delete the files from your disk.
Syntax
C:/>Del <file name> 
Example:
C:/>Del ABC
13. Rename Just as there are times when you need to assign a anew name to file in
your office, there are times when you want to rename a file on the
disk. The RENAME command or REN (short name) can change a
file’s name or extension or both. The rename command has two
parameters.
Syntax
C:/>Rename <Old name> <New file name>
Example:
C:/>Rename abc pqr
14. Copy This Command is used to create another copy of any existing file in
same directory.
Syntax
C:/>Copy <Original file name> <copied file name> 
Example:
C:/>copy pqr mno 
This Command is used to create another copy of any existing file in
another directory.
Syntax
C:/>Copy <Original file name> <directory name> 
Example:
C:/>copy abc mohan 
15. MD Make Directory.
Galaxy	Computer	Education(ISO	9001:2015	CERTIFIED)		
MD command is used to create a new directory.
Syntax
C:/>md [Dir Name] 
Example:
C:/>md mno 
16. CD Change Directory & Sub- directory
CD Command is used to Change & open the Directory or Sub-
directory.
Syntax
C:/>CD [Dir Name] 
Example:
C:/>cd mno 
Your mno directory is open.
C:/mno>
To come out for your directory.
C:/mno>cd.. 
17. RD Remove Directory & Sub- directory
RD Command is used to remove the Directory or Sub-directory.
1. Directory should be Empty.
2. Path should be Valid
Syntax
C:/>rd [dir name] 
Example:
C:/>rd mno 
18. Attrib This command is used to hide the file & Protect the file.
1.) +H = Hide the file.
Syntax
Galaxy	Computer	Education(ISO	9001:2015	CERTIFIED)		
C:/>attrib +h <File name> 
Example:
C:/>attrib +h abc 
2.) -H = Unhide the file.
Syntax
C:/>attrib -h <File name> 
Example:
C:/>attrib -h abc 
3.) +R = Read only file
Syntax
C:/>attrib +r <File name> 
Example:
C:/>attrib +r abc 
4.) -R = Remove read only
Syntax
C:/>attrib -r <File name> 
Example:
C:/>attrib -r abc 
External Commands
19. Batch File Group of Dos commands is called batch file. A Batch file should have
Extension .bat .
Galaxy	Computer	Education(ISO	9001:2015	CERTIFIED)		
Syntax
C:/>Copy con <Batch file name.bat> 
……
……
…… Dos Commands
……
……
……
For save the file ctrl+z
Example:
C:/>Copy con abc.bat 
Date
Ver
Time
Dir
Dir/p
Dir/w
Cls
^Z (ctrl+z) 
1 File(s) copied
To run the file only type file name then press enter.
20. Wildcard Wildcard Character are those character which are used for substituting
one character or a set of character. The wildcard characters are used to
restrict the scope of a DOS command to only those files which match
pattern specified. These are of two types ----‘*’ and ‘?’, where ‘*’
substitutes a set of character and ‘?’ substitutes a character at a single
particular position.
Galaxy	Computer	Education(ISO	9001:2015	CERTIFIED)		
(1) .*
Syntax
C:/>dir <filename>.* 
This command has displayed the directory with all the file names
having their primary name as <file name>, irrespective of the
extension.
Example:
C:/>dir abc.* 
(2) *.*
Syntax
C:/>dir L*
The given command has displayed all files stating with ‘L’ regardless
of the extension in the directory, this command can also written as
DIR L*.* The command has picked up all files with extension .DOC
and displayed it. The above command can be written as ‘dir.doc’ to get
the same effect.
21. FORMAT This is an external command of DOS; to execute this command the file
FORMAT.COM is required.
Purpose: This command is used to create a new tracks and sectors on
your system disk. The number of the sectors and tracks depends on the
capacity of the disk.
Syntax:
C :>format <drive name>
Example:
If a user wants to format his drive a then the procedure is:
Galaxy	Computer	Education(ISO	9001:2015	CERTIFIED)		
C :>format a: 
  

More Related Content

What's hot

Course 102: Lecture 7: Simple Utilities
Course 102: Lecture 7: Simple Utilities Course 102: Lecture 7: Simple Utilities
Course 102: Lecture 7: Simple Utilities
Ahmed El-Arabawy
 
PL/SQL Introduction and Concepts
PL/SQL Introduction and Concepts PL/SQL Introduction and Concepts
PL/SQL Introduction and Concepts
Bharat Kalia
 
Course 102: Lecture 14: Users and Permissions
Course 102: Lecture 14: Users and PermissionsCourse 102: Lecture 14: Users and Permissions
Course 102: Lecture 14: Users and Permissions
Ahmed El-Arabawy
 
Course 102: Lecture 6: Seeking Help
Course 102: Lecture 6: Seeking HelpCourse 102: Lecture 6: Seeking Help
Course 102: Lecture 6: Seeking Help
Ahmed El-Arabawy
 
Chapter 11 - File System Implementation
Chapter 11 - File System ImplementationChapter 11 - File System Implementation
Chapter 11 - File System Implementation
Wayne Jones Jnr
 
System calls
System callsSystem calls
System calls
Bernard Senam
 
Vi editor
Vi editorVi editor
Vi editor
Ramakrishna kapa
 
Basic dos-commands
Basic dos-commandsBasic dos-commands
Basic dos-commands
parag dhok
 
Bash shell
Bash shellBash shell
Bash shell
xylas121
 
Course 102: Lecture 4: Using Wild Cards
Course 102: Lecture 4: Using Wild CardsCourse 102: Lecture 4: Using Wild Cards
Course 102: Lecture 4: Using Wild Cards
Ahmed El-Arabawy
 
Mass Storage Structure
Mass Storage StructureMass Storage Structure
Mass Storage Structure
Vimalanathan D
 
DOS Operating System
DOS Operating SystemDOS Operating System
DOS Operating System
Anjan Mahanta
 
Linux booting procedure
Linux booting procedureLinux booting procedure
Linux booting procedure
Dhaval Kaneria
 
Linux file system
Linux file systemLinux file system
Linux file system
Md. Tanvir Hossain
 
Computing Environment
Computing EnvironmentComputing Environment
Computing Environment
kem warren
 
Memory management
Memory managementMemory management
Command prompt presentation
Command prompt presentationCommand prompt presentation
Command prompt presentation
Muhammad Taj
 
Introduction to linux ppt
Introduction to linux pptIntroduction to linux ppt
Introduction to linux ppt
Omi Vichare
 
SQL(DDL & DML)
SQL(DDL & DML)SQL(DDL & DML)
SQL(DDL & DML)
Sharad Dubey
 
Linux introduction
Linux introductionLinux introduction
Linux introduction
Md. Zahid Hossain Shoeb
 

What's hot (20)

Course 102: Lecture 7: Simple Utilities
Course 102: Lecture 7: Simple Utilities Course 102: Lecture 7: Simple Utilities
Course 102: Lecture 7: Simple Utilities
 
PL/SQL Introduction and Concepts
PL/SQL Introduction and Concepts PL/SQL Introduction and Concepts
PL/SQL Introduction and Concepts
 
Course 102: Lecture 14: Users and Permissions
Course 102: Lecture 14: Users and PermissionsCourse 102: Lecture 14: Users and Permissions
Course 102: Lecture 14: Users and Permissions
 
Course 102: Lecture 6: Seeking Help
Course 102: Lecture 6: Seeking HelpCourse 102: Lecture 6: Seeking Help
Course 102: Lecture 6: Seeking Help
 
Chapter 11 - File System Implementation
Chapter 11 - File System ImplementationChapter 11 - File System Implementation
Chapter 11 - File System Implementation
 
System calls
System callsSystem calls
System calls
 
Vi editor
Vi editorVi editor
Vi editor
 
Basic dos-commands
Basic dos-commandsBasic dos-commands
Basic dos-commands
 
Bash shell
Bash shellBash shell
Bash shell
 
Course 102: Lecture 4: Using Wild Cards
Course 102: Lecture 4: Using Wild CardsCourse 102: Lecture 4: Using Wild Cards
Course 102: Lecture 4: Using Wild Cards
 
Mass Storage Structure
Mass Storage StructureMass Storage Structure
Mass Storage Structure
 
DOS Operating System
DOS Operating SystemDOS Operating System
DOS Operating System
 
Linux booting procedure
Linux booting procedureLinux booting procedure
Linux booting procedure
 
Linux file system
Linux file systemLinux file system
Linux file system
 
Computing Environment
Computing EnvironmentComputing Environment
Computing Environment
 
Memory management
Memory managementMemory management
Memory management
 
Command prompt presentation
Command prompt presentationCommand prompt presentation
Command prompt presentation
 
Introduction to linux ppt
Introduction to linux pptIntroduction to linux ppt
Introduction to linux ppt
 
SQL(DDL & DML)
SQL(DDL & DML)SQL(DDL & DML)
SQL(DDL & DML)
 
Linux introduction
Linux introductionLinux introduction
Linux introduction
 

Similar to Ms dos full explanation

PC Software - Computer Application - Office Automation Tools
PC Software  -  Computer Application - Office Automation ToolsPC Software  -  Computer Application - Office Automation Tools
PC Software - Computer Application - Office Automation Tools
zatax
 
DOS commands
DOS commandsDOS commands
DOS commands
preetikapri1
 
Hos
HosHos
Hos
HosHos
Disk Operating System.pptx
Disk Operating System.pptxDisk Operating System.pptx
Disk Operating System.pptx
DrIrfanulHaqAkhoon
 
CMD Command prompts
CMD Command promptsCMD Command prompts
CMD Command prompts
Ahmed Hesham
 
Lec05
Lec05Lec05
Internal commands.29to30
Internal commands.29to30Internal commands.29to30
Internal commands.29to30
myrajendra
 
Internal commands.29to30
Internal commands.29to30Internal commands.29to30
Internal commands.29to30
myrajendra
 
Comp practical
Comp practicalComp practical
Comp practical
Kritika Sharma
 
ch6.ppsx
ch6.ppsxch6.ppsx
ch6.ppsx
ssuser5ab112
 
Introduction to ms dos
Introduction to ms dosIntroduction to ms dos
Introduction to ms dos
Indika Rathninda
 
lab2.pptx.pdf
lab2.pptx.pdflab2.pptx.pdf
lab2.pptx.pdf
ssuser536c36
 
What is DOS (Disk Operating System).pdf
What is DOS (Disk Operating System).pdfWhat is DOS (Disk Operating System).pdf
What is DOS (Disk Operating System).pdf
RohitRoshanBengROHIT
 
Xternal commands.31
Xternal commands.31Xternal commands.31
Xternal commands.31
myrajendra
 
Ms DOS
Ms DOSMs DOS
Ms DOS
Gunjan Singh
 
33269198 all-commands-in-ms-dos(1)
33269198 all-commands-in-ms-dos(1)33269198 all-commands-in-ms-dos(1)
33269198 all-commands-in-ms-dos(1)
A.S.M Shmimul Islam.
 
33269198 all-commands-in-ms-dos
33269198 all-commands-in-ms-dos33269198 all-commands-in-ms-dos
33269198 all-commands-in-ms-dos
A.S.M Shmimul Islam.
 
Msdos crash course
Msdos crash courseMsdos crash course
Msdos crash course
Devinder Prasad
 
Dos 16
Dos 16Dos 16

Similar to Ms dos full explanation (20)

PC Software - Computer Application - Office Automation Tools
PC Software  -  Computer Application - Office Automation ToolsPC Software  -  Computer Application - Office Automation Tools
PC Software - Computer Application - Office Automation Tools
 
DOS commands
DOS commandsDOS commands
DOS commands
 
Hos
HosHos
Hos
 
Hos
HosHos
Hos
 
Disk Operating System.pptx
Disk Operating System.pptxDisk Operating System.pptx
Disk Operating System.pptx
 
CMD Command prompts
CMD Command promptsCMD Command prompts
CMD Command prompts
 
Lec05
Lec05Lec05
Lec05
 
Internal commands.29to30
Internal commands.29to30Internal commands.29to30
Internal commands.29to30
 
Internal commands.29to30
Internal commands.29to30Internal commands.29to30
Internal commands.29to30
 
Comp practical
Comp practicalComp practical
Comp practical
 
ch6.ppsx
ch6.ppsxch6.ppsx
ch6.ppsx
 
Introduction to ms dos
Introduction to ms dosIntroduction to ms dos
Introduction to ms dos
 
lab2.pptx.pdf
lab2.pptx.pdflab2.pptx.pdf
lab2.pptx.pdf
 
What is DOS (Disk Operating System).pdf
What is DOS (Disk Operating System).pdfWhat is DOS (Disk Operating System).pdf
What is DOS (Disk Operating System).pdf
 
Xternal commands.31
Xternal commands.31Xternal commands.31
Xternal commands.31
 
Ms DOS
Ms DOSMs DOS
Ms DOS
 
33269198 all-commands-in-ms-dos(1)
33269198 all-commands-in-ms-dos(1)33269198 all-commands-in-ms-dos(1)
33269198 all-commands-in-ms-dos(1)
 
33269198 all-commands-in-ms-dos
33269198 all-commands-in-ms-dos33269198 all-commands-in-ms-dos
33269198 all-commands-in-ms-dos
 
Msdos crash course
Msdos crash courseMsdos crash course
Msdos crash course
 
Dos 16
Dos 16Dos 16
Dos 16
 

Recently uploaded

Crafting Excellence: A Comprehensive Guide to iOS Mobile App Development Serv...
Crafting Excellence: A Comprehensive Guide to iOS Mobile App Development Serv...Crafting Excellence: A Comprehensive Guide to iOS Mobile App Development Serv...
Crafting Excellence: A Comprehensive Guide to iOS Mobile App Development Serv...
Pitangent Analytics & Technology Solutions Pvt. Ltd
 
Driving Business Innovation: Latest Generative AI Advancements & Success Story
Driving Business Innovation: Latest Generative AI Advancements & Success StoryDriving Business Innovation: Latest Generative AI Advancements & Success Story
Driving Business Innovation: Latest Generative AI Advancements & Success Story
Safe Software
 
Harnessing the Power of NLP and Knowledge Graphs for Opioid Research
Harnessing the Power of NLP and Knowledge Graphs for Opioid ResearchHarnessing the Power of NLP and Knowledge Graphs for Opioid Research
Harnessing the Power of NLP and Knowledge Graphs for Opioid Research
Neo4j
 
“How Axelera AI Uses Digital Compute-in-memory to Deliver Fast and Energy-eff...
“How Axelera AI Uses Digital Compute-in-memory to Deliver Fast and Energy-eff...“How Axelera AI Uses Digital Compute-in-memory to Deliver Fast and Energy-eff...
“How Axelera AI Uses Digital Compute-in-memory to Deliver Fast and Energy-eff...
Edge AI and Vision Alliance
 
Freshworks Rethinks NoSQL for Rapid Scaling & Cost-Efficiency
Freshworks Rethinks NoSQL for Rapid Scaling & Cost-EfficiencyFreshworks Rethinks NoSQL for Rapid Scaling & Cost-Efficiency
Freshworks Rethinks NoSQL for Rapid Scaling & Cost-Efficiency
ScyllaDB
 
9 CEO's who hit $100m ARR Share Their Top Growth Tactics Nathan Latka, Founde...
9 CEO's who hit $100m ARR Share Their Top Growth Tactics Nathan Latka, Founde...9 CEO's who hit $100m ARR Share Their Top Growth Tactics Nathan Latka, Founde...
9 CEO's who hit $100m ARR Share Their Top Growth Tactics Nathan Latka, Founde...
saastr
 
“Temporal Event Neural Networks: A More Efficient Alternative to the Transfor...
“Temporal Event Neural Networks: A More Efficient Alternative to the Transfor...“Temporal Event Neural Networks: A More Efficient Alternative to the Transfor...
“Temporal Event Neural Networks: A More Efficient Alternative to the Transfor...
Edge AI and Vision Alliance
 
What is an RPA CoE? Session 1 – CoE Vision
What is an RPA CoE?  Session 1 – CoE VisionWhat is an RPA CoE?  Session 1 – CoE Vision
What is an RPA CoE? Session 1 – CoE Vision
DianaGray10
 
Introduction of Cybersecurity with OSS at Code Europe 2024
Introduction of Cybersecurity with OSS  at Code Europe 2024Introduction of Cybersecurity with OSS  at Code Europe 2024
Introduction of Cybersecurity with OSS at Code Europe 2024
Hiroshi SHIBATA
 
Programming Foundation Models with DSPy - Meetup Slides
Programming Foundation Models with DSPy - Meetup SlidesProgramming Foundation Models with DSPy - Meetup Slides
Programming Foundation Models with DSPy - Meetup Slides
Zilliz
 
The Microsoft 365 Migration Tutorial For Beginner.pptx
The Microsoft 365 Migration Tutorial For Beginner.pptxThe Microsoft 365 Migration Tutorial For Beginner.pptx
The Microsoft 365 Migration Tutorial For Beginner.pptx
operationspcvita
 
Digital Banking in the Cloud: How Citizens Bank Unlocked Their Mainframe
Digital Banking in the Cloud: How Citizens Bank Unlocked Their MainframeDigital Banking in the Cloud: How Citizens Bank Unlocked Their Mainframe
Digital Banking in the Cloud: How Citizens Bank Unlocked Their Mainframe
Precisely
 
Y-Combinator seed pitch deck template PP
Y-Combinator seed pitch deck template PPY-Combinator seed pitch deck template PP
Y-Combinator seed pitch deck template PP
c5vrf27qcz
 
Essentials of Automations: Exploring Attributes & Automation Parameters
Essentials of Automations: Exploring Attributes & Automation ParametersEssentials of Automations: Exploring Attributes & Automation Parameters
Essentials of Automations: Exploring Attributes & Automation Parameters
Safe Software
 
[OReilly Superstream] Occupy the Space: A grassroots guide to engineering (an...
[OReilly Superstream] Occupy the Space: A grassroots guide to engineering (an...[OReilly Superstream] Occupy the Space: A grassroots guide to engineering (an...
[OReilly Superstream] Occupy the Space: A grassroots guide to engineering (an...
Jason Yip
 
Dandelion Hashtable: beyond billion requests per second on a commodity server
Dandelion Hashtable: beyond billion requests per second on a commodity serverDandelion Hashtable: beyond billion requests per second on a commodity server
Dandelion Hashtable: beyond billion requests per second on a commodity server
Antonios Katsarakis
 
Mutation Testing for Task-Oriented Chatbots
Mutation Testing for Task-Oriented ChatbotsMutation Testing for Task-Oriented Chatbots
Mutation Testing for Task-Oriented Chatbots
Pablo Gómez Abajo
 
Leveraging the Graph for Clinical Trials and Standards
Leveraging the Graph for Clinical Trials and StandardsLeveraging the Graph for Clinical Trials and Standards
Leveraging the Graph for Clinical Trials and Standards
Neo4j
 
Apps Break Data
Apps Break DataApps Break Data
Apps Break Data
Ivo Velitchkov
 

Recently uploaded (20)

Crafting Excellence: A Comprehensive Guide to iOS Mobile App Development Serv...
Crafting Excellence: A Comprehensive Guide to iOS Mobile App Development Serv...Crafting Excellence: A Comprehensive Guide to iOS Mobile App Development Serv...
Crafting Excellence: A Comprehensive Guide to iOS Mobile App Development Serv...
 
Driving Business Innovation: Latest Generative AI Advancements & Success Story
Driving Business Innovation: Latest Generative AI Advancements & Success StoryDriving Business Innovation: Latest Generative AI Advancements & Success Story
Driving Business Innovation: Latest Generative AI Advancements & Success Story
 
Harnessing the Power of NLP and Knowledge Graphs for Opioid Research
Harnessing the Power of NLP and Knowledge Graphs for Opioid ResearchHarnessing the Power of NLP and Knowledge Graphs for Opioid Research
Harnessing the Power of NLP and Knowledge Graphs for Opioid Research
 
“How Axelera AI Uses Digital Compute-in-memory to Deliver Fast and Energy-eff...
“How Axelera AI Uses Digital Compute-in-memory to Deliver Fast and Energy-eff...“How Axelera AI Uses Digital Compute-in-memory to Deliver Fast and Energy-eff...
“How Axelera AI Uses Digital Compute-in-memory to Deliver Fast and Energy-eff...
 
Freshworks Rethinks NoSQL for Rapid Scaling & Cost-Efficiency
Freshworks Rethinks NoSQL for Rapid Scaling & Cost-EfficiencyFreshworks Rethinks NoSQL for Rapid Scaling & Cost-Efficiency
Freshworks Rethinks NoSQL for Rapid Scaling & Cost-Efficiency
 
Artificial Intelligence and Electronic Warfare
Artificial Intelligence and Electronic WarfareArtificial Intelligence and Electronic Warfare
Artificial Intelligence and Electronic Warfare
 
9 CEO's who hit $100m ARR Share Their Top Growth Tactics Nathan Latka, Founde...
9 CEO's who hit $100m ARR Share Their Top Growth Tactics Nathan Latka, Founde...9 CEO's who hit $100m ARR Share Their Top Growth Tactics Nathan Latka, Founde...
9 CEO's who hit $100m ARR Share Their Top Growth Tactics Nathan Latka, Founde...
 
“Temporal Event Neural Networks: A More Efficient Alternative to the Transfor...
“Temporal Event Neural Networks: A More Efficient Alternative to the Transfor...“Temporal Event Neural Networks: A More Efficient Alternative to the Transfor...
“Temporal Event Neural Networks: A More Efficient Alternative to the Transfor...
 
What is an RPA CoE? Session 1 – CoE Vision
What is an RPA CoE?  Session 1 – CoE VisionWhat is an RPA CoE?  Session 1 – CoE Vision
What is an RPA CoE? Session 1 – CoE Vision
 
Introduction of Cybersecurity with OSS at Code Europe 2024
Introduction of Cybersecurity with OSS  at Code Europe 2024Introduction of Cybersecurity with OSS  at Code Europe 2024
Introduction of Cybersecurity with OSS at Code Europe 2024
 
Programming Foundation Models with DSPy - Meetup Slides
Programming Foundation Models with DSPy - Meetup SlidesProgramming Foundation Models with DSPy - Meetup Slides
Programming Foundation Models with DSPy - Meetup Slides
 
The Microsoft 365 Migration Tutorial For Beginner.pptx
The Microsoft 365 Migration Tutorial For Beginner.pptxThe Microsoft 365 Migration Tutorial For Beginner.pptx
The Microsoft 365 Migration Tutorial For Beginner.pptx
 
Digital Banking in the Cloud: How Citizens Bank Unlocked Their Mainframe
Digital Banking in the Cloud: How Citizens Bank Unlocked Their MainframeDigital Banking in the Cloud: How Citizens Bank Unlocked Their Mainframe
Digital Banking in the Cloud: How Citizens Bank Unlocked Their Mainframe
 
Y-Combinator seed pitch deck template PP
Y-Combinator seed pitch deck template PPY-Combinator seed pitch deck template PP
Y-Combinator seed pitch deck template PP
 
Essentials of Automations: Exploring Attributes & Automation Parameters
Essentials of Automations: Exploring Attributes & Automation ParametersEssentials of Automations: Exploring Attributes & Automation Parameters
Essentials of Automations: Exploring Attributes & Automation Parameters
 
[OReilly Superstream] Occupy the Space: A grassroots guide to engineering (an...
[OReilly Superstream] Occupy the Space: A grassroots guide to engineering (an...[OReilly Superstream] Occupy the Space: A grassroots guide to engineering (an...
[OReilly Superstream] Occupy the Space: A grassroots guide to engineering (an...
 
Dandelion Hashtable: beyond billion requests per second on a commodity server
Dandelion Hashtable: beyond billion requests per second on a commodity serverDandelion Hashtable: beyond billion requests per second on a commodity server
Dandelion Hashtable: beyond billion requests per second on a commodity server
 
Mutation Testing for Task-Oriented Chatbots
Mutation Testing for Task-Oriented ChatbotsMutation Testing for Task-Oriented Chatbots
Mutation Testing for Task-Oriented Chatbots
 
Leveraging the Graph for Clinical Trials and Standards
Leveraging the Graph for Clinical Trials and StandardsLeveraging the Graph for Clinical Trials and Standards
Leveraging the Graph for Clinical Trials and Standards
 
Apps Break Data
Apps Break DataApps Break Data
Apps Break Data
 

Ms dos full explanation

  • 1. Galaxy Computer Education(ISO 9001:2015 CERTIFIED) M.S. DOS DOS: Disk operating System Disk Operating System is the first program that must be loaded in the memory of your PC before you can use it for any application. Different version of DOS, such as 2.0, 3.0, 4.0, 5.0, 6.0, 6.2, 7.0, 8.0 are available. The higher versions have more features and commands. However, the basic commands and features are available in all versions. File, File name & Directory A File is collection of related information. Like the contents of the file folder in a desk, your computer might contain files related to different topic owned by different people. Just as each folder in a file cabinet has a label, each file on a disk has to have a name. This name has two parts a filename and an extension. While naming a file following points should be kept in mind:  File name cannot exceed 8 characters.  Dot or period is optional, can be used for better management of files.  Extension, which is optional, cannot be exceeding 3 characters.  Some name and filename extensions have special meaning to DOS and to your computer usage of such names should be avoided. A directory on a disk is like a table of contents in a book. It contains the name of the file, size of file. The data and time are also stamped, when files are created or modified.
  • 2. Galaxy Computer Education(ISO 9001:2015 CERTIFIED) Internal & external DOS Commands There are two types of DOS commands – internal & external. The internal commands are those commands that are automatically loaded in the memory of your PC when DOS is loaded. These commands can be used without the need of any DOS file or diskette. The internal commands are simple and are used for common tasks such as copying, renaming or erasing files; displaying a list of files in a diskette; creating and changing directories; changing the current date in your PC etc. the external commands are used for relatively complex jobs, such as copying an entire diskette, formatting a diskette; comparing or joining files, sorting text etc. Internal commands External Commands DATE FORMAT TIME VER DIR DIR/P DIR/W COPY CON TYPE EDIT DEL CLS RENAME MD BATCH FILE CD WILD CARDS RD COPY ATTRIB
  • 3. Galaxy Computer Education(ISO 9001:2015 CERTIFIED) Internal Commands: 1. To Come Out Window C:Windows> CD..  2. Date To See or Change the current Date of your System. Syntax C:>Date  The Current Date is Tue 02-03-2009 [American Format] Enter the New Date (mm-dd-yy) ………….. 3. Time To see or to Change the Current time of your system. Syntax C:>Time The Current Time is 3:35:49.34a Enter the New Time …………. 4. Ver To see the version of your system. Syntax C:/>Ver  Windows 98 [Version 4.10.2222] 5. Dir To see the list of files and folders existing in your disk. Syntax C:/>Dir 
  • 4. Galaxy Computer Education(ISO 9001:2015 CERTIFIED) 6. Dir/p To see the Directory Page Wise. Syntax C:/>Dir/p  7. Dir/w To see the Directory Width Wise. Syntax C:/>Dir/w  8. Copy con This command is used to create a Text file on your disk. Syntax C:/>Copy con <File name>  Example: C:/>copy con ABC Type your text (Hi…! My name is Money Gupta. My institute name is Galaxy) Press <ctrl + z> to save the file. 9. Type This command is used to see the contents of any existing file. Syntax C:/>Type <file name>  Example: C:/>type ABC 10. Edit This command is used to make changes in any text file. Syntax C:/>Edit <File name>  Example: C:/>Edit ABC 11. Cls This command is used to clear the screen.
  • 5. Galaxy Computer Education(ISO 9001:2015 CERTIFIED) Syntax C:/>Cls  12. Del This command is used to delete the files from your disk. Syntax C:/>Del <file name>  Example: C:/>Del ABC 13. Rename Just as there are times when you need to assign a anew name to file in your office, there are times when you want to rename a file on the disk. The RENAME command or REN (short name) can change a file’s name or extension or both. The rename command has two parameters. Syntax C:/>Rename <Old name> <New file name> Example: C:/>Rename abc pqr 14. Copy This Command is used to create another copy of any existing file in same directory. Syntax C:/>Copy <Original file name> <copied file name>  Example: C:/>copy pqr mno  This Command is used to create another copy of any existing file in another directory. Syntax C:/>Copy <Original file name> <directory name>  Example: C:/>copy abc mohan  15. MD Make Directory.
  • 6. Galaxy Computer Education(ISO 9001:2015 CERTIFIED) MD command is used to create a new directory. Syntax C:/>md [Dir Name]  Example: C:/>md mno  16. CD Change Directory & Sub- directory CD Command is used to Change & open the Directory or Sub- directory. Syntax C:/>CD [Dir Name]  Example: C:/>cd mno  Your mno directory is open. C:/mno> To come out for your directory. C:/mno>cd..  17. RD Remove Directory & Sub- directory RD Command is used to remove the Directory or Sub-directory. 1. Directory should be Empty. 2. Path should be Valid Syntax C:/>rd [dir name]  Example: C:/>rd mno  18. Attrib This command is used to hide the file & Protect the file. 1.) +H = Hide the file. Syntax
  • 7. Galaxy Computer Education(ISO 9001:2015 CERTIFIED) C:/>attrib +h <File name>  Example: C:/>attrib +h abc  2.) -H = Unhide the file. Syntax C:/>attrib -h <File name>  Example: C:/>attrib -h abc  3.) +R = Read only file Syntax C:/>attrib +r <File name>  Example: C:/>attrib +r abc  4.) -R = Remove read only Syntax C:/>attrib -r <File name>  Example: C:/>attrib -r abc  External Commands 19. Batch File Group of Dos commands is called batch file. A Batch file should have Extension .bat .
  • 8. Galaxy Computer Education(ISO 9001:2015 CERTIFIED) Syntax C:/>Copy con <Batch file name.bat>  …… …… …… Dos Commands …… …… …… For save the file ctrl+z Example: C:/>Copy con abc.bat  Date Ver Time Dir Dir/p Dir/w Cls ^Z (ctrl+z)  1 File(s) copied To run the file only type file name then press enter. 20. Wildcard Wildcard Character are those character which are used for substituting one character or a set of character. The wildcard characters are used to restrict the scope of a DOS command to only those files which match pattern specified. These are of two types ----‘*’ and ‘?’, where ‘*’ substitutes a set of character and ‘?’ substitutes a character at a single particular position.
  • 9. Galaxy Computer Education(ISO 9001:2015 CERTIFIED) (1) .* Syntax C:/>dir <filename>.*  This command has displayed the directory with all the file names having their primary name as <file name>, irrespective of the extension. Example: C:/>dir abc.*  (2) *.* Syntax C:/>dir L* The given command has displayed all files stating with ‘L’ regardless of the extension in the directory, this command can also written as DIR L*.* The command has picked up all files with extension .DOC and displayed it. The above command can be written as ‘dir.doc’ to get the same effect. 21. FORMAT This is an external command of DOS; to execute this command the file FORMAT.COM is required. Purpose: This command is used to create a new tracks and sectors on your system disk. The number of the sectors and tracks depends on the capacity of the disk. Syntax: C :>format <drive name> Example: If a user wants to format his drive a then the procedure is: