chore: Update generated dev docs (#4399)

This commit is contained in:
Chris Titus
2026-04-21 14:40:29 -05:00
committed by GitHub
parent 21273bd3a8
commit cdf8727911
54 changed files with 90 additions and 955 deletions

View File

@@ -0,0 +1,34 @@
---
title: "Disable warnings for unsigned RDP files"
description: ""
---
```json {filename="config/tweaks.json",linenos=inline,linenostart=289}
"WPFTweaksDisableWarningForUnsignedRdp": {
"Content": "Disable warnings for unsigned RDP files",
"Description": "Disables warnings shown when launching unsigned RDP files introduced with the latest Windows 10 and 11 updates.",
"category": "z__Advanced Tweaks - CAUTION",
"panel": "1",
"registry": [
{
"Path": "HKLM:\\SOFTWARE\\Policies\\Microsoft\\Windows NT\\Terminal Services\\Client",
"Name": "RedirectionWarningDialogVersion",
"Value": "1",
"Type": "DWord",
"OriginalValue": "<RemoveEntry>"
},
{
"Path": "HKCU:\\SOFTWARE\\Microsoft\\Terminal Server Client",
"Name": "RdpLaunchConsentAccepted",
"Value": "1",
"Type": "DWord",
"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).