From 5902b0bd643370d70b778c6e26ac643b85790ea0 Mon Sep 17 00:00:00 2001 From: Gabi <218829269+GabiNun2@users.noreply.github.com> Date: Fri, 17 Apr 2026 17:00:39 +0300 Subject: [PATCH] Move `SvcHostSplitThresholdInKB` tweak into `WPFTweaksServices` tweak (#4364) --- config/tweaks.json | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/config/tweaks.json b/config/tweaks.json index eab66cd4..6cdc0661 100644 --- a/config/tweaks.json +++ b/config/tweaks.json @@ -1134,6 +1134,12 @@ "OriginalType": "Manual" } ], + "InvokeScript": [ + " + $Memory = (Get-CimInstance Win32_PhysicalMemory | Measure-Object Capacity -Sum).Sum / 1KB + Set-ItemProperty -Path \"HKLM:\\SYSTEM\\CurrentControlSet\\Control\" -Name SvcHostSplitThresholdInKB -Value $Memory + " + ], "link": "https://winutil.christitus.com/dev/tweaks/essential-tweaks/services" }, "WPFTweaksBraveDebloat": { @@ -1426,9 +1432,6 @@ # Disable (Windows Error Reporting Manager) Service Set-Service -Name wermgr -StartupType Disabled - $Memory = (Get-CimInstance Win32_PhysicalMemory | Measure-Object Capacity -Sum).Sum / 1KB - Set-ItemProperty -Path \"HKLM:\\SYSTEM\\CurrentControlSet\\Control\" -Name SvcHostSplitThresholdInKB -Value $Memory - Remove-ItemProperty -Path \"HKCU:\\Software\\Microsoft\\Siuf\\Rules\" -Name PeriodInNanoSeconds " ],