Disable Teredo
config/tweaks.json
2089 "WPFTweaksTeredo": {
2090 "Content": "Disable Teredo",
2091 "Description": "Teredo network tunneling is a IPv6 feature that can cause additional latency, but may cause problems with some games.",
2092 "category": "z__Advanced Tweaks - CAUTION",
2093 "panel": "1",
2094 "registry": [
2095 {
2096 "Path": "HKLM:\\SYSTEM\\CurrentControlSet\\Services\\Tcpip6\\Parameters",
2097 "Name": "DisabledComponents",
2098 "Value": "1",
2099 "Type": "DWord",
2100 "OriginalValue": "0"
2101 }
2102 ],
2103 "InvokeScript": [
2104 "netsh interface teredo set state disabled"
2105 ],
2106 "UndoScript": [
2107 "netsh interface teredo set state default"
2108 ],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 and Microsoft’s Website.