home *** CD-ROM | disk | FTP | other *** search
/ Hacks & Cracks / Hacks_and_Cracks.iso / vol1 / ucf-xpb3.zip / XPACK.DMF < prev    next >
Text File  |  1997-01-02  |  3KB  |  72 lines

  1.  
  2. HOW TO FORMAT A DMF-FORMAT DISK
  3. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  4.  
  5. Microsoft has begun using an oddball 21-sector format on its
  6. program distribution 3 1/2" floppy disks which they call
  7. High-Density DMF. (Examples are Microsoft Word 6.0c and
  8. Microsoft Excel 5.0c) These DMF-format floppies cannot be
  9. copied or duplicated with any conventional DOS commands; all
  10. you can do is install from them - if the floppies are
  11. trouble-free!
  12.  
  13. I like to have backup copies of all my original program disks.
  14. I think it's just a wise thing to do. Floppies can go bad
  15. and it's good to have a backup set of original program disks
  16. if they are ever needed. So, the new DMF-format floppies
  17. presented a real challenge in order to make a backup set
  18. of disks.
  19.  
  20. A nifty little public-domain program, FDFORMAT, lets users
  21. manage DMF-format floppies with ease. Though FDFORMAT and its
  22. associated FDREAD tsr are in the public domain, and no fee is
  23. requested, a thank-you to Christian Hochstatter, the coder
  24. from Marburg, Germany, who developed it, wouldn't hurt.
  25.  
  26. DMF-format disks came along after FDFORMAT was written.
  27. Therefore, FDFORMAT does NOT explicitly support formatting
  28. a DMF disk with its supplied /F parameter options. After a
  29. little experimentation, I found the proper command line
  30. parameters to use in order to format a DMF disk.
  31.  
  32.  
  33. The command to format a DMF-format 3 1/2" disk is:
  34.  
  35. FDFORMAT /T:80 /N:21 /C:4 /D:16 /M:240
  36. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  37.  
  38. This will yield the following results from FDFORMAT after
  39. the disk is formatted:
  40.  
  41.         --------------------------------
  42.         OEM-Entry               CH-FOR16
  43.         Total sectors on disk:  3360
  44.         Sectors per track:      21
  45.         Heads:                  2
  46.         Bytes per sector:       512
  47.         Hidden sectors:         0
  48.         Boot-sectors:           1
  49.         Number of FATs:         2
  50.         Sectors per FAT:        3
  51.         Total clusters on disk: 838
  52.  
  53.           1716224 total bytes on disk
  54.           1716224 bytes available
  55.         --------------------------------
  56.  
  57. The key is the /M:240 parameter. This sets the Media Descriptor
  58. Byte to F0 (hex). This allows FDFORMAT to successfully use
  59. 4 sectors per cluster on a floppy disk. DOS normally supports
  60. only 1 or 2 sectors per cluster as the FDFORMAT documentation
  61. explains. Without this parameter, and using 4 sectors per cluster
  62. (/C:4), FDFORMAT will incorrectly set the Media Descriptor Byte
  63. to F8 (hex) and the disk will NOT be properly read by DOS.
  64.  
  65.  
  66. After formatting your DMF-format floppies, the original program
  67. disk files can be copied to the DMF-format backup floppies.
  68.  
  69. ** Be sure to also use the LABEL command to label each backup disk
  70. with the appropriate label from each original disk! **
  71.  
  72.