Index: /trunk/src/VBox/Frontends/VBoxManage/VBoxManageGuestCtrl.cpp
===================================================================
--- /trunk/src/VBox/Frontends/VBoxManage/VBoxManageGuestCtrl.cpp	(revision 29785)
+++ /trunk/src/VBox/Frontends/VBoxManage/VBoxManageGuestCtrl.cpp	(revision 29786)
@@ -449,8 +449,10 @@
                 }
 
-                if (fCanceled && fVerbose)
-                    RTPrintf("Process execution canceled!\n");
-
-                if (fCompleted)
+                if (fCanceled)
+                {
+                    if (fVerbose)
+                        RTPrintf("Process execution canceled!\n");
+                }
+                else if (fCompleted)
                 {
                     LONG iRc = false;
@@ -471,4 +473,9 @@
                         RTPrintf("Exit code=%u (Status=%u [%s], Flags=%u)\n", uRetExitCode, uRetStatus, getStatus(uRetStatus), uRetFlags);
                     }
+                }
+                else /* If neither canceled nor completed we got a hard abort (shouldn't happen). */
+                {
+                    if (fVerbose)
+                        RTPrintf("Process execution aborted!\n");
                 }
             }
