mirror of
https://github.com/ChrisTitusTech/winutil
synced 2026-04-05 22:28:31 +00:00
* Create WPBT.md * Create RazerBlock.md * Update tweaks.json * Update tweaks.json * Create RemoveEdge.md * Delete docs/content/dev/tweaks/Essential-Tweaks/RemoveEdge.md * Create RazerBlock.md * Delete docs/content/dev/tweaks/Essential-Tweaks/RazerBlock.md
29 lines
1.1 KiB
Markdown
29 lines
1.1 KiB
Markdown
---
|
|
title: "Disable Windows Platform Binary Table (WPBT)"
|
|
description: ""
|
|
---
|
|
|
|
```json
|
|
"WPFTweaksWPBT": {
|
|
"Content": "Disable Windows Platform Binary Table (WPBT)",
|
|
"Description": "If enabled then allows your computer vendor to execute a program each time it boots. It enables computer vendors to force install anti-theft software, software drivers, or a software program conveniently. This could also be a security risk.",
|
|
"category": "Essential Tweaks",
|
|
"panel": "1",
|
|
"Order": "a005_",
|
|
"registry": [
|
|
{
|
|
"Path": "HKLM:\\SYSTEM\\CurrentControlSet\\Control\\Session Manager",
|
|
"Name": "DisableWpbtExecution",
|
|
"Value": "1",
|
|
"OriginalValue": "<RemoveEntry>",
|
|
"Type": "DWord"
|
|
}
|
|
],
|
|
```
|
|
|
|
## 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).
|