HELP

This program is used to display, add, and remove partitions.  It also writes
the boot loader code to the Master Boot Record and toggles the boot
partition flag.


Syntax:

FDISK
FDISK /?
FDISK /??

FDISK [/n drive# partition_type size [/p]]
FDISK [/d drive# [partition#] || [/l]]
FDISK [/i [drive#]]
FDISK [/l [drive#]]
FDISK [/mbr [drive#]]
FDISK [/rmbr [drive#]]
FDISK [/c drive#]
FDISK [/t drive# partition# active_toggle]

     FDISK entered alone allows you to use a menu to manage your partition
            tables.
     
     /?     Displays the help screen.
     /??    Displays the licensing, credit, and warning screen.
     /n     Creates a new partition based upon the drive# (1-4), type (P, E,
              or L), and size (in megabytes).  If the /p switch is added,
              the size is a percentage of the total drive space.
     /d     Deletes a partition based upon the drive# (1-4) and the 
              partition number.  If /l is used instead of a partition number,
              then it deletes the last logical drives created on drive#.
     /i     Displays the partition table for drive# (1-4).  If no drive
              number is entered it will default to the first drive.
     /l     Lists the IDE hard drives installed and their sizes.
     /mbr   Writes the boot loader code to drive#.  If no drive number is
              entered, it will default to the first drive.
     /rmbr  Removes the boot loader from drive#, leaving the parition table
              intact.
     /c     Clears the partition sector.  (Use with extreme caution!)
     /r     Removes the boot loader from the first sector of drive#.
     /t     Toggles the partition# on drive# as active or not active (1 or 0).




Notes:
   The /mbr switch will work on any drive.  This could be useful if you are
     setting up a hard disk on one computer for use in another computer.
     (I know from experience this would be great on a cloning project.)

   The /c switch completely zeros out the first sector of a hard drive.
     This would be useful for zeroing out the first sector of a hard disk
     that previously had a drive translation program installed on it.

   The /t switch will set a partition active on any hard drive that this 
     program supports.  (Not just the first hard disk as is usually the
     case.)


