Skip to content

Tweaks Appearance Explorer Taskbar

Claude edited this page Jun 24, 2026 · 1 revision

Tweaks: Appearance, Explorer & Taskbar · 外觀、檔案總管與工作列

This page documents three of WinForge's tweak catalogues: Appearance · 外觀, File Explorer · 檔案總管, and Taskbar & Start · 工作列同開始功能表. Every entry below is a real TweakDefinition from the catalogue source, rendered in-app as a reusable TweakCard, and each one writes a genuine Windows 11 registry value or runs a real shell command. No placeholders — toggling a card actually changes the live system.

呢一頁收錄咗 WinForge 三個調校類別:外觀、檔案總管、工作列同開始功能表。每一項都係真實嘅 Windows 11 登錄檔數值或者 shell 指令,撳一下就真係改到系統。

Appearance tweaks category in WinForge

Safety · 安全 A few entries here write to HKCU keys that affect the shell and may trigger an automatic restart of explorer.exe, sign-out prompts, or reveal protected system files. The Classic right-click menu tweak deletes a Software\Classes\CLSID sub-key tree, and Restart File Explorer kills explorer.exe outright. None of these are destructive to your data, but expect the desktop/taskbar to flicker as the shell reloads. 部分項目會自動重啟 explorer.exe 或者要登出先生效,亦有項目會顯示受保護嘅系統檔案 — 請小心。


How these tweaks work · 運作原理

Each catalogue is a static class exposing All(), which returns a list of TweakDefinition objects. The builders used across these three pages are:

Builder · 建構器 Behaviour · 行為
Tweak.RegToggle A simple on/off switch backed by one registry value (onValue / offValue).
Tweak.RegChoice A multi-option picker writing one of several discrete registry values.
Tweak.CustomToggle A toggle with hand-written getIsOn / setIsOn logic (multiple keys, side-effects).
Tweak.Shell / Tweak.Cmd An action button that launches a process or runs a shell command.

Most cards carry a restart: scope. The two values seen here are:

  • RestartScope.Explorer — WinForge restarts the Explorer shell so the change is visible immediately.
  • RestartScope.SignOut — the change needs a sign-out/sign-in to apply (used for Control Panel\Desktop animation values).

For the bigger picture of categories, search, and how TweakCard renders these definitions, see Windows-Tweaks-Overview. For the privacy/performance/network counterparts, see Tweaks-Privacy-Performance-Network.


1 · Appearance · 外觀

Source: Catalog/AppearanceTweaks.cs. Two shared key constants are used throughout:

  • Advanced = HKCU\Software\Microsoft\Windows\CurrentVersion\Explorer\Advanced
  • Personalize = HKCU\Software\Microsoft\Windows\CurrentVersion\Themes\Personalize

Toggles · 開關

Tweak · 名稱 What it does · 作用 Key / value · 登錄檔
Dark mode · 深色模式 Uses the dark theme for both apps and the Windows shell. A CustomToggle — when on it writes 0 to two values; light is 1. …\Themes\PersonalizeAppsUseLightTheme and SystemUsesLightTheme (DWord). Restart: Explorer.
Transparency effects · 透明效果 Enables the translucent acrylic look on Start, taskbar and surfaces. …\Themes\PersonalizeEnableTransparency (1/0). Restart: Explorer.
Accent colour on Start & taskbar · 開始與工作列顯示主題色 Tints Start menu and taskbar with your accent colour. …\Themes\PersonalizeColorPrevalence (1/0). Restart: Explorer.
Accent colour on title bars & borders · 標題列與邊框顯示主題色 Shows the accent colour on window title bars and borders. HKCU\Software\Microsoft\Windows\DWMColorPrevalence (1/0).
Show seconds in clock · 時鐘顯示秒數 Displays seconds on the taskbar clock. …\Explorer\AdvancedShowSecondsInSystemClock (1/0). Restart: Explorer.
Taskbar animations · 工作列動畫 Animates taskbar buttons and previews. …\Explorer\AdvancedTaskbarAnimations (1/0). Restart: Explorer.
Window min/max animations · 視窗縮放動畫 Animates windows when minimising/maximising. Stored as a string value. HKCU\Control Panel\Desktop\WindowMetricsMinAnimate ("1"/"0", REG_SZ). Restart: SignOut.
Snap layout flyout on hover · 懸停顯示貼齊版面 Shows the snap layouts flyout when hovering the maximise button. …\Explorer\AdvancedEnableSnapAssistFlyout (1/0).
Translucent selection rectangle · 半透明選取框 Uses the translucent rubber-band selection box in File Explorer. …\Explorer\AdvancedListviewAlphaSelect (1/0). Restart: Explorer.
Drop shadows for icon labels · 圖示標籤陰影 Adds drop shadows behind desktop icon text. …\Explorer\AdvancedListviewShadow (1/0). Restart: Explorer.
Show window contents while dragging · 拖曳時顯示視窗內容 Shows the whole window (not just an outline) while dragging. String value. HKCU\Control Panel\DesktopDragFullWindows ("1"/"0", REG_SZ). Restart: SignOut.
Disable wallpaper JPEG compression · 停用桌布 JPEG 壓縮 Sets import quality to 100 so Windows stops recompressing JPG wallpapers, then re-applies the current wallpaper so it takes effect immediately. A CustomToggle that deletes the value when turned off. HKCU\Control Panel\DesktopJPEGImportQuality = 100 (DWord). Side-effect: WallpaperHelper.ReapplyCurrentWallpaper().

