home *** CD-ROM | disk | FTP | other *** search
/ Media Share 9 / MEDIASHARE_09.ISO / utility / dos5gbag.zip / DOS50.ZIP / DOS50.DOC next >
Text File  |  1990-07-29  |  7KB  |  167 lines

  1.  
  2.                    What will be new with DOS 5.00?
  3.  
  4.      Well, DOS 5.00 will probably be out by the end of 1990, and you
  5. are probably anxious to know what is new.  Most people either don't
  6. know what is new, or "can't tell you".  I'll tell you all I know (and
  7. whatever I can make up).  Maybe I shouldn't be telling anyone, but no one
  8. knows who I am so it doesn't matter.
  9.  
  10.                                     Anonymous User
  11.  
  12. Changes/Additions:
  13.  
  14. 1.  DOS can now load itself into the first 64K of Extended memory if
  15.     you have it.  You must have the line, "DOS=HIGH" in your config.sys
  16.     and you must have at least 64K of extended memory available.  This
  17.     will only work on AT machines since 8088/8086 processors can only
  18.     address up to 1 Megabyte of memory, and Extended Memory begins at
  19.     1 Meg.  Loading DOS high will free up quite a bit of valuable
  20.     conventional memory.
  21.  
  22. 2.  The QuickBasic interpreter is included along with GWBasic.
  23.  
  24. 3.  The Shell program (DOSSHELL) has been completely changed.  It now
  25.     resembles the "File Manager" Program that comes with Windows or
  26.     OS/2.  DOSSHELL can be run in either graphics or text mode, in
  27.     color or black and white.  The F1 key brings up online help.
  28.  
  29. 4.  If the environment variable "TEMP" is set, DOS will use the
  30.     directory set in "TEMP" to write temporary files for piping
  31.     operations.  If there is no "TEMP" directory set, the current
  32.     directory is used.
  33.  
  34. 5.  If the environment variable "DIRCMD" is set, DOS uses it for
  35.     all "DIR" commands.  For example, if "DIRCMD=/W", when you type
  36.     "DIR", DOS would act like you typed "DIR/W" (Wide display).
  37.  
  38. 6.  A short help screen is available for all DOS commands by adding
  39.     a "/?" after the command, for example, "DIR /?" would give you
  40.     a help screen for the DIR command.
  41.  
  42. 7.  There is a utility called "DOSKEY" that is basically a command
  43.     line editor that lets you backup through your previous DOS
  44.     commands.  Here is the help screen for DOSKEY:
  45.  
  46.        DOSKEY [/reinstall] [/bufsize=] [/dmacs] [/dhist] [macro=text]
  47.        /reinstall  Installs a new copy of doskey.
  48.        /bufsize=   Specifies the size of the command buffer.
  49.        /dmacs      Displays all macros and lets you redirect them to a file.
  50.        /dhist      Displays all command lines stored in memory.
  51.  
  52. 8.  A program called UNFORMAT is included.  It restores a hard drive
  53.     to its condition prior to the last FORMAT command.
  54.  
  55. 9.  The DIR command now reports how many bytes the files listed
  56.     total up to.  Here is an example DIR command:
  57.  
  58.        E:\>dir
  59.  
  60.         Volume in drive E is whatever
  61.         Directory of E:\
  62.  
  63.        WIERDOS      <DIR>     06-28-90  12:42a
  64.        DUDE     ZIP    724409 07-26-90  10:14p
  65.        TMP          <DIR>     07-28-90   6:32p
  66.        IHATE-U      <DIR>     06-28-90  12:42a
  67.        MASM     EXE    103175 07-31-87  12:00a
  68.        STSCFG   CFG      2339 04-30-90   1:49a
  69.        SD       INI      2497 07-13-90   2:52a
  70.        FRECOVER DAT     50688 07-14-90   1:25a
  71.                8 File(s)    3883108 bytes
  72.                            21868544 bytes free
  73.  
  74.        E:\>
  75.  
  76. 10.  The FORMAT command now supports 2.88 Meg 3.5" diskettes.
  77.  
  78.  
  79. Here are the help screens for a few of the DOS commands:
  80.  
  81.  
  82. DIR [pathname] [/p] [/w] [/a:attributes] [/o:sortorder] [/s] [/b]
  83.     /p  Pause after each screen page of display.
  84.     /w  List Files in columns with up to five filenames on each line.
  85.     /a:attributes  Displays only files with the attributes you specify.
  86.     /o:sortorder   Displays files sorted in the specified order.
  87.     /s  Displays files in the specified directory and all subdirectories.
  88.     /b  Lists filenames, one per line, without any file information.
  89.  
  90.  
  91. FORMAT drive: [/1] [/4] [/8] [/n:sectors] [/t:tracks] [/f:size]
  92.               [/b] [/s] [/u] [/v[:label]]
  93.     /1  Formats a single side of a floppy disk.
  94.     /4  Forces a high-capacity floppy drive to format a 360K Floppy-disk.
  95.     /8  Formats eight sectors per track.
  96.     /n  Specifies the number of sectors per track.
  97.     /t  Specifies the number of tracks on the disk.
  98.     /f  Specifies the size of the floppy disk to format.
  99.     /b  Formats the disk, leaving space to copy an operating system.
  100.     /s  Copies the operating system files.
  101.     /u  Specifies an unconditional format for a hard disk.
  102.     /v  Specifies the volume label.
  103.  
  104.  
  105. COPY [pathname1] [pathname2] [/v] [/a] [/b]
  106.     /v Verifies sectors written on the target disk.
  107.     /a Copies Ascii files.
  108.     /b Copies binary files.
  109.  
  110.  
  111. BACKUP source destination [/s][/m][/a][/f:size][/d:date][/t:time][/L:pathname]
  112.     /s Backs up subdirectories
  113.     /m Backs up only those files that have changed since the last backup
  114.     /a Adds backed-up files to an existing backup disk
  115.     /d:date Backs up only files modified since the specified date
  116.     /t:time Backs up only files modified since the specified time
  117.     /L:pathname Creates a log entry to record the backup operation
  118.     /f:size Formats the target backup disk
  119.  
  120.  
  121. RESTORE drive1: [drive2] [pathname] [/s] [/p] [/b:date]
  122.         [/a:date] [/e:time] [/l:time] [/m] [/n]
  123.  
  124.     /s  Restores all subdirectories.
  125.     /p  Prompts before restoring read-only files or filed modified
  126.         since the backup.
  127.     /b  Restores only those files last modified on or before date.
  128.     /a  Restores only those files last modified on or after date.
  129.     /e  Restores only those files last modified a
  130.     /n  Restores only those files that no longer exist on the
  131.         target disk
  132.  
  133.  
  134. MODE - Configure a device.
  135.  
  136. Device Status:     MODE [device] [/sta]
  137. Printer port:      MODE LPTn[cols=c] [lines= l] [retry=r]
  138. Serial port:       MODE COMm baud=b [data=d] [stop=s] [parity=p] [retry=r]
  139. Display mode:      MODE con:[cols=m] [lines=n]
  140. Typematic rate:    MODE con [:] [rate=r] [delay=d]
  141. Prepare codepage:  MODE device cp prepare=((yyy) [drive:][path]filename
  142. Select codepage:   MODE device cp select=yyy
  143. Redirect printing: MODE LPTn[:]=COMm[:]
  144.  
  145.  
  146. XCOPY pathname1 [pathname2] [/a] [/d:date] [/e] [/m] [/p] [/s] [/v] [/w]
  147.     /a  Copy files with archive bit, but don't modify archive bit.
  148.     /d  Copies source files modified on or after specified date.
  149.     /e  Copies any subdirectories, even if they are empty.
  150.     /m  Copy files with archive bit set and clear the archive bit.
  151.     /p  Prompts before creating a new file in the target directory.
  152.     /s  Copy directories and subdirectories, unless empty.
  153.     /v  Verify each file as it is written to the target.
  154.     /w  Causes xcopy to wait before it starts copying files.
  155.  
  156.  
  157.  
  158.      There is also a neat little program included with the beta
  159. version of DOS 5.0 called "Microsoft Infer".  I don't know if Infer
  160. will be included with the release version of DOS.  Infer tells lots
  161. of useful information about your system, like: Operating System
  162. Version, Machine type, Environment, Processor type, Memory info,
  163. Video Adapter info, Serial/Parallel port info, disk drive info,
  164. and much more.  Infer includes a ROM BIOS browser, memory browser,
  165. and several other useful functions.
  166.  
  167.