Index: /trunk/src/VBox/Main/src-client/ConsoleImpl2.cpp
===================================================================
--- /trunk/src/VBox/Main/src-client/ConsoleImpl2.cpp	(revision 60742)
+++ /trunk/src/VBox/Main/src-client/ConsoleImpl2.cpp	(revision 60743)
@@ -1187,14 +1187,17 @@
                     com::Utf8Str strVal;
                     uPos = strDebugOptions.parseKeyValue(strKey, strVal, uPos);
-                    if (   strKey == "enabled"
-                        && strVal.toUInt32() == 1)
+                    if (strKey == "enabled")
                     {
-                        /* Apply defaults.
-                           The defaults are documented in the user manual,
-                           changes need to be reflected accordingly. */
-                        fGimHvDebug       = true;
-                        strGimHvVendor    = "Microsoft Hv";
-                        fGimHvVsIf        = true;
-                        fGimHvHypercallIf = false;
+                        if (strVal.toUInt32() == 1)
+                        {
+                            /* Apply defaults.
+                               The defaults are documented in the user manual,
+                               changes need to be reflected accordingly. */
+                            fGimHvDebug       = true;
+                            strGimHvVendor    = "Microsoft Hv";
+                            fGimHvVsIf        = true;
+                            fGimHvHypercallIf = false;
+                        }
+                        /* else: ignore, i.e. don't assert below with 'enabled=0'. */
                     }
                     else if (strKey == "address")
@@ -3558,5 +3561,5 @@
             hrc = ptrMachine->COMGETTER(Accelerate3DEnabled)(&f3DEnabled);                  H();
             InsertConfigInteger(pCfg, "VMSVGA3dEnabled", f3DEnabled);
-#else  
+#else
             LogRel(("VMSVGA3d not available in this build!\n"));
 #endif
