diff --git a/config/tweaks.json b/config/tweaks.json index b4f15e8690..35239bb9ff 100644 --- a/config/tweaks.json +++ b/config/tweaks.json @@ -1876,6 +1876,12 @@ } Remove-Item -Path \"HKLM:\\SOFTWARE\\Microsoft\\Windows\\CurrentVersion\\Explorer\\MyComputer\\NameSpace\\{0DB7E03F-FC29-4DC6-9020-FF41B59E513A}\" -Recurse -ErrorAction SilentlyContinue + # Fix Managed by your organization in Edge if regustry path exists then remove it + + If (Test-Path \"HKLM:\\SOFTWARE\\Policies\\Microsoft\\Edge\") { + Remove-Item -Path \"HKLM:\\SOFTWARE\\Policies\\Microsoft\\Edge\" -Recurse -ErrorAction SilentlyContinue + } + # Group svchost.exe processes $ram = (Get-CimInstance -ClassName Win32_PhysicalMemory | Measure-Object -Property Capacity -Sum).Sum / 1kb Set-ItemProperty -Path \"HKLM:\\SYSTEM\\CurrentControlSet\\Control\" -Name \"SvcHostSplitThresholdInKB\" -Type DWord -Value $ram -Force