Index: /trunk/src/VBox/Main/src-client/ConsoleImpl.cpp
===================================================================
--- /trunk/src/VBox/Main/src-client/ConsoleImpl.cpp	(revision 61535)
+++ /trunk/src/VBox/Main/src-client/ConsoleImpl.cpp	(revision 61536)
@@ -5224,6 +5224,8 @@
                             mConsoleVRDPServer->Stop();
 
-                            if (RT_FAILURE(mConsoleVRDPServer->Launch()))
-                                rc = E_FAIL;
+                            int vrc = mConsoleVRDPServer->Launch();
+                            if (RT_FAILURE(vrc))
+                                rc = setError(E_FAIL,
+                                              tr("Could not start the VRDP server (%Rrc)"), vrc);
                             else
                                 mConsoleVRDPServer->EnableConnections();
