From 8352694f70b81a1c01e145987b42153bda93f666 Mon Sep 17 00:00:00 2001 From: Matthew Yang Date: Sat, 1 Nov 2025 07:46:18 -0700 Subject: [PATCH] Add ability to turn off search highlights --- tiny11maker.ps1 | 2 ++ 1 file changed, 2 insertions(+) diff --git a/tiny11maker.ps1 b/tiny11maker.ps1 index c24757f..bae4a01 100644 --- a/tiny11maker.ps1 +++ b/tiny11maker.ps1 @@ -335,6 +335,8 @@ Remove-RegistryValue "HKEY_LOCAL_MACHINE\zSOFTWARE\WOW6432Node\Microsoft\Windows Remove-RegistryValue "HKEY_LOCAL_MACHINE\zSOFTWARE\WOW6432Node\Microsoft\Windows\CurrentVersion\Uninstall\Microsoft Edge Update" Write-Output "Disabling OneDrive folder backup" Set-RegistryValue "HKLM\zSOFTWARE\Policies\Microsoft\Windows\OneDrive" "DisableFileSyncNGSC" "REG_DWORD" "1" +Write-Output "Disabling Search Highlights:" +Set-RegistryValue 'HKLM\zSoftware\Microsoft\Windows\CurrentVersion\SearchSettings' 'IsDynamicSearchBoxEnabled' 'REG_DWORD' '0' Write-Output "Disabling Telemetry:" Set-RegistryValue 'HKLM\zNTUSER\Software\Microsoft\Windows\CurrentVersion\AdvertisingInfo' 'Enabled' 'REG_DWORD' '0' Set-RegistryValue 'HKLM\zNTUSER\Software\Microsoft\Windows\CurrentVersion\Privacy' 'TailoredExperiencesWithDiagnosticDataEnabled' 'REG_DWORD' '0'