gitextract_7jbw90k9/ ├── .github/ │ ├── ISSUE_TEMPLATE/ │ │ ├── bug_report.yml │ │ └── config.yml │ └── workflows/ │ └── build.yml ├── .gitignore ├── .gitmodules ├── BuildDependenciesDebug.bat ├── BuildDependenciesRelease.bat ├── CHANGELOG.md ├── ExplorerPatcher/ │ ├── ArchiveMenu.c │ ├── ArchiveMenu.h │ ├── ExplorerPatcher.rc │ ├── ExplorerPatcher.vcxproj │ ├── ExplorerPatcher.vcxproj.filters │ ├── HideExplorerSearchBar.c │ ├── HideExplorerSearchBar.h │ ├── ImmersiveColor.h │ ├── ImmersiveFlyouts.c │ ├── ImmersiveFlyouts.h │ ├── InputSwitch.cpp │ ├── InputSwitch.h │ ├── Localization.cpp │ ├── Localization.h │ ├── RefreshedStyles.xbf │ ├── SettingsMonitor.c │ ├── SettingsMonitor.h │ ├── ShellExperienceHostPatches.cpp │ ├── StartMenu.c │ ├── StartMenu.h │ ├── StartMenuSettings.cpp │ ├── StartupSound.cpp │ ├── StartupSound.h │ ├── Taskbar10.cpp │ ├── TaskbarCenter.cpp │ ├── TaskbarCenter.h │ ├── TwinUIPatches.cpp │ ├── def.h │ ├── dllmain.c │ ├── dxgi_imp.cpp │ ├── dxgi_imp.h │ ├── fmemopen.c │ ├── fmemopen.h │ ├── getline.c │ ├── getline.h │ ├── hooking.h │ ├── inc/ │ │ ├── ClassicWinRtForwardDecl.h │ │ ├── ContainerPolicies.h │ │ ├── NativeString.h │ │ ├── PopNoWilResultMacrosLogging.h │ │ ├── PushNoWilResultMacrosLogging.h │ │ ├── RefCountedObject.h │ │ ├── ResultUtils.h │ │ ├── SimpleArray.h │ │ ├── SimpleBoxer.h │ │ └── memsafe.h │ ├── lvt.c │ ├── lvt.h │ ├── osutility.h │ ├── packages.config │ ├── queryversion.h │ ├── resource.h │ ├── symbols.c │ ├── symbols.h │ ├── updates.cpp │ ├── updates.h │ ├── utility.c │ └── utility.h ├── ExplorerPatcher.sln ├── FUNDING.yml ├── LICENSE ├── README.md ├── debug.h ├── ep_extra/ │ ├── README.md │ ├── ep_extra.rc │ ├── ep_extra.vcxproj │ ├── ep_extra.vcxproj.filters │ ├── main.asm │ ├── resource.h │ └── worker.c ├── ep_extra_valinet.win7alttab/ │ ├── README.md │ ├── Resource.rc │ ├── ep_extra_valinet.win7alttab.vcxproj │ ├── ep_extra_valinet.win7alttab.vcxproj.filters │ ├── main.c │ └── resource.h ├── ep_generate_release_description/ │ ├── ep_generate_release_description.c │ ├── ep_generate_release_description.vcxproj │ └── ep_generate_release_description.vcxproj.filters ├── ep_generate_release_name/ │ ├── ep_generate_release_name.c │ ├── ep_generate_release_name.vcxproj │ ├── ep_generate_release_name.vcxproj.filters │ └── resource.h ├── ep_gui/ │ ├── GUI.c │ ├── GUI.h │ ├── dllmain.cpp │ ├── ep_gui.vcxproj │ ├── pch.cpp │ ├── pch.h │ └── resources/ │ ├── EPSettingsResources.h │ ├── EPSharedResources.h │ ├── ep_gui.rc │ ├── lang/ │ │ └── ep_gui.en-US.rc │ ├── resource.h │ ├── settings.reg │ └── settings10.reg ├── ep_setup/ │ ├── ep_setup.c │ ├── ep_setup.vcxproj │ ├── ep_setup.vcxproj.filters │ ├── resources/ │ │ ├── ep_setup.rc │ │ ├── ep_setup_debug.rc │ │ ├── files/ │ │ │ ├── Windows.UI.ShellCommon/ │ │ │ │ ├── Windows.UI.ShellCommon.pri │ │ │ │ └── pris/ │ │ │ │ ├── Windows.UI.ShellCommon.ar-SA.pri │ │ │ │ ├── Windows.UI.ShellCommon.bg-BG.pri │ │ │ │ ├── Windows.UI.ShellCommon.ca-ES.pri │ │ │ │ ├── Windows.UI.ShellCommon.cs-CZ.pri │ │ │ │ ├── Windows.UI.ShellCommon.da-DK.pri │ │ │ │ ├── Windows.UI.ShellCommon.de-DE.pri │ │ │ │ ├── Windows.UI.ShellCommon.el-GR.pri │ │ │ │ ├── Windows.UI.ShellCommon.en-GB.pri │ │ │ │ ├── Windows.UI.ShellCommon.en-US.pri │ │ │ │ ├── Windows.UI.ShellCommon.es-ES.pri │ │ │ │ ├── Windows.UI.ShellCommon.es-MX.pri │ │ │ │ ├── Windows.UI.ShellCommon.et-EE.pri │ │ │ │ ├── Windows.UI.ShellCommon.eu-ES.pri │ │ │ │ ├── Windows.UI.ShellCommon.fi-FI.pri │ │ │ │ ├── Windows.UI.ShellCommon.fr-CA.pri │ │ │ │ ├── Windows.UI.ShellCommon.fr-FR.pri │ │ │ │ ├── Windows.UI.ShellCommon.gl-ES.pri │ │ │ │ ├── Windows.UI.ShellCommon.he-IL.pri │ │ │ │ ├── Windows.UI.ShellCommon.hr-HR.pri │ │ │ │ ├── Windows.UI.ShellCommon.hu-HU.pri │ │ │ │ ├── Windows.UI.ShellCommon.id-ID.pri │ │ │ │ ├── Windows.UI.ShellCommon.it-IT.pri │ │ │ │ ├── Windows.UI.ShellCommon.ja-JP.pri │ │ │ │ ├── Windows.UI.ShellCommon.ko-KR.pri │ │ │ │ ├── Windows.UI.ShellCommon.lt-LT.pri │ │ │ │ ├── Windows.UI.ShellCommon.lv-LV.pri │ │ │ │ ├── Windows.UI.ShellCommon.nb-NO.pri │ │ │ │ ├── Windows.UI.ShellCommon.nl-NL.pri │ │ │ │ ├── Windows.UI.ShellCommon.pl-PL.pri │ │ │ │ ├── Windows.UI.ShellCommon.pt-BR.pri │ │ │ │ ├── Windows.UI.ShellCommon.pt-PT.pri │ │ │ │ ├── Windows.UI.ShellCommon.ro-RO.pri │ │ │ │ ├── Windows.UI.ShellCommon.ru-RU.pri │ │ │ │ ├── Windows.UI.ShellCommon.sk-SK.pri │ │ │ │ ├── Windows.UI.ShellCommon.sl-SI.pri │ │ │ │ ├── Windows.UI.ShellCommon.sr-Latn-RS.pri │ │ │ │ ├── Windows.UI.ShellCommon.sv-SE.pri │ │ │ │ ├── Windows.UI.ShellCommon.th-TH.pri │ │ │ │ ├── Windows.UI.ShellCommon.tr-TR.pri │ │ │ │ ├── Windows.UI.ShellCommon.uk-UA.pri │ │ │ │ ├── Windows.UI.ShellCommon.vi-VN.pri │ │ │ │ ├── Windows.UI.ShellCommon.zh-CN.pri │ │ │ │ └── Windows.UI.ShellCommon.zh-TW.pri │ │ │ └── pnidui/ │ │ │ ├── ar-SA/ │ │ │ │ └── pnidui.dll.mui │ │ │ ├── bg-BG/ │ │ │ │ └── pnidui.dll.mui │ │ │ ├── ca-ES/ │ │ │ │ └── pnidui.dll.mui │ │ │ ├── cs-CZ/ │ │ │ │ └── pnidui.dll.mui │ │ │ ├── da-DK/ │ │ │ │ └── pnidui.dll.mui │ │ │ ├── de-DE/ │ │ │ │ └── pnidui.dll.mui │ │ │ ├── el-GR/ │ │ │ │ └── pnidui.dll.mui │ │ │ ├── en-GB/ │ │ │ │ └── pnidui.dll.mui │ │ │ ├── en-US/ │ │ │ │ └── pnidui.dll.mui │ │ │ ├── es-ES/ │ │ │ │ └── pnidui.dll.mui │ │ │ ├── es-MX/ │ │ │ │ └── pnidui.dll.mui │ │ │ ├── et-EE/ │ │ │ │ └── pnidui.dll.mui │ │ │ ├── eu-ES/ │ │ │ │ └── pnidui.dll.mui │ │ │ ├── fi-FI/ │ │ │ │ └── pnidui.dll.mui │ │ │ ├── fr-CA/ │ │ │ │ └── pnidui.dll.mui │ │ │ ├── fr-FR/ │ │ │ │ └── pnidui.dll.mui │ │ │ ├── gl-ES/ │ │ │ │ └── pnidui.dll.mui │ │ │ ├── he-IL/ │ │ │ │ └── pnidui.dll.mui │ │ │ ├── hr-HR/ │ │ │ │ └── pnidui.dll.mui │ │ │ ├── hu-HU/ │ │ │ │ └── pnidui.dll.mui │ │ │ ├── id-ID/ │ │ │ │ └── pnidui.dll.mui │ │ │ ├── it-IT/ │ │ │ │ └── pnidui.dll.mui │ │ │ ├── ja-JP/ │ │ │ │ └── pnidui.dll.mui │ │ │ ├── ko-KR/ │ │ │ │ └── pnidui.dll.mui │ │ │ ├── lt-LT/ │ │ │ │ └── pnidui.dll.mui │ │ │ ├── lv-LV/ │ │ │ │ └── pnidui.dll.mui │ │ │ ├── nb-NO/ │ │ │ │ └── pnidui.dll.mui │ │ │ ├── nl-NL/ │ │ │ │ └── pnidui.dll.mui │ │ │ ├── pl-PL/ │ │ │ │ └── pnidui.dll.mui │ │ │ ├── pt-BR/ │ │ │ │ └── pnidui.dll.mui │ │ │ ├── pt-PT/ │ │ │ │ └── pnidui.dll.mui │ │ │ ├── ro-RO/ │ │ │ │ └── pnidui.dll.mui │ │ │ ├── ru-RU/ │ │ │ │ └── pnidui.dll.mui │ │ │ ├── sk-SK/ │ │ │ │ └── pnidui.dll.mui │ │ │ ├── sl-SI/ │ │ │ │ └── pnidui.dll.mui │ │ │ ├── sr-Latn-RS/ │ │ │ │ └── pnidui.dll.mui │ │ │ ├── sv-SE/ │ │ │ │ └── pnidui.dll.mui │ │ │ ├── th-TH/ │ │ │ │ └── pnidui.dll.mui │ │ │ ├── tr-TR/ │ │ │ │ └── pnidui.dll.mui │ │ │ ├── uk-UA/ │ │ │ │ └── pnidui.dll.mui │ │ │ ├── vi-VN/ │ │ │ │ └── pnidui.dll.mui │ │ │ ├── zh-CN/ │ │ │ │ └── pnidui.dll.mui │ │ │ └── zh-TW/ │ │ │ └── pnidui.dll.mui │ │ ├── lang/ │ │ │ └── ep_setup.en-US.rc │ │ └── resource.h │ ├── rijndael-alg-fst.c │ └── rijndael-alg-fst.h ├── ep_setup_patch/ │ ├── ep_setup_patch.c │ ├── ep_setup_patch.vcxproj │ └── ep_setup_patch.vcxproj.filters ├── ep_startmenu/ │ ├── ep_sm_forwards.h │ ├── ep_sm_main.c │ ├── ep_sm_main_cpp.cpp │ ├── ep_startmenu.vcxproj │ └── ep_startmenu.vcxproj.filters ├── ep_weather_host/ │ ├── ep_weather.c │ ├── ep_weather.h │ ├── ep_weather_error_html.h │ ├── ep_weather_factory.c │ ├── ep_weather_factory.h │ ├── ep_weather_host.c │ ├── ep_weather_host.h │ ├── ep_weather_host.rc │ ├── ep_weather_host.vcxproj │ ├── ep_weather_host.vcxproj.filters │ ├── ep_weather_provider_google_html.h │ ├── ep_weather_provider_google_script.h │ ├── ep_weather_utility.h │ ├── packages.config │ └── resource.h ├── ep_weather_host_stub/ │ ├── ep_weather_host.idl │ ├── ep_weather_host_stub.def │ ├── ep_weather_host_stub.vcxproj │ └── ep_weather_host_stub.vcxproj.filters └── version.h