mirror of
https://github.com/ChrisTitusTech/winutil
synced 2026-04-05 22:28:31 +00:00
Add links to tweaks without links (#3969)
* 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
This commit is contained in:
@@ -1646,7 +1646,7 @@
|
|||||||
winget install Microsoft.Edge --source winget
|
winget install Microsoft.Edge --source winget
|
||||||
"
|
"
|
||||||
],
|
],
|
||||||
"link": ""
|
"link": "https://winutil.christitus.com/dev/tweaks/z--advanced-tweaks---caution/removeedge"
|
||||||
},
|
},
|
||||||
"WPFTweaksUTC": {
|
"WPFTweaksUTC": {
|
||||||
"Content": "Set Time to UTC (Dual Boot)",
|
"Content": "Set Time to UTC (Dual Boot)",
|
||||||
@@ -2099,7 +2099,8 @@
|
|||||||
"OriginalValue": "<RemoveEntry>",
|
"OriginalValue": "<RemoveEntry>",
|
||||||
"Type": "DWord"
|
"Type": "DWord"
|
||||||
}
|
}
|
||||||
]
|
],
|
||||||
|
"link": "https://winutil.christitus.com/dev/tweaks/essential-tweaks/wpbt"
|
||||||
},
|
},
|
||||||
"WPFTweaksRazerBlock": {
|
"WPFTweaksRazerBlock": {
|
||||||
"Content": "Block Razer Software Installs",
|
"Content": "Block Razer Software Installs",
|
||||||
@@ -2142,7 +2143,7 @@
|
|||||||
icacls \"C:\\Windows\\Installer\\Razer\" /remove:d Everyone
|
icacls \"C:\\Windows\\Installer\\Razer\" /remove:d Everyone
|
||||||
"
|
"
|
||||||
],
|
],
|
||||||
"link": ""
|
"link": "https://winutil.christitus.com/dev/tweaks/z--advanced-tweaks---caution/razerblock"
|
||||||
},
|
},
|
||||||
"WPFTweaksDisableNotifications": {
|
"WPFTweaksDisableNotifications": {
|
||||||
"Content": "Disable Notification Tray/Calendar",
|
"Content": "Disable Notification Tray/Calendar",
|
||||||
|
|||||||
28
docs/content/dev/tweaks/Essential-Tweaks/WPBT.md
Normal file
28
docs/content/dev/tweaks/Essential-Tweaks/WPBT.md
Normal file
@@ -0,0 +1,28 @@
|
|||||||
|
---
|
||||||
|
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).
|
||||||
@@ -0,0 +1,54 @@
|
|||||||
|
---
|
||||||
|
title: "Block Razer Software Installs"
|
||||||
|
description: ""
|
||||||
|
---
|
||||||
|
|
||||||
|
```json
|
||||||
|
"WPFTweaksRazerBlock": {
|
||||||
|
"Content": "Block Razer Software Installs",
|
||||||
|
"Description": "Blocks ALL Razer Software installations. The hardware works fine without any software. WARNING: this will also block all Windows third-party driver installations.",
|
||||||
|
"category": "z__Advanced Tweaks - CAUTION",
|
||||||
|
"panel": "1",
|
||||||
|
"Order": "a021_",
|
||||||
|
"registry": [
|
||||||
|
{
|
||||||
|
"Path": "HKLM:\\SOFTWARE\\Microsoft\\Windows\\CurrentVersion\\DriverSearching",
|
||||||
|
"Name": "SearchOrderConfig",
|
||||||
|
"Value": "0",
|
||||||
|
"OriginalValue": "1",
|
||||||
|
"Type": "DWord"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"Path": "HKLM:\\SOFTWARE\\Microsoft\\Windows\\CurrentVersion\\Device Installer",
|
||||||
|
"Name": "DisableCoInstallers",
|
||||||
|
"Value": "1",
|
||||||
|
"OriginalValue": "0",
|
||||||
|
"Type": "DWord"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"InvokeScript": [
|
||||||
|
"
|
||||||
|
$RazerPath = \"C:\\Windows\\Installer\\Razer\"
|
||||||
|
|
||||||
|
if (Test-Path $RazerPath) {
|
||||||
|
Remove-Item $RazerPath\\* -Recurse -Force
|
||||||
|
}
|
||||||
|
else {
|
||||||
|
New-Item -Path $RazerPath -ItemType Directory
|
||||||
|
}
|
||||||
|
|
||||||
|
icacls $RazerPath /deny \"Everyone:(W)\"
|
||||||
|
"
|
||||||
|
],
|
||||||
|
"UndoScript": [
|
||||||
|
"
|
||||||
|
icacls \"C:\\Windows\\Installer\\Razer\" /remove:d Everyone
|
||||||
|
"
|
||||||
|
],
|
||||||
|
```
|
||||||
|
|
||||||
|
## 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).
|
||||||
Reference in New Issue
Block a user