mirror of
https://github.com/ChrisTitusTech/winutil
synced 2026-04-06 06:38:31 +00:00
30 lines
1016 B
Markdown
30 lines
1016 B
Markdown
---
|
|
title: "Search Button in Taskbar"
|
|
description: ""
|
|
---
|
|
|
|
```json {filename="config/tweaks.json",linenos=inline,linenostart=2517}
|
|
"WPFToggleTaskbarSearch": {
|
|
"Content": "Search Button in Taskbar",
|
|
"Description": "If enabled, Search Button will be on the Taskbar.",
|
|
"category": "Customize Preferences",
|
|
"panel": "2",
|
|
"Type": "Toggle",
|
|
"registry": [
|
|
{
|
|
"Path": "HKCU:\\Software\\Microsoft\\Windows\\CurrentVersion\\Search",
|
|
"Name": "SearchboxTaskbarMode",
|
|
"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://www.wikiwand.com/en/Windows_Registry) and [Microsoft's Website](https://learn.microsoft.com/en-us/windows/win32/sysinfo/registry).
|