Index: /trunk/src/VBox/Frontends/VBoxManage/VBoxManage.cpp
===================================================================
--- /trunk/src/VBox/Frontends/VBoxManage/VBoxManage.cpp	(revision 37096)
+++ /trunk/src/VBox/Frontends/VBoxManage/VBoxManage.cpp	(revision 37097)
@@ -49,5 +49,5 @@
 *   Global Variables                                                           *
 *******************************************************************************/
-/*extern*/ bool         g_fDetailedProgress = false;
+/*extern*/ bool         g_fDetailedProgress = true;
 
 #ifndef VBOX_ONLY_DOCS
@@ -152,5 +152,5 @@
                 progress->COMGETTER(TimeRemaining)(&lSecsRem);
 
-                RTStrmPrintf(g_pStdErr, "(%ld/%ld) %ls %ld%% => %ld%% (%d s remaining)\n", ulOperation + 1, cOperations, bstrOperationDescription.raw(), ulCurrentOperationPercent, ulCurrentPercent, lSecsRem);
+                RTStrmPrintf(g_pStdErr, "(%u/%u) %ls %02u%% => %02u%% (%d s remaining)\n", ulOperation + 1, cOperations, bstrOperationDescription.raw(), ulCurrentOperationPercent, ulCurrentPercent, lSecsRem);
                 ulLastPercent = ulCurrentPercent;
                 ulLastOperationPercent = ulCurrentOperationPercent;
@@ -167,5 +167,5 @@
                     if (curVal < 100)
                     {
-                        RTStrmPrintf(g_pStdErr, "%ld%%...", curVal);
+                        RTStrmPrintf(g_pStdErr, "%u%%...", curVal);
                         RTStrmFlush(g_pStdErr);
                     }
