2.2.4.7 CommandLine

This type describes the structure of the command line and its arguments. It is used as the body element of the Command message (for more information, see section 3.1.4.11).

 <xs:complexType name="CommandLine">
   <xs:sequence>
     <xs:element name="Command"
       type="xs:string"
      />
     <xs:element name="Arguments"
       type="ArgumentType"
       minOccurs="0"
       maxOccurs="unbounded"
      />
   </xs:sequence>
 </xs:complexType>
  

Command: This is a required string that MUST contain the name of the command to be executed without any arguments. The latter are supplied separately, in the Arguments element. The syntax of the command is specific to cmd.exe.

Arguments: If the command requires no arguments, this element can be omitted. If more than one argument is required, multiple elements are included. Each element MUST contain a string value of a single command argument.