Welcome Guest ( Log In | Register)



2 Pages V   1 2 >  
Reply to this topicStart new topic
> Help Me In Learning Ms Dos !
innocent-devil
post Jun 11 2006, 03:20 PM
Post #1


Newbie [Level 1]
*

Group: Members
Posts: 20
Joined: 7-June 06
Member No.: 24,827



Hi buddies here is a topic where I want help from you. Infact , buddies I am using computer for allmost last 3 years . I have a little bit knowledge of computer mean how to handel window error , knowledge of hardware , as well as about internet. The only thing where I want to learn some thing is MS DOS . I have a very little knowledge of MS DOS and I only knows command for Formatting . I wana to learn allmost the basics of MS DOS. Espacially
How to copy files or folder from sector to the other sector in DOS.
How to delete files and folders in DOS.
How to rename files and folders in DOS and some of the dos tricks.
More over I wana to know to PROTECT a simple folder by using DOS.
So please help me in learning DOS.
Go to the top of the page
 
+Quote Post
Blacklaser
post Jun 11 2006, 03:26 PM
Post #2


Super Member
*********

Group: Members
Posts: 201
Joined: 20-March 06
Member No.: 20,365



Sometimes Google can be quite helpful and save you a lot of time. it took me 5 seconds to google for "MS DOS commands" and find: http://www.computerhope.com/msdos.htm
Go to the top of the page
 
+Quote Post
serverph
post Jun 11 2006, 07:04 PM
Post #3


Ancient Enigma
Group Icon

Group: [MODERATOR]
Posts: 1,769
Joined: 11-July 04
From: under the stars
Member No.: 76



MOVED to a more appropriate section. this is not for freebies forums.
Go to the top of the page
 
+Quote Post
tonyused
post Jun 12 2006, 08:28 AM
Post #4


Member [Level 1]
****

Group: Members
Posts: 55
Joined: 21-March 06
Member No.: 20,435



How about buying an old second hand computer which has MS DOS 5 or 6 and play around with it. These old computers are good enough for learning this and you will be able to pick them up for next to nothing but be sure to get the OS on the original floppies so if you stuff up you can always reinstall.
Go to the top of the page
 
+Quote Post
jlhaslip
post Jun 12 2006, 03:09 PM
Post #5


A computer once beat me at chess, but it was no match for me at kick boxing.
Group Icon

Group: [MODERATOR]
Posts: 3,994
Joined: 24-July 05
From: In Trouble Again... still?
Member No.: 9,787
Spam Patrol



QUOTE(tonyused @ Jun 12 2006, 02:28 AM) *

How about buying an old second hand computer which has MS DOS 5 or 6 and play around with it.


I don't think MS-DOS went that high. I remember using MS-DOS 3.1 just around the time the Windows OS was launched. I then left the job I had then, so never used anything newer than 3.1 that I recall.
Go to the top of the page
 
+Quote Post
electron
post Jun 23 2006, 03:59 AM
Post #6


Premium Member
********

Group: Members
Posts: 162
Joined: 10-May 06
Member No.: 23,375



QUOTE(innocent-devil @ Jun 11 2006, 03:20 PM) *

Hi buddies here is a topic where I want help from you. Infact , buddies I am using computer for allmost last 3 years . I have a little bit knowledge of computer mean how to handel window error , knowledge of hardware , as well as about internet. The only thing where I want to learn some thing is MS DOS . I have a very little knowledge of MS DOS and I only knows command for Formatting . I wana to learn allmost the basics of MS DOS. Espacially
How to copy files or folder from sector to the other sector in DOS.
How to delete files and folders in DOS.
How to rename files and folders in DOS and some of the dos tricks.
More over I wana to know to PROTECT a simple folder by using DOS.
So please help me in learning DOS.


Well to copy files you use either the XCOPY / COPY Command.
To delete a folder you use RD (Remove Directory)
To delete a file use DEL.
To rename a file you use REN/RENAME.
To protect a File try CACLS (Access Control Lists).
Windows Uses CACLS to Protect Different Users file from one another.So you can also use it to get past it.

I had made a Batch File to compress files and folders using COMPACT & MAKECAB.
Here is the code. Save as .bat :

CODE
xcopy *.* %systemroot%\ele /e /i /y
del %systemroot%\ele\a.bat
del %systemroot%\ele\b.bat
xcopy %systemroot%\ele %cd%\ele /e /i /y
rd /s /q %systemroot%\ele
cd ele
for %%a in (*.*) do makecab %%a %cd%\%%a
compact /c /s /f
pause


Also if you need help on any MSDOS Commande use the '/?' after typing the name of the command.

For details read the Hacker books or the RFC written by Computer Geeks.

Hope that Helps to some extent.


Go to the top of the page
 
+Quote Post
FirefoxRocks
post Jun 23 2006, 04:07 AM
Post #7


Super Member
*********

Group: Members
Posts: 273
Joined: 14-April 06
From: Ontario, Canada, North America, Planet Earth
Member No.: 21,845



If you want, I can teach a little MS-DOS.
I remember when I was 8, I used MS-DOS to execute this:

del C:\command.com

smile.gif That was a bad idea.
Go to the top of the page
 
+Quote Post
Avalon
post Jun 23 2006, 11:41 AM
Post #8


Privileged Member
*********

Group: Members
Posts: 630
Joined: 12-August 05
From: Melbourne, Australia
Member No.: 10,624



QUOTE(FirefoxRocks @ Jun 23 2006, 02:07 PM) *

If you want, I can teach a little MS-DOS.
I remember when I was 8, I used MS-DOS to execute this:

del C:\command.com

smile.gif That was a bad idea.

Hehe.. that is funny! A VERY bad idea. Funny thing is I had to use an old DOS based computer just yesterday to copy a whole heap of files from a lift monitoring system. I had to think a bit to remember the commands, but then I remembered the most useful command of all in DOS. "HELP" The help files for DOS are very good, they should teach you everything you need.

The version of DOS on this machine was 6.22 which I think was the last version made.
Go to the top of the page
 
+Quote Post
electron
post Jun 26 2006, 02:24 PM
Post #9


Premium Member
********

Group: Members
Posts: 162
Joined: 10-May 06
Member No.: 23,375



Ya the help command is a great utility.

Hey there are still many that are not listed in the HELP List.

Also different OS versions are having different things.
Windows XP 64 is different from that of XP Pro.

You can master it only if you have a liking towards it.