Leaked source code of windows server 2003
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

29 lines
1.5 KiB

  1. ; Command.com initialization messages.
  2. ;
  3. ; See resmsg.equ for macro definition.
  4. msg BadVerMsg, <"Incorrect DOS version",CR,LF>
  5. msg OutEnvMsg, <"Out of environment space",CR,LF>
  6. msg CopyrightMsg,<"Microsoft(R) Windows DOS",CR,LF,"(C)Copyright Microsoft Corp 1990-2001.",CR,LF>
  7. msg BadComLkMsg, <"Specified COMMAND search directory bad",CR,LF>
  8. msg BadComAccMsg,<"Specified COMMAND search directory bad access denied",CR,LF>
  9. msg Help1Msg <"Starts a new instance of the MS-DOS command interpreter.",CR,LF,CR,LF>
  10. msg Help2Msg <"COMMAND [[drive:]path] [device] [/E:nnnnn] [/P] [/C string] [/MSG]",CR,LF,CR,LF>
  11. msg Help3Msg <" [drive:]path Specifies the directory containing COMMAND.COM file.",CR,LF>
  12. msg Help4Msg <" device Specifies the device to use for command input and output.",CR,LF>
  13. msg Help5Msg <" /E:nnnnn Sets the initial environment size to nnnnn bytes.",CR,LF>
  14. msg Help6Msg <" /P Makes the new command interpreter permanent (can't exit).",CR,LF>
  15. msg Help7Msg <" /C string Carries out the command specified by string, and then stops.",CR,LF>
  16. msg Help8Msg <" /MSG Specifies that all error messages be stored in memory. You",CR,LF>
  17. msg Help9Msg <" need to specify /P with this switch.",CR,LF>
  18. HelpMsgs dw RESGROUP:Help1Msg,RESGROUP:Help2Msg
  19. dw RESGROUP:Help3Msg,RESGROUP:Help4Msg
  20. dw RESGROUP:Help5Msg,RESGROUP:Help6Msg
  21. dw RESGROUP:Help7Msg,RESGROUP:Help8Msg
  22. dw RESGROUP:Help9Msg,0
  23. public HelpMsgs
  24. 
  25.