Adjust Critical Thermal Shutdown in Regedit
This guide explains how to locate and configure system-wide critical thermal shutdown thresholds using the Windows Registry Editor (Regedit). By modifying the ACPI thermal zone parameters in the registry, you can define the exact temperature limit at which Windows forces a safety shutdown to prevent hardware damage.
Understanding Temperature Values in Regedit
Windows calculates ACPI thermal levels in tenths of degrees Kelvin (\(10 \times K\)). To set your desired temperature in Celsius, use the following conversion formula:
\[\text{Value} = (\text{Temperature in } ^\circ\text{C} + 273.2) \times 10\]
- Example for 90°C: \((90 + 273.2) \times 10 = 3632\) (Decimal)
- Example for 100°C: \((100 + 273.2) \times 10 = 3732\) (Decimal)
- Example for 105°C: \((105 + 273.2) \times 10 = 3782\) (Decimal)
Steps to Adjust the Thermal Shutdown Threshold
- Open Registry Editor
- Press
Win + R, typeregedit, and pressEnter. - Click Yes if prompted by User Account Control (UAC).
- Press
- Navigate to the Power Control Key
In the address bar at the top, paste the following path and press
Enter:HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Power
- Locate or Create the Thermal Key
- Look for a subkey named
ThermalorThermalZonesunderPower. - If it does not exist, right-click the
Powerfolder, select New > Key, and name itThermal.
- Look for a subkey named
- Create the CriticalTripPoint Value
Select the
Thermalkey in the left pane.Right-click an empty area in the right pane, select New > DWORD (32-bit) Value, and name it:
CriticalTripPoint
- Set the Temperature Limit
- Double-click
CriticalTripPoint. - Under Base, select Decimal.
- In the Value data field, enter your calculated
value (for example,
3732for 100°C). - Click OK.
- Double-click
- Reboot the System
- Close the Registry Editor.
- Restart your computer to allow the Windows ACPI driver to load the new thermal parameters.
Important Considerations
- Firmware-Level Overrides: Most modern motherboards and CPUs (Intel/AMD) have hardcoded PROCHOT (Processor Hot) trip points managed directly inside the UEFI/BIOS. If the motherboard detects a critical temperature threshold set in firmware, it will shut down or throttle the machine regardless of registry values.
- Hardware Safety: Never set the registry value higher than your processor’s official maximum junction temperature (\(T_j\text{Max}\)), as this can lead to permanent silicon degradation or sudden hardware failure.