diff --git a/scripts/msvc-canary.qs b/scripts/msvc-canary.qs index 2437d83..7468fa4 100644 --- a/scripts/msvc-canary.qs +++ b/scripts/msvc-canary.qs @@ -2,6 +2,7 @@ function Component() { if (systemInfo.kernelType === "winnt") { component.setValue("Virtual", "true"); // Hidden by default component.setValue("Default", "false"); // bleeding + component.setValue("Enabled", "false"); } else { component.setValue("Virtual", "true"); component.setValue("Enabled", "false"); diff --git a/scripts/msvc-nightly.qs b/scripts/msvc-nightly.qs index 4d8fe39..42e8594 100644 --- a/scripts/msvc-nightly.qs +++ b/scripts/msvc-nightly.qs @@ -1,7 +1,8 @@ function Component() { if (systemInfo.kernelType === "winnt") { - component.setValue("Virtual", "true"); + component.setValue("Virtual", "true"); // Hidden by default component.setValue("Default", "false"); // msvc + component.setValue("Enabled", "false"); } else { component.setValue("Virtual", "true"); component.setValue("Enabled", "false");