home *** CD-ROM | disk | FTP | other *** search
- @echo off
- echo
- echo XFDISK version 1.00 August 28, 1991
- echo Fixed Disk Preparation and Partitioning Software.
- echo Copyright (C) 1991 Dennis W. Person. All rights reserved.
- echo
-
- if [%1]==[] goto HELP
- if exist %1.BAT ren %1.BAT %1.DOC
- if NOT exist %1.DOC goto ERROR
- ren %1.DOC %1.BAT
- call %1 %2 %3 %4 %5
- ren %1.BAT %1.DOC
- goto EXIT
-
- :ERROR
- echo ERROR: The %1.DOC file is missing. Unable to continue.
- goto EXIT
-
- :HELP
- echo Command: XFDISK [doc_file] [/1│/2] [R│P] [list_file│NUL] [REM]
- echo
- echo doc_file Documentation file for partitioning your fixed disk.
- echo /1 Select 1st fixed disk.
- echo /2 Select 2nd fixed disk.
- echo R Restore fixed disk partitions.
- echo P Prepare and partition fixed disk.
- echo list_file Filename.LST to capture DEBUG output if desired.
- echo Do NOT enter the default .LST extension.
- echo NUL Use NUL as the filename if no output file is desired but,
- echo the REM option is desired.
- echo REM Remarks only {will still create DEBUG script file}.
- echo Useful to check script file before actual disk partitioning.
- echo
- echo Options must be entered in the order shown and separated by a space.
- echo
-
- :EXIT
-