diff --git a/ExplorerPatcher/dllmain.c b/ExplorerPatcher/dllmain.c index 2c96e072a..ae18d82a3 100644 --- a/ExplorerPatcher/dllmain.c +++ b/ExplorerPatcher/dllmain.c @@ -11506,51 +11506,20 @@ DWORD Inject(BOOL bIsExplorer) ResetEvent(hEvent); }*/ - if (bOldTaskbar) - { - if (IsWindows11()) - { - CreateThread( - 0, - 0, - PlayStartupSound, - 0, - 0, - 0 - ); + if (IsWindows11()) { + if (bOldTaskbar) { + CreateThread(0, 0, PlayStartupSound, 0, 0, 0); printf("Play startup sound thread...\n"); - } - } - - - if (bOldTaskbar) - { - if (IsWindows11()) - { - CreateThread( - 0, - 0, - SignalShellReady, - dwExplorerReadyDelay, - 0, - 0 - ); + CreateThread(0, 0, SignalShellReady, dwExplorerReadyDelay, 0, 0); printf("Signal shell ready...\n"); + } else { + CreateThread(0, 0, FixTaskbarAutohide, 0, 0, 0); + if (!IsWindows11Version22H2Build2361OrHigher()) { + RegDeleteKeyValueW(HKEY_CURRENT_USER, L"Software\\Microsoft\\Windows\\CurrentVersion\\Explorer\\Advanced", L"TaskbarGlomLevel"); + RegDeleteKeyValueW(HKEY_CURRENT_USER, L"Software\\Microsoft\\Windows\\CurrentVersion\\Explorer\\Advanced", L"MMTaskbarGlomLevel"); + } } } - else - { - CreateThread( - 0, - 0, - FixTaskbarAutohide, - 0, - 0, - 0 - ); - RegDeleteKeyValueW(HKEY_CURRENT_USER, L"Software\\Microsoft\\Windows\\CurrentVersion\\Explorer\\Advanced", L"TaskbarGlomLevel"); - RegDeleteKeyValueW(HKEY_CURRENT_USER, L"Software\\Microsoft\\Windows\\CurrentVersion\\Explorer\\Advanced", L"MMTaskbarGlomLevel"); - } if (IsWindows11Version22H2OrHigher() && bOldTaskbar) { diff --git a/ExplorerPatcher/lvt.h b/ExplorerPatcher/lvt.h index 49691b69c..4cd1515a9 100644 --- a/ExplorerPatcher/lvt.h +++ b/ExplorerPatcher/lvt.h @@ -7,6 +7,7 @@ #include #include #include +#include "osutility.h" #define LVT_LOC_NONE 0 #define LVT_LOC_BOTTOMLEFT 1 diff --git a/ExplorerPatcher/osutility.h b/ExplorerPatcher/osutility.h index affc78c85..833b6484c 100644 --- a/ExplorerPatcher/osutility.h +++ b/ExplorerPatcher/osutility.h @@ -87,4 +87,11 @@ inline BOOL IsWindows11Version22H2Build2134OrHigher() if (global_rovi.dwBuildNumber > 22621) return TRUE; return global_rovi.dwBuildNumber == 22621 && global_ubr >= 2134; } + +inline BOOL IsWindows11Version22H2Build2361OrHigher() +{ + if (!global_rovi.dwMajorVersion) global_ubr = VnGetOSVersionAndUBR(&global_rovi); + if (global_rovi.dwBuildNumber > 22621) return TRUE; + return global_rovi.dwBuildNumber == 22621 && global_ubr >= 2361; +} #endif