From 1edb9894066f72567742bd0987aa7f060cc29af0 Mon Sep 17 00:00:00 2001 From: Amrsatrio Date: Wed, 29 Jan 2025 19:47:51 +0700 Subject: [PATCH] Taskbar10: Allow loading ep_taskbar.0.dll on all major Windows 10 versions --- ExplorerPatcher/utility.h | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/ExplorerPatcher/utility.h b/ExplorerPatcher/utility.h index 5a9af49..cd94b48 100644 --- a/ExplorerPatcher/utility.h +++ b/ExplorerPatcher/utility.h @@ -948,7 +948,12 @@ inline const WCHAR* PickTaskbarDll() { DWORD b = global_rovi.dwBuildNumber; - if (b >= 19041 && b <= 19045) // Windows 10 20H2, 21H2, 22H2 + if (b == 15063 // Windows 10 1703 + || b == 16299 // Windows 10 1709 + || b == 17134 // Windows 10 1803 + || b == 17763 // Windows 10 1809 + || b >= 18362 && b <= 18363 // Windows 10 1903, 1909 + || b >= 19041 && b <= 19045) // Windows 10 20H2, 21H2, 22H2 { return L"ep_taskbar.0.dll"; }