--- title: "Taskbar Task View Icon" description: "" --- ```json {filename="config/tweaks.json",linenos=inline,linenostart=1796} "WPFToggleTaskView": { "Content": "Taskbar Task View Icon", "Description": "Toggles the Task View Button in the Taskbar.", "category": "Customize Preferences", "panel": "2", "Type": "Toggle", "registry": [ { "Path": "HKCU:\\Software\\Microsoft\\Windows\\CurrentVersion\\Explorer\\Advanced", "Name": "ShowTaskViewButton", "Value": "1", "Type": "DWord", "OriginalValue": "0", "DefaultState": "true" } ], ``` ## Registry Changes Applications and System Components store and retrieve configuration data to modify Windows settings, so we can use the registry to change many settings in one place. You can find information about the registry on [Wikipedia](https://en.wikipedia.org/wiki/Windows_Registry) and [Microsoft's Website](https://learn.microsoft.com/en-us/windows/win32/sysinfo/registry).