-
-
Notifications
You must be signed in to change notification settings - Fork 1.6k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Move Disable Teredo to Advanced and Add prefer-ipv4 tweak (#2633)
* Move Disable Teredo to Advanced and Add prefer-ipv4 tweak * Push DevDocs Update * Fix DevDocs annoyance where the path is changed * Fix DevDocs annoyance where the path is changed
- Loading branch information
Showing
5 changed files
with
93 additions
and
12 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,63 @@ | ||
# Prefer IPv4 over IPv6 | ||
|
||
Last Updated: 2024-08-27 | ||
|
||
|
||
!!! info | ||
The Development Documentation is auto generated for every compilation of WinUtil, meaning a part of it will always stay up-to-date. **Developers do have the ability to add custom content, which won't be updated automatically.** | ||
## Description | ||
|
||
To set the IPv4 preference can have latency and security benefits on private networks where IPv6 is not configured. | ||
|
||
<!-- BEGIN CUSTOM CONTENT --> | ||
|
||
<!-- END CUSTOM CONTENT --> | ||
|
||
<details> | ||
<summary>Preview Code</summary> | ||
|
||
```json | ||
{ | ||
"Content": "Prefer IPv4 over IPv6", | ||
"Description": "To set the IPv4 preference can have latency and security benefits on private networks where IPv6 is not configured.", | ||
"category": "Essential Tweaks", | ||
"panel": "1", | ||
"Order": "a005_", | ||
"registry": [ | ||
{ | ||
"Path": "HKLM:\\SYSTEM\\CurrentControlSet\\Services\\Tcpip6\\Parameters", | ||
"Name": "DisabledComponents", | ||
"Value": "32", | ||
"OriginalValue": "0", | ||
"Type": "DWord" | ||
} | ||
], | ||
"link": "https://christitustech.github.io/winutil/dev/tweaks/Essential-Tweaks/IPv46" | ||
} | ||
``` | ||
|
||
</details> | ||
|
||
## 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). | ||
|
||
### Registry Key: DisabledComponents | ||
|
||
**Type:** DWord | ||
|
||
**Original Value:** 0 | ||
|
||
**New Value:** 32 | ||
|
||
|
||
|
||
<!-- BEGIN SECOND CUSTOM CONTENT --> | ||
|
||
<!-- END SECOND CUSTOM CONTENT --> | ||
|
||
|
||
[View the JSON file](https://github.com/ChrisTitusTech/winutil/tree/main/config/tweaks.json) | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters