Browse Source

Taskbar10: Disable the 42537950 feature flag that is present on Canary builds

pull/2661/head
Amrsatrio 2 years ago
parent
commit
bff76da2bf
  1. 9
      ExplorerPatcher/dllmain.c

9
ExplorerPatcher/dllmain.c

@ -9769,6 +9769,15 @@ int RtlQueryFeatureConfigurationHook(UINT32 featureId, int sectionType, INT64* c
} }
break; break;
} }
case 42537950: // DisableWin10Taskbar
{
if (bOldTaskbar)
{
// Sorry Microsoft, but we need more time. Peace ✌
buffer->enabledState = FEATURE_ENABLED_STATE_DISABLED;
}
break;
}
#if 0 #if 0
case 42952021: // CategorySpecificXamlExtensions case 42952021: // CategorySpecificXamlExtensions
{ {

Loading…
Cancel
Save