can anyboody tell me what can i do with the command promt i mean really
usefull
Many things. You can use the built in commands (in XP found in the
WINDOWS\SYSTEM32 directory).
See:
http://www.microsoft.com/resources/documentation/windows/xp/all/proddocs/en-us/ntcmds.mspx?mfr=true
for all available commands.
Easy to use and useful commands are:
attrib, dir, xcopy, findstr, move
examples:
dir *.doc /on [RETURN]
This will give a list of all Word documents (files with extension
.DOC) in the working directory, sorted on name (/on parameter).
dir /? [ENTER] will produce help for the DIR command.
move <fromlocation> <tolocation> moves a file to another location.
example:
move haylee.doc travel [ENTER]
If you have a map 'travel' haylee.doc will be moved to that directory.
move /? produces a help text.
MOVE may ask you whether 'travel' is a file or a map.
With xcopy you can copy files:
xcopy a b [ENTER]
will copy file a to a new file b. If a file b already exists, xcopy
will ask for permission to erase the old b file.
with findstr you can search for strings in a .TXT or .ASC file:
findstr "Hamlet Denmark" shakes.txt [ENTER]
will give you all instances of Hamlet OR Denmark in the file
shakes.txt
This is one of the most useful commands IMHO.
The attrib command can be used to set file attributes, like
attrib +r *.RTF [ENTER]
This will make all .RTF files read-only. (i.e. they cannot be written
to.)
attrib /? [ENTER] produces a help file.
Also very usefule is DOSKEY.
doskey /i /h [enter]
will remember the commands you have typed, and will let you insert
letters instead of overtrike.
doskey /? [ENTER] produces a help file.
Also, you can use older programmes which have been written for MS-DOS.
Unfortunately, Microsoft has destroyed much of the older MS-DOS power,
but some of the older programmes still run (but not all!!).
A book on MS-DOS 6 may be cheaply available in a second hand
bookstore. Get it. Some of the DOS 6 commands may have changed, see
the Microsoft site cited above.
Windows with its graphic interface is mostly silly and childish. DOS
is much more user-friendl, albeit also more limited..
Good luck,
Rob van Albada, Amsterdam.