mirror of
https://github.com/ChrisTitusTech/winutil
synced 2026-04-05 22:28:31 +00:00
* changed autolinks to now use frontmatter instead off #heading * updated all docs with front matter names * Update DisableLegacyRecovery.md this was the same as EnableLegacyRecovery file * made sure pages have got the corrects scripts on them * Update default.md updated the archetype default to make sure every new page had the title and description automatically on the front matter * Create BraveDebloat.md * added brave debloat link to tweaks.json * Update tweaks.json * Update tweaks.json
27 lines
998 B
Markdown
27 lines
998 B
Markdown
---
|
|
title: "Enable End Task With Right Click"
|
|
description: ""
|
|
---
|
|
```json
|
|
"WPFTweaksEndTaskOnTaskbar": {
|
|
"Content": "Enable End Task With Right Click",
|
|
"Description": "Enables option to end task when right clicking a program in the taskbar",
|
|
"category": "Essential Tweaks",
|
|
"panel": "1",
|
|
"Order": "a006_",
|
|
"registry": [
|
|
{
|
|
"Path": "HKCU:\\Software\\Microsoft\\Windows\\CurrentVersion\\Explorer\\Advanced\\TaskbarDeveloperSettings",
|
|
"Name": "TaskbarEndTask",
|
|
"Type": "DWord",
|
|
"Value": "1",
|
|
"OriginalValue": "<RemoveEntry>"
|
|
}
|
|
],
|
|
```
|
|
|
|
## 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).
|