Choices · 選項

Tweak · 名稱 Options · 選項 Key · 登錄檔
Start menu layout · 開始功能表版面 Default · 預設 (0); More pins · 更多釘選 (1); More recommendations · 更多建議 (2) …\Explorer\AdvancedStart_Layout (DWord). Restart: Explorer.
Combine taskbar buttons · 合併工作列按鈕 Always combine, hide labels · 永遠合併、收埋標籤 (0); Combine when taskbar is full · 工作列滿先合併 (1); Never combine · 永遠唔合併 (2) …\Explorer\AdvancedTaskbarGlomLevel (DWord). Restart: Explorer.

Actions · 動作

Tweak · 名稱 What it does · 作用 Command · 指令
Open colour settings · 開啟色彩設定 Launches the Windows Personalisation → Colours settings page. explorer.exe ms-settings:colors

Note · 注意 — The "Combine taskbar buttons" tweak appears in both the Appearance and Taskbar catalogues (same TaskbarGlomLevel value, slightly different labels). They are independent cards but write the identical registry value.


2 · File Explorer · 檔案總管

File Explorer tweaks in WinForge

Source: Catalog/ExplorerTweaks.cs. Three shared key constants:

  • ADV = HKCU\Software\Microsoft\Windows\CurrentVersion\Explorer\Advanced
  • EXPLORER = HKCU\Software\Microsoft\Windows\CurrentVersion\Explorer
  • CABINET = HKCU\Software\Microsoft\Windows\CurrentVersion\Explorer\CabinetState

Toggles · 開關

Tweak · 名稱 What it does · 作用 Key / value · 登錄檔
Show file extensions · 顯示副檔名 Always show file name extensions. Note the inverted value: on = 0. ADVHideFileExt (on 0 / off 1). Restart: Explorer.
Show hidden files · 顯示隱藏檔案 Displays files/folders marked hidden. ADVHidden (on 1 / off 2). Restart: Explorer.
Show protected OS files · 顯示受保護系統檔案 Reveals protected operating-system files (advanced). ADVShowSuperHidden (1/0). Restart: Explorer.
Full path in title bar · 標題列顯示完整路徑 Shows the complete folder path in the address title bar. CABINETFullPath (1/0). Restart: Explorer.
Show recent files in Quick Access · 快速存取顯示最近檔案 Lists recently used files under Quick Access / Home. EXPLORERShowRecent (1/0). Restart: Explorer.
Show frequent folders · 顯示常用資料夾 Lists frequently used folders under Quick Access / Home. EXPLORERShowFrequent (1/0). Restart: Explorer.
Expand to current folder · 導覽窗格展開至目前資料夾 Auto-expands the navigation pane to the open folder. ADVNavPaneExpandToCurrentFolder (1/0). Restart: Explorer.
Item check boxes · 項目核取方塊 Shows selection check boxes on files and folders. ADVAutoCheckSelect (1/0). Restart: Explorer.
Confirm delete dialog · 刪除確認對話框 Asks for confirmation before sending files to the Recycle Bin. ADVConfirmFileDelete (1/0). Restart: Explorer.
Launch folder windows in a separate process · 資料夾視窗用獨立程序開啟 Opens each Explorer window in its own process for stability. ADVSeparateProcess (1/0). Restart: Explorer.

Choices · 選項

Tweak · 名稱 Options · 選項 Key · 登錄檔
Open File Explorer to · 檔案總管開啟到 This PC · 本機 (1); Home · 首頁 (2) ADVLaunchTo (DWord). Restart: Explorer.

Custom toggle & actions · 自訂開關同動作

Tweak · 名稱 What it does · 作用 Key / command · 登錄檔/指令
Classic right-click menu · 經典右鍵選單 Restores the full Windows 10–style context menu. CustomToggle: "on" detected by key existence; turning off deletes the whole sub-key tree. On: create HKCU\Software\Classes\CLSID\{86ca1aa0-34aa-4e8b-a509-50c905bae2a2}\InprocServer32 (default = ""). Off: DeleteSubKeyTree of the CLSID. Restart: Explorer.
Restart File Explorer · 重新啟動檔案總管 Restarts the Explorer shell to apply changes. taskkill /f /im explorer.exe & start explorer.exe. Restart: Explorer.
Open Folder Options · 開啟資料夾選項 Opens the classic Folder Options dialog. rundll32.exe shell32.dll,Options_RunDLL 0

