Index: /trunk/doc/manual/en_US/man_VBoxManage-unattended.xml
===================================================================
--- /trunk/doc/manual/en_US/man_VBoxManage-unattended.xml	(revision 68257)
+++ /trunk/doc/manual/en_US/man_VBoxManage-unattended.xml	(revision 68258)
@@ -66,5 +66,5 @@
       <arg>--extra-install-kernel-parameters=<replaceable>params</replaceable></arg>
       <arg>--language=<replaceable>lang</replaceable></arg>
-      <arg>--session-type=<replaceable>type</replaceable></arg>
+      <arg>--start-vm=<replaceable>session-type</replaceable></arg>
     </cmdsynopsis>
   </refsynopsisdiv>
@@ -184,9 +184,10 @@
         </varlistentry>
         <varlistentry>
-          <term><option>--session-type=<replaceable>type</replaceable></option></term>
-          <listitem>
-            <para>The type of session to start when launching the installation.  This is the same as the <option>--type</option>
-              option for the <computeroutput>startvm</computeroutput> command, but we add <computeroutput>none</computeroutput>
-              for indicating that the VM should not be started.  (default: <computeroutput>none</computeroutput>)</para></listitem>
+          <term><option>--start-vm=<replaceable>session-type</replaceable></option></term>
+          <listitem>
+            <para>Start the VM using the front end given by <replaceable>session-type</replaceable>. This is the same as
+              the <option>--type</option> option for the <computeroutput>startvm</computeroutput> command, but we have add
+              <computeroutput>none</computeroutput> for indicating that the VM should not be started.
+              (default: <computeroutput>none</computeroutput>)</para></listitem>
         </varlistentry>
       </variablelist>
Index: /trunk/src/VBox/Frontends/VBoxManage/VBoxManageMisc.cpp
===================================================================
--- /trunk/src/VBox/Frontends/VBoxManage/VBoxManageMisc.cpp	(revision 68257)
+++ /trunk/src/VBox/Frontends/VBoxManage/VBoxManageMisc.cpp	(revision 68258)
@@ -1419,5 +1419,5 @@
         { "--language",                         'L', RTGETOPT_REQ_STRING },
         // start vm related options:
-        { "--session-type",                     'S', RTGETOPT_REQ_STRING },
+        { "--start-vm",                         'S', RTGETOPT_REQ_STRING },
         /** @todo Add a --wait option too for waiting for the VM to shut down or
          *        something like that...? */
@@ -1565,5 +1565,5 @@
                 break;
 
-            case 'S':   // --session-type
+            case 'S':   // --start-vm
                 pszSessionType = ValueUnion.psz;
                 break;
