Skip to content

Commit

Permalink
Add disable FTH back
Browse files Browse the repository at this point in the history
  • Loading branch information
valleyofdoom committed Jul 9, 2024
1 parent 9f67dbc commit 906a13f
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 1 deletion.
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -808,6 +808,7 @@ The registry settings are merged with the ``apply-registry.ps1`` script. As for
|``disable typing insights``|1. Mitigating telemetry and phoning home|N/A|``true``|
|``disable suggestions in the search box and in search home``|1. Mitigating telemetry and phoning home<br><br>2. Reducing or disabling intrusive features|N/A|``true``|
|``disable computer is out of support message``|1. Reducing or disabling intrusive features|Disables [this](https://support.microsoft.com/en-us/topic/you-received-a-notification-your-windows-7-pc-is-out-of-support-3278599f-9613-5cc1-e0ee-4f81f623adcf) intrusive message. Not relevant to users with a modern Windows version|``true``|
|``disable fault tolerant heap``|1. Gaining finer control over the feature in question|Prevents Windows autonomously applying mitigations to prevent future crashes on a per-application basis ([1](https://learn.microsoft.com/en-us/windows/win32/win7appqual/fault-tolerant-heap)) which can lead to issues ([1](https://www.mak.com/mak-one/support/help/knowledge/performance-issues-caused-by-the-fault-tolerant-heap-windows))|``true``|

### 11.4.2. Applying Options

Expand Down
7 changes: 7 additions & 0 deletions bin/apply-registry.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -710,6 +710,13 @@ $entries = @{
"apply_if" = @("disable sending inking and typing data to microsoft")
}
}
"HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\FTH" = @{
"Enabled" = @{
"value" = 0
"type" = "REG_DWORD"
"apply_if" = @("disable fault tolerant heap")
}
}
}

function Is-Admin() {
Expand Down
3 changes: 2 additions & 1 deletion bin/registry-options.json
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,7 @@
"disable retrieval of online tips and help in the immersive control panel": true,
"disable typing insights": true,
"disable suggestions in the search box and in search home": true,
"disable computer is out of support message": true
"disable computer is out of support message": true,
"disable fault tolerant heap": true
}
}

0 comments on commit 906a13f

Please sign in to comment.