Safety · 安全Show protected OS files exposes system files that are hidden for a reason; renaming or deleting them can break Windows. The Classic right-click menu toggle removes a registry sub-key tree under Software\Classes\CLSID; this is the well-known Windows 11 context-menu fix and is safe, but it does require an Explorer restart to take hold.


3 · Taskbar & Start · 工作列同開始功能表

Taskbar tweaks in WinForge

Source: Catalog/TaskbarTweaks.cs. Shared constant:

  • ADV = HKCU\Software\Microsoft\Windows\CurrentVersion\Explorer\Advanced

Choices · 選項

Tweak · 名稱 Options · 選項 Key · 登錄檔
Taskbar alignment · 工作列對齊 Left · 靠左 (0); Center · 置中 (1) ADVTaskbarAl (DWord). Restart: Explorer.
Search on taskbar · 工作列搜尋 Hidden · 隱藏 (0); Icon only · 只顯示圖示 (1); Search box · 搜尋框 (2); Icon and label · 圖示同標籤 (3) HKCU\Software\Microsoft\Windows\CurrentVersion\SearchSearchboxTaskbarMode (DWord). Restart: Explorer.
Combine taskbar buttons · 合併工作列按鈕 Always combine · 永遠合併 (0); When taskbar is full · 工作列滿先合併 (1); Never · 永不合併 (2) ADVTaskbarGlomLevel (DWord). Restart: Explorer.

Toggles · 開關

Tweak · 名稱 What it does · 作用 Key / value · 登錄檔
Show Task View button · 顯示工作檢視按鈕 Shows the Task View button on the taskbar. ADVShowTaskViewButton (1/0). Restart: Explorer.
Show Widgets button · 顯示小工具按鈕 Shows the Widgets (news and interests) button. ADVTaskbarDa (1/0). Restart: Explorer.
Show Chat/Copilot button · 顯示聊天/Copilot 按鈕 Shows the Chat (Copilot) button on the taskbar. ADVTaskbarMn (1/0). Restart: Explorer.
Show "End Task" on right-click · 右鍵顯示「結束工作」 Adds End Task to the taskbar right-click menu. HKCU\Software\Microsoft\Windows\CurrentVersion\TaskbarDeveloperSettingsTaskbarEndTask (1/0). Restart: Explorer.
Show most used apps in Start · 開始功能表顯示最常用程式 Lists your most-used apps in the Start menu. ADVStart_TrackProgs (1/0). Restart: Explorer.
Show recently added apps in Start · 開始功能表顯示最近新增程式 Shows newly installed apps in the Start menu. ADVStart_TrackDocs (1/0). Restart: Explorer.
Show tips and recommendations in Start · 開始功能表顯示提示同建議 Shows tips, shortcuts and app recommendations in Start. ADVStart_IrisRecommendations (1/0). Restart: Explorer.
Show seconds in system clock · 系統時鐘顯示秒數 Displays seconds on the taskbar clock (uses more power). ADVShowSecondsInSystemClock (1/0). Restart: Explorer.
Show all system tray icons · 顯示所有系統匣圖示 Shows every icon in the notification overflow area. Inverted value: on = 0. HKCU\Software\Microsoft\Windows\CurrentVersion\ExplorerEnableAutoTray (on 0 / off 1). Restart: Explorer.
Show taskbar on all displays · 所有螢幕顯示工作列 Shows the taskbar on every connected monitor. ADVMMTaskbarEnabled (1/0). Restart: Explorer.

Actions · 動作

Tweak · 名稱 What it does · 作用 Command · 指令
Open Taskbar settings · 開啟工作列設定 Opens the Windows taskbar settings page. start ms-settings:taskbar

Quirks worth knowing · 值得留意嘅地方

  • Inverted toggles · 反轉嘅開關 — Some "show X" switches are backed by a "hide X" value, so on-state is 0: HideFileExt (Show file extensions), EnableAutoTray (Show all system tray icons). The catalogue handles this by setting onValue/offValue explicitly.
  • String vs DWord · 字串對 DWord — The animation tweaks under Control Panel\Desktop (MinAnimate, DragFullWindows) store "1"/"0" as REG_SZ strings, not DWords. WinForge passes kind: RegistryValueKind.String.
  • Three-value hidden state · 三態隱藏值Show hidden files uses Windows' native scheme where on = 1 but off = 2 (not 0).
  • Side-effecting toggles · 有副作用嘅開關Dark mode writes two values at once; Disable wallpaper JPEG compression re-applies the desktop wallpaper via WallpaperHelper.ReapplyCurrentWallpaper(); Classic right-click menu manipulates an entire CLSID sub-key tree.
  • Duplicate TaskbarGlomLevel — "Combine taskbar buttons" exists in both the Appearance and Taskbar catalogues; both write the same …\Explorer\Advanced\TaskbarGlomLevel.

Related pages · 相關頁面


Part of Home · WinForge wiki.

Clone this wiki locally