Files
winutil/docs/content/dev/tweaks/Customize-Preferences/StandbyFix.md
T

30 lines
1.1 KiB
Markdown
Raw Normal View History

2026-03-02 13:05:08 -06:00
---
title: "Modern Standby fix"
description: ""
---
2026-04-07 10:31:58 -05:00
```json {filename="config/tweaks.json",linenos=inline,linenostart=2231}
2026-03-02 13:05:08 -06:00
"WPFToggleStandbyFix": {
"Content": "Modern Standby fix",
2026-03-26 15:26:48 -05:00
"Description": "Disable network connection during S0 Sleep. If network connectivity is turned on during S0 Sleep it could cause overheating on modern laptops.",
2026-03-02 13:05:08 -06:00
"category": "Customize Preferences",
"panel": "2",
"Type": "Toggle",
"registry": [
{
"Path": "HKCU:\\SOFTWARE\\Policies\\Microsoft\\Power\\PowerSettings\\f15576e8-98b7-4186-b944-eafa664402d9",
"Name": "ACSettingIndex",
"Value": "0",
"Type": "DWord",
"OriginalValue": "<RemoveEntry>",
"DefaultState": "true"
}
],
```
## Registry Changes
2026-03-26 15:26:48 -05:00
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.
2026-03-02 13:05:08 -06:00
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).