Index: /trunk/doc/manual/en_US/man_VBoxManage-unattended.xml
===================================================================
--- /trunk/doc/manual/en_US/man_VBoxManage-unattended.xml	(revision 68212)
+++ /trunk/doc/manual/en_US/man_VBoxManage-unattended.xml	(revision 68213)
@@ -187,5 +187,5 @@
             <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>headless</computeroutput>)</para></listitem>
+              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 68212)
+++ /trunk/src/VBox/Frontends/VBoxManage/VBoxManageMisc.cpp	(revision 68213)
@@ -1378,5 +1378,5 @@
     ComPtr<IMachine>    ptrMachine;
     bool                fDryRun = false;
-    const char         *pszSessionType = "headless";
+    const char         *pszSessionType = "none";
 
     /*
@@ -1413,4 +1413,6 @@
         // start vm related options:
         { "--session-type",                     'S', RTGETOPT_REQ_STRING },
+        /** @todo Add a --wait option too for waiting for the VM to shut down or
+         *        something like that...? */
     };
 
@@ -1692,5 +1694,9 @@
     if (   fDryRun
         || RTStrICmp(pszSessionType, "none") == 0)
+    {
+        if (!fDryRun)
+            RTMsgInfo("VM '%ls' (%ls) is ready to be started (e.g. VBoxManage startvm).\n", bstrMachineName.raw(), bstrUuid.raw());
         hrc = S_OK;
+    }
     else
     {
@@ -1711,5 +1717,5 @@
         if (SUCCEEDED(hrc) && !ptrProgress.isNull())
         {
-            RTMsgInfo("Waiting for VM \"%s\" to power on...\n", Utf8Str(bstrUuid).c_str());
+            RTMsgInfo("Waiting for VM '%ls' to power on...\n", bstrMachineName.raw());
             CHECK_ERROR2(hrc, ptrProgress, WaitForCompletion(-1));
             if (SUCCEEDED(hrc))
@@ -1726,5 +1732,5 @@
                     {
                         if (SUCCEEDED(iRc))
-                            RTMsgInfo("VM \"%s\" has been successfully started.\n", Utf8Str(bstrUuid).c_str());
+                            RTMsgInfo("VM '%ls' (%ls) has been successfully started.\n", bstrMachineName.raw(), bstrUuid.raw());
                         else
                         {
