- Timestamp:
- Aug 2, 2017 4:09:49 PM (7 years ago)
- Location:
- trunk
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/doc/manual/en_US/man_VBoxManage-unattended.xml
r68242 r68258 66 66 <arg>--extra-install-kernel-parameters=<replaceable>params</replaceable></arg> 67 67 <arg>--language=<replaceable>lang</replaceable></arg> 68 <arg>--s ession-type=<replaceable>type</replaceable></arg>68 <arg>--start-vm=<replaceable>session-type</replaceable></arg> 69 69 </cmdsynopsis> 70 70 </refsynopsisdiv> … … 184 184 </varlistentry> 185 185 <varlistentry> 186 <term><option>--session-type=<replaceable>type</replaceable></option></term> 187 <listitem> 188 <para>The type of session to start when launching the installation. This is the same as the <option>--type</option> 189 option for the <computeroutput>startvm</computeroutput> command, but we add <computeroutput>none</computeroutput> 190 for indicating that the VM should not be started. (default: <computeroutput>none</computeroutput>)</para></listitem> 186 <term><option>--start-vm=<replaceable>session-type</replaceable></option></term> 187 <listitem> 188 <para>Start the VM using the front end given by <replaceable>session-type</replaceable>. This is the same as 189 the <option>--type</option> option for the <computeroutput>startvm</computeroutput> command, but we have add 190 <computeroutput>none</computeroutput> for indicating that the VM should not be started. 191 (default: <computeroutput>none</computeroutput>)</para></listitem> 191 192 </varlistentry> 192 193 </variablelist> -
trunk/src/VBox/Frontends/VBoxManage/VBoxManageMisc.cpp
r68239 r68258 1419 1419 { "--language", 'L', RTGETOPT_REQ_STRING }, 1420 1420 // start vm related options: 1421 { "--s ession-type",'S', RTGETOPT_REQ_STRING },1421 { "--start-vm", 'S', RTGETOPT_REQ_STRING }, 1422 1422 /** @todo Add a --wait option too for waiting for the VM to shut down or 1423 1423 * something like that...? */ … … 1565 1565 break; 1566 1566 1567 case 'S': // --s ession-type1567 case 'S': // --start-vm 1568 1568 pszSessionType = ValueUnion.psz; 1569 1569 break;
Note:
See TracChangeset
for help on using the changeset viewer.