home *** CD-ROM | disk | FTP | other *** search
/ Liren Large Software Subsidy 7 / 07.iso / c / c083 / 20.ddi / TDDOC.PAK / TD_UTILS.TXT < prev   
Encoding:
Text File  |  1993-12-02  |  26.3 KB  |  705 lines

  1. /*************************************************************************/
  2.                            TURBO DEBUGGER
  3.                          UTILITIES REFERENCE
  4.  
  5. This file contains information about the following Turbo Debugger utilities:
  6.  
  7. 1. TDSTRIP and TDSTRP32
  8. 2. TDUMP
  9. 3. TDMEM
  10. 4. TDWINI
  11. 5. TDRF
  12.  
  13. For convenience, when searching for information about a particular utility,
  14. you can search for the name of the utility followed by a colon (i.e. TDUMP:).
  15. Doing so will take you directly to the header for the utility specified.
  16.  
  17. For a list of all the command-line options available for TDSTRIP.EXE,
  18. and TDUMP.EXE, just type the program  name and press Enter. For example,
  19. to see the command-line options for TDSTRIP.EXE, you enter
  20.  
  21.    TDSTRIP
  22.  
  23. For a list of all the command-line options available for TDMEM.EXE, 
  24. enter the program name followed by -?.
  25.  
  26.    TDMEM -?
  27.  
  28.  
  29. 1. TDSTRIP: The symbol table stripping utility
  30. ==============================================
  31. TDSTRIP.EXE (and TDSTRP32, the 32-bit version of TDSTRIP) lets you
  32. remove the symbol table from an executable program. This is a faster
  33. way of removing the symbol table than recompiling and relinking your
  34. program without symbolic debug information. TDSTRIP can also remove
  35. debugging information from an .OBJ file:
  36.  
  37.    TDSTRIP PROGRAM.OBJ
  38.  
  39. You can also use TDSTRIP to remove the symbol table and put it in
  40. a separate file. This is useful when you want to convert the .EXE
  41. format program to a .COM file and still retain the debugging symbol
  42. table. TDSTRIP puts the symbol table in a file with the extension
  43. .TDS. Turbo Debugger looks for this file when it loads a program to
  44. debug that doesn't have a symbol table.
  45.  
  46.  
  47. TDSTRIP command-line options
  48. ----------------------------
  49. The general form of the DOS command line used to start TDSTRIP is:
  50.  
  51.    TDSTRIP [-s] [-c] <exename> [<outputname>]
  52.  
  53. If you don't specify the -s option, the symbol table is removed from
  54. the .EXE file <exename>. If you specify an <outputname>, the original
  55. .EXE file is left unchanged and a version with no symbol table is created
  56. as <outputname>.
  57.  
  58. If you do specify the -s option, the symbol table will be put in a
  59. file with the same name as <exename> but with the extension .TDS. If you
  60. specify an output file, the symbol table will be put in <outputname>.
  61.  
  62. If you specify the -c option, the input .EXE file is converted into a
  63. .COM file. If you use -c in conjunction with -s, you can convert an
  64. .EXE file with symbols into a .COM file with a separate .TDS symbol
  65. file. This lets you debug .COM files with Turbo Debugger while
  66. retaining full debugging information.
  67.  
  68. You can only convert certain .EXE files into .COM files. The same
  69. restrictions apply to the -c option of TDSTRIP as to the /t option of
  70. TLINK: Your program must start at location 100 hex, and it can't
  71. contain any segment fixups.
  72.  
  73. The default extension for <exename> is .EXE. If you add an extension,
  74. it overrides the default.
  75.  
  76. There are two default extensions for <outputname>,
  77.  
  78. o .TDS when you use the -s command-line switch
  79. o .EXE when you don't use the -s command-line switch
  80.  
  81. If you add an extension, it overrides the defaults.
  82.  
  83. Here are some sample TDSTRIP command lines. The following command
  84. removes the symbol table from MYPROG.EXE:
  85.  
  86.    TDSTRIP MYPROG
  87.  
  88. The following command removes the symbol table from MYPROG.OLD
  89. and places it in MYPROG.TDS:
  90.  
  91.    TDSTRIP -s MYPROG.OLD
  92.  
  93. The following command leaves MYPROG.EXE unchanged but creates another
  94. copy of it named MYPROG.NEW without a symbol table:
  95.  
  96.    TDSTRIP MYPROG MYPROG.NEW
  97.  
  98. The following command removes the symbol table from MYPROG.EXE and
  99. places it in MYSYMS.TDS:
  100.  
  101.    TDSTRIP -s MYPROG MYSYMS
  102.  
  103.  
  104. TDSTRIP error messages
  105. ----------------------
  106. Following is a list of TDSTRIP error messages:
  107.  
  108. Can't create file: ___
  109.   TDSTRIP couldn't create the output symbol or .EXE file. Either there
  110.   is no more room on your disk, or you specified an invalid output file
  111.   name.
  112.   
  113. Can't open file: ___
  114.   TDSTRIP could not locate the .EXE file from which you want to remove the
  115.   symbol table.
  116.  
  117. Error reading from input exe file
  118.   An error occurred during reading from the input executable program
  119.   file. Your disk may be unreadable. Try the operation again.
  120.  
  121. Error writing to output file: ___; disk may be full
  122.   TDSTRIP couldn't write to the output symbol or executable file. This
  123.   usually happens when there is no more room on your disk. You will have
  124.   to delete some files to make room for the file created by TDSTRIP.
  125.  
  126. Input file is not an .exe file
  127.   You've specified an input file name that isn't a valid executable
  128.   program. You can strip symbols only from .EXE programs because these
  129.   are the only ones that TLINK can put a symbol table in. Programs in
  130.   .COM file format don't have symbol tables and can't be processed by
  131.   TDSTRIP.
  132.  
  133. Invalid command-line option: ___
  134.   You've given an invalid command-line option when starting TDSTRIP
  135.   from the DOS command line.
  136.  
  137. Invalid exe file format
  138.   The input file appears to be an .EXE format program file, but
  139.   something is wrong with it. You should relink the program with TLINK.
  140.  
  141. Not enough memory
  142.   Your system doesn't have enough free memory for TDSTRIP to load and
  143.   process the .EXE file. This only happens in extreme circumstances
  144.   (TDSTRIP has very modest memory requirements). Try rebooting your 
  145.   system and running TDSTRIP again. You might have previously run a
  146.   program that allocated some memory that won't be freed until you reboot.
  147.  
  148. Program does not have a symbol table
  149.   You've specified an input file that's a valid .EXE file, but it
  150.   doesn't have a symbol table.
  151.  
  152. Program does not have a valid symbol table
  153.   The symbol table at the end of the .EXE file isn't a valid TLINK
  154.   symbol table. This can happen if you try to use TDSTRIP on a program
  155.   created by a linker other than TLINK. Relink the program with TLINK.
  156.  
  157. Too many arguments
  158.   You can supply a maximum of two arguments to TDSTRIP, the first being
  159.   the name of the executable program, and the second being the name of
  160.   the output file for symbols or the executable program.
  161.  
  162. You must supply an exe file name
  163.   You've started TDSTRIP without giving it the name of an .EXE program
  164.   file whose symbol table you want to strip.
  165.  
  166.  
  167. 2. TDUMP: The file dumping utility
  168. ==================================
  169. The TDUMP utility program produces a file dump that shows the 
  170. structure of a file.
  171.  
  172. TDUMP breaks apart a file structurally and uses the file's extension to
  173. determine the output display format. TDUMP recognizes many file formats, 
  174. including .EXE, .OBJ, and .LIB files. If TDUMP doesn't recognize an 
  175. extension, it produces a hexadecimal dump of the file.  You can control 
  176. the output format by using command-line options when you start the 
  177. program. (These options are described later).
  178.  
  179. TDUMP's ability to peek at a file's inner structure displays not only
  180. a file's contents, but also how a file is constructed. Moreover,
  181. because TDUMP verifies that a file's structure matches its extension,
  182. you can also use TDUMP to test file integrity.
  183.  
  184.  
  185. TDUMP syntax
  186. ------------
  187. The DOS command-line syntax for TDUMP is:
  188.  
  189.    TDUMP [<options>] <Inputfile> [<Listfile>] [<options>]
  190.  
  191. <Inputfile> is the file whose structure you want to display (or "dump").
  192. <Listfile> is an optional output file name (you can also use the standard
  193. DOS redirection command ">"). <options> stands for any of the TDUMP
  194. options discussed in the next section.
  195.  
  196.  
  197. TDUMP command-line options
  198. --------------------------
  199. You can use several optional switches with TDUMP, all of which start with
  200. a hyphen or a forward slash. The following two examples are equivalent:
  201.  
  202.    TDUMP -el -v demo.exe
  203.  
  204.    TDUMP /el /v demo.exe
  205.  
  206.  
  207.   The -a and -a7 options
  208.   ----------------------
  209.   TDUMP automatically adjusts its output display according to the file type.
  210.   You can force a file to be displayed as ASCII by including the -a or -a7 
  211.   option.
  212.  
  213.   -a  produces an ASCII file display, which shows the offset and the contents
  214.       in displayable ASCII characters. A character that is not displayable 
  215.       (like a control character) appears as a period.
  216.  
  217.   -a7 converts high-ASCII characters to their low-ASCII equivalents. This 
  218.       is useful if the file you are dumping sets high-ASCII characters as
  219.       flags (WordStar files do this).
  220.  
  221.  
  222.   The -b# option
  223.   --------------
  224.   The -b# option allows you to display information beginning at a specified
  225.   offset.  For example, if you wanted a dump of MYFILE starting from offset
  226.   100, you would use:
  227.  
  228.      TDUMP -b100 MYFILE
  229.  
  230.  
  231.   The -e, -el, -er and -ex options
  232.   --------------------------------
  233.   All four options force TDUMP to display the file as an executable
  234.   (.EXE) file.
  235.  
  236.   An .EXE file display consists of information contained within a file
  237.   that is used by the operating system when loading a file.  If symbolic
  238.   debugging information is present (Turbo Debugger or Microsoft CodeView),
  239.   TDUMP displays it.
  240.  
  241.   TDUMP displays information for DOS executable files, NEW style executable
  242.   files ( Microsoft Windows and OS/2 .EXEs and DLLs ), and Linear Executable
  243.   files.
  244.  
  245.   -el suppresses line numbers in the display.
  246.  
  247.   -er prevents the relocation table from displaying.
  248.  
  249.   -ex prevents the display of New style executable information.
  250.       This means TDUMP will only display information for the DOS
  251.       "stub" program.
  252.  
  253.  
  254.   The -h option
  255.   -------------
  256.   The -h option displays the dump file in hexadecimal (hex) format.  Hex
  257.   format consists of a column of offset numbers, 16 columns of hex numbers,
  258.   and their ASCII equivalents (a period appears where no displayable ASCII
  259.   character occurs).
  260.  
  261.   If TDUMP doesn't recognize the input file's extension, it displays the
  262.   file in hex format (unless an option is used to indicate another format).
  263.  
  264.  
  265.   The -l option
  266.   -------------
  267.   The -l option displays the output file in library (.LIB) file format.
  268.   A library file is a collection of object files (see the -o option for
  269.   more on object files). The library file dump displays library-specific
  270.   information, object files, and records in the object file.
  271.  
  272.  
  273.   The -m option
  274.   -------------
  275.   The -m option leaves C++ names occurring in object files, executable
  276.   files, and Turbo Debugger symbolic information files in "mangled" format.
  277.   This option is helpful in determining how the C++ compiler "mangles"
  278.   a given function name and its arguments.
  279.  
  280.  
  281.   The -o, -oc, -ox, and -oi options
  282.   ---------------------------------
  283.   -o  displays the file as an object (.OBJ) file. An object file
  284.       display contains descriptions of the command records that pass
  285.       commands and data to the linker, telling it how to create an .EXE
  286.       file.
  287.  
  288.       The display format shows each record and its associated data on a
  289.       record-by-record basis.
  290.  
  291.   -oc causes TDUMP to perform a cyclic redundancy test (CRC) on each 
  292.       encountered record. The display differs from the -o display only
  293.       if an erroneous CRC check is encountered (the TDUMP CRC value differs
  294.       from the record's CRC byte).
  295.  
  296.   -ox<id> excludes designated record types from the object module dump.
  297.           Replace <id> with the record name not to be displayed. For 
  298.           instance,
  299.  
  300.             TDUMP -oxPUBDEF MYMODULE.OBJ
  301.  
  302.           produces an object module display for MYMODULE.OBJ that excludes the
  303.           PUBDEF records.
  304.  
  305.   -oi<id> includes only specified record types in the object module dump.
  306.           Replace <id> with the name of the record to be displayed.
  307.           For instance,
  308.  
  309.             TDUMP -oiPUBDEF MYMODULE.OBJ
  310.  
  311.           produces an object module display for MYMODULE.OBJ that displays 
  312.           only the PUBDEF records.
  313.  
  314.   The -ox and -oi options are helpful in finding errors that occur during
  315.   linking.   By examining the spelling and case of the EXTDEF symbol and 
  316.   the PUBDEF symbol, you can resolve many linking problems. For instance, 
  317.   if you receive an "unresolved external" message from the linker, use 
  318.   "TDUMP -oiEXTDEF" to display the external definitions occurring in the 
  319.   module causing the error.  Then, use "TDUMP -oiPUBDEF" on the module 
  320.   containing the public symbol the linker could not match.
  321.  
  322.   Another use for the -oi switch is to check the names and sizes
  323.   of the segments generated in a particular module.  For instance,
  324.  
  325.     TDUMP -oiSEGDEF MYMODULE.OBJ
  326.  
  327.   displays the names, attributes, and sizes of all of the segments
  328.   in MYMODULE.
  329.  
  330.  
  331.   The -v option
  332.   -------------
  333.   The -v option is used for verbose display.  If used with an .OBJ or .LIB
  334.   file, TDUMP produces a hexadecimal dump of the record's contents without
  335.   any comments about the records.
  336.  
  337.  
  338. If you use TDUMP on a Turbo Debugger symbol table, it displays the 
  339. information tables in the order in which it encounters them.  TDUMP 
  340. doesn't combine information from several tables to give a more meaningful
  341. display on a per-module basis.
  342.  
  343.  
  344. 3. TDMEM: The memory display utility
  345. ====================================
  346. TDMEM displays the current availability of your computer's memory.
  347. This includes Expanded or Extended memory, if it exists, and conventional 
  348. memory.  This is useful when debugging TSR and device driver programs.  
  349. You can use the File|Table relocate option in Turbo Debugger to specify 
  350. a base segment address for the current symbol table that is shown when 
  351. running TDMEM.
  352.  
  353.  
  354. 4. TDWINI: The video DLL setup utility
  355. ======================================
  356. TDWINI helps you select and configure the video DLL that you use with TDW.
  357. For complete instructions on this utility, see the online help (F1)
  358. provided with the utility.
  359.  
  360.  
  361. 5. TDRF: Utility for remote file commands and file transfer
  362. ===========================================================================
  363. The remote file transfer utility (TDRF) works in conjunction with TDREMOTE
  364. or WREMOTE running on another system.  (For more information on TDREMOTE and
  365. WREMOTE, see the "Remote Debugging" appendix in the "Turbo Debugger User's 
  366. Guide"). With TDRF you can perform most DOS file maintenance operations on 
  367. the remote system. You can
  368.  
  369.   o copy files to the remote system
  370.   o copy files from the remote system
  371.   o make directories
  372.   o remove directories
  373.   o display directories
  374.   o change directories
  375.   o rename files
  376.   o delete files
  377.  
  378. Once you have started TDREMOTE or WREMOTE on the remote system, you can
  379. use TDRF at any time. You can start it directly from the DOS prompt, or
  380. you can access DOS from inside Turbo Debugger by using the File|DOS
  381. Shell command, then start TDRF (even while debugging a program on the
  382. remote system). This second method is useful if you've forgotten to put
  383. some files on the remote system that are required by the program you're
  384. debugging.
  385.  
  386. When describing TDRF in the following sections, we refer to the system
  387. you're typing at as the "local system" and any files there as "local
  388. files," and the other system connected by a serial cable or network as 
  389. the "remote system" and any files there as "remote files."
  390.  
  391.  
  392. Starting TDRF from the DOS command line
  393. ---------------------------------------
  394. The general form of the command line for TDRF is
  395.  
  396.    TDRF [<options>] <command> [<arguments>]
  397.  
  398. The <options> control whether the link is network or serial, and if it's
  399. serial, the speed of the remote link and which port it runs on. The
  400. options are described in more detail in the next section.
  401.  
  402. <command> indicates the operation you want to perform. You can type the 
  403. command either as a DOS command--like COPY, DEL, MD, and so on--or as 
  404. a single-letter abbreviation.
  405.  
  406. <arguments> are any arguments to the command.
  407.  
  408. For example, to get a directory display of all files starting with ABC
  409. in the current directory on the remote system, you could type:
  410.  
  411.    TDRF DIR ABC*
  412.  
  413. All the commands are described fully after the next section.
  414.  
  415.  
  416. TDRF command-line options
  417. -------------------------
  418. You must start an option with either a hyphen (-) or a slash (/).
  419. The following list shows the command-line options for TDRF:
  420.  
  421. -rn<L>;<R>  Sets the link to network, the local name to <L>, and the remote
  422.             name to <R>.
  423.  
  424.   If you link over the network, the name of the local machine defaults to
  425.   "LOCAL" and the remote machine to "REMOTE". You can set your own name for
  426.   the machines by entering a name up to 16 characters long for either the
  427.   local machine, the remote machine, or both.
  428.  
  429.   You must be running TDREMOTE or WREMOTE with the -rn option on the remote
  430.   machine with the local machine name set to the same name as you've indicated
  431.   in the TDRF command.
  432.  
  433. -rsN        Sets the type of remote link to serial and the speed of the link.
  434.  
  435.   The -rs option sets the speed at which the remote serial link operates. 
  436.   You must make sure you use the same speed with TDRF that you specified
  437.   when you started TDREMOTE or WREMOTE on the remote system. N can be 1, 2,
  438.   3, or 4, where 1 signifies a speed of 9600 baud, 2 signifies 19,200 baud, 
  439.   3 signifies 38,400 baud, and 4 signifies 115,000 baud.
  440.  
  441.   In other words, the higher the number, the faster the data transfer
  442.   rate across the serial link. Normally, TDRF defaults to -rs4 (the highest
  443.   speed).
  444.  
  445. -rpN        Sets the remote serial link port.
  446.  
  447.   The -rp option specifies which port to use for the remote serial link.
  448.   N can be either 1 or 2, where 1 stands for COM1 and 2 stands for COM2.
  449.  
  450. -w          Writes options to the TDRF executable program file.
  451.  
  452.   You can make the TDRF command-line options permanent by writing them
  453.   back into the TDRF executable program image on disk. Do this by
  454.   specifying the -w command-line option along with the other options you
  455.   wish to make permanent. You will then be prompted for the name of the
  456.   executable program.
  457.  
  458.   If you're running on DOS 3.0 or later, the prompt will indicate the
  459.   path and file name that you executed TDRF from. You can accept this
  460.   name by pressing Enter, or you can enter a new executable file name.
  461.   The new name must already exist and must be a copy of the TDRF program 
  462.   that you've already made.
  463.  
  464.   If you're running on DOS 2.x, you'll have to supply the full path
  465.   and file name of the executable program.
  466.  
  467.   If you enter the name of an executable file that doesn't exist (a new
  468.   filename), TDRF will create a new executable file.
  469.  
  470.  
  471. TDRF commands
  472. -------------
  473. Following are the command names you can use with the TDRF utility. You
  474. can use the wildcards * and ? with the COPY, COPYFROM, DEL, and DIR
  475. commands.
  476.  
  477.  
  478. COPY
  479.  
  480.   Copies files from the local system to the remote system. You can also
  481.   type COPYTO instead of COPY. The single letter abbreviation for this
  482.   command is T.
  483.  
  484.   If you supply a single file name after the COPY command, that file
  485.   name will be copied to the current directory on the remote system. If
  486.   you supply a second file name after the name of the file on the local
  487.   system, the local file will be copied to that destination on the
  488.   remote system. You can specify either a new file name, a directory
  489.   name, or a drive name on the remote system. For example,
  490.  
  491.      TDRF COPY TEST1 \MYDIR
  492.     
  493.   copies file TEST1 from the local system to file MYDIR\TEST1 on the
  494.   remote system.
  495.  
  496.  
  497. COPYFROM
  498.  
  499.   Copies files from the remote system to the local system. The single
  500.   letter abbreviation for this command is F.
  501.   
  502.   If you supply a single file name after the COPYFROM command, that file
  503.   name will be copied from the current directory on the remote system to
  504.   the current directory on the local system. If you supply a second file
  505.   name after the name of the file on the remote system, the remote file
  506.   will be copied to that destination on the local system. You can
  507.   specify either a new file name, a directory name, or a drive name on
  508.   the local system. For example,
  509.  
  510.      TDRF COPYFROM MYFILE ..
  511.  
  512.   copies file MYFILE from the remote system to the parent directory of
  513.   the current directory on the local system.
  514.  
  515.      TDRF F TC*.* A:\TCDEMO
  516.   
  517.   copies all files beginning with TC on the current directory of the
  518.   remote system to the TCDEMO directory on the local system's drive A.
  519.   
  520.  
  521. DEL
  522.  
  523.   Erases a single file from the remote system. The single letter
  524.   abbreviation for this command is E.
  525.  
  526.   If you just give a file name with no directory or drive, the file is
  527.   deleted from the current directory on the remote system. For example,
  528.   
  529.      TDRF DEL XYZ
  530.   
  531.   removes file XYZ from the current directory of the remote system.
  532.   
  533.  
  534. DIR
  535.  
  536.   Displays a listing of the files in a directory on the remote system.
  537.   The single letter abbreviation for this command is D.
  538.   
  539.   This command behaves similarly to the equivalent DOS command. If
  540.   you don't specify a wildcard mask, it shows all the files in the
  541.   directory; if you do specify a mask, only those files will be listed.
  542.   You can interrupt the directory display at any time by pressing
  543.   Ctrl-Break.
  544.   
  545.   The directory listing is displayed in a format similar to that
  546.   used by the DOS DIR command. For example,
  547.   
  548.      TDRF DIR \SYS\*.SYS
  549.   
  550.   results in a display like the following:
  551.   
  552.   Directory of C:\SYS
  553.  
  554.   ANSI         SYS     4833  8-23-91  6:00a
  555.   VDISK        SYS     5190  8-23-91  6:00a
  556.   
  557.   
  558. REN
  559.  
  560.   Renames a single file on the remote system. The single letter
  561.   abbreviation for this command is R.
  562.   
  563.   You must supply two file names with this command: the original file
  564.   name and the new file name. The new name can specify a different
  565.   directory as part of the name, but not a different drive. For example,
  566.   
  567.      TDRF REN TEST1 \TEST2
  568.   
  569.   renames file TEST1 in the current directory in the remote to TEST2 in
  570.   the root directory. This effectively "moves" the file from one
  571.   directory to another. You can also use this command to simply rename a
  572.   file within a directory, without moving it to another directory.
  573.   
  574.   
  575. MD
  576.  
  577.   Makes a new directory on the remote system. The single letter
  578.   abbreviation for this command is M.
  579.   
  580.   You must supply the name of the directory to be created. If you don't
  581.   supply a directory path as part of the new directory name, the new
  582.   directory will be created in the current directory on the remote
  583.   system. For example,
  584.   
  585.      TDRF MD TEST
  586.   
  587.   creates a directory named TEST in the current directory on the remote
  588.   system.
  589.   
  590.  
  591. RD
  592.  
  593.   Removes an existing directory on the remote system. The single letter
  594.   abbreviation for this command is K.
  595.   
  596.   You must supply the name of the directory to be removed. If you don't
  597.   supply a directory path as part of the new directory name, the
  598.   directory will be removed from the current directory on the remote
  599.   system. For example,
  600.   
  601.      TDRF RD MYDIR
  602.   
  603.   removes a directory named MYDIR from the current directory on the
  604.   remote system.
  605.   
  606.  
  607. CD
  608.  
  609.   Changes to a new directory on the remote system. The single letter
  610.   abbreviation for this command is C.
  611.   
  612.   You must supply the name of the directory to change to. You can also
  613.   supply a new drive to switch to, or even supply a new drive and
  614.   directory all at once. For example,
  615.   
  616.      TDRF CD A:ABC
  617.   
  618.   makes drive A the current drive on the remote system, and switches to
  619.   directory ABC as well.
  620.   
  621.   
  622. TDRF messages
  623. -------------
  624. Following is a list of the messages you might encounter when working with
  625. TDRF:
  626.  
  627. "Can't create file on local system: ___"
  628.   You were copying a file from the remote system using the COPYFROM 
  629.   command, but the file could not be created on the local system. 
  630.   Either the disk is full on the local system, or the file name on the
  631.   remote system is the same as a directory name on the local system.
  632.  
  633. "Can't modify exe file"
  634.   The file name you specified to modify is not a valid copy of the TDRF
  635.   utility. You can only modify a copy of the TDRF utility with the -w
  636.   option.
  637.  
  638. "Can't open exe file to modify"
  639.   The file name you specified to be modified can't be opened. You've
  640.   probably entered an invalid or nonexistent file name.
  641.  
  642. "Error opening file: ___"
  643.   The file you wanted to transfer to the remote system could not be
  644.   opened. You probably specified a nonexistent or invalid file name.
  645.  
  646. "Error writing file: ___"
  647.   An error occurred while writing to a file on the local system, 
  648.   probably because the local disk is full. Try deleting enough 
  649.   files to make room for the file you want to copy from the 
  650.   remote system.
  651.  
  652. "Error writing file ___ on remote system"
  653.   An error occurred while writing a file to the disk on the remote
  654.   system, probably because the remote disk is full. Try deleting
  655.   enough files to make room for the file you want to transfer.
  656.  
  657. "File name is a directory on remote"
  658.   You've tried to copy a file from the local to the remote system, but
  659.   the local file name exists as a directory on the remote system. You'll
  660.   have to rename the file by giving a second argument to the COPY
  661.   command.
  662.  
  663. "Interrupted"
  664.   You've pressed Ctrl-Break while waiting for communications to be
  665.   established with the remote system.
  666.  
  667. "Invalid command: ___"
  668.   You've entered a command that TDRF doesn't recognize. For each
  669.   command, you can use the DOS-style command word or the single-letter
  670.   abbreviation.
  671.  
  672. "Invalid command line option: ___"
  673.   You've given an invalid command-line option when starting TDRF from
  674.   the DOS command line.
  675.  
  676. "Invalid destination disk drive"
  677.   You've specified a nonexistent disk drive letter in your command.
  678.   Remember that the remote system might have a different number of disk
  679.   drives than the local system.
  680.  
  681. "No matching files on remote"
  682.   You've done a DIR command, but either there are no files in the
  683.   directory on the remote system, or no files match the wildcard
  684.   specification that you gave as an argument to the DIR command.
  685.  
  686. "No remote command specified"
  687.   You haven't specified any command on the DOS command line; TDRF has
  688.   nothing to do.
  689.  
  690. "Too few arguments"
  691.   You haven't supplied enough arguments for the command you
  692.   requested. Some commands require an argument, like DEL, MD, 
  693.   CD, RD, and so on.
  694.  
  695. "Too many arguments"
  696.   You've specified too many arguments for the command you requested.
  697.   No command requires more than two arguments, and some require only one.
  698.  
  699. "Wrong version of remote driver"
  700.   You're using incompatible versions of TDRF and TDREMOTE. Make sure
  701.   you're using the latest version of each utility.
  702.  
  703.  
  704. \**************************** END OF FILE ********************************\
  705.