Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Windows Registry Hacks #24

Open
dhirschfeld opened this issue Mar 25, 2023 · 1 comment
Open

Windows Registry Hacks #24

dhirschfeld opened this issue Mar 25, 2023 · 1 comment

Comments

@dhirschfeld
Copy link
Member

dhirschfeld commented Mar 25, 2023

Computer\HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\SearchSettings
IsDynamicSearchBoxEnabled = 0
Computer\HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Microsoft\Windows\Windows Search
AllowCortana: DWORD32 = 0
Computer\HKEY_CURRENT_USER\SOFTWARE\Policies\Microsoft\Windows\Explorer (Create)
DisableSearchBoxSuggestions: DWORD32 = 1
Computer\HKEY_CURRENT_USER\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\Advanced
ShowSyncProviderNotifications = 0
HKEY_CURRENT_USER\SOFTWARE\Microsoft\Windows\CurrentVersion\ContentDeliveryManager
RotatingLockScreenOverlayEnabled = 0
SoftLandingEnabled = 0
SilentInstalledAppsEnabled = 0
SubscribedContent-338387Enabled = 0
SubscribedContent-338389Enabled = 0
SubscribedContent-338393Enabled = 0
SubscribedContent-353694Enabled = 0
SubscribedContent-353696Enabled = 0
HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\UserProfileEngagement
ScoobeSystemSettingEnabled = 0
HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\AdvertisingInfo
Enabled = 0
HKEY_CURRENT_USER\SOFTWARE\Microsoft\Windows\CurrentVersion\Diagnostics\DiagTrack
ShowedToastAtLevel = 1
HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Policies\DataCollection
AllowTelemetry = 0
HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Privacy
TailoredExperiencesWithDiagnosticDataEnabled = 0
Add key:
[HKEY_CURRENT_USER\Software\Classes\CLSID\{86ca1aa0-34aa-4e8b-a509-50c905bae2a2}\InprocServer32]
@=""
@dhirschfeld dhirschfeld changed the title Windows Regisstry Hacks Windows Registry Hacks Mar 26, 2023
@dhirschfeld
Copy link
Member Author

dhirschfeld commented Jul 13, 2024

Set-ItemProperty -Path "HKCU:\Software\Microsoft\Windows\CurrentVersion\SearchSettings" -Name IsDynamicSearchBoxEnabled -Value 0

New-Item -Path "HKLM:\SOFTWARE\Policies\Microsoft\Windows\Windows Search"
Set-ItemProperty -Path "HKLM:\SOFTWARE\Policies\Microsoft\Windows\Windows Search" -Name AllowCortana -Type DWord -Value 0

New-Item -Path "HKCU:\SOFTWARE\Policies\Microsoft\Windows\Explorer"
Set-ItemProperty -Path "HKCU:\SOFTWARE\Policies\Microsoft\Windows\Explorer" -Name DisableSearchBoxSuggestions -Type DWord -Value 1


Set-ItemProperty -Path "HKCU:\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\Advanced" -Name ShowSyncProviderNotifications -Value 0


$path = 'HKCU:\SOFTWARE\Microsoft\Windows\CurrentVersion\ContentDeliveryManager'
Set-ItemProperty -Path $path -Name RotatingLockScreenOverlayEnabled -Value 0
Set-ItemProperty -Path $path -Name SoftLandingEnabled -Value 0
Set-ItemProperty -Path $path -Name SilentInstalledAppsEnabled -Value 0
Set-ItemProperty -Path $path -Name SubscribedContent-338387Enabled -Value 0
Set-ItemProperty -Path $path -Name SubscribedContent-338389Enabled -Value 0
Set-ItemProperty -Path $path -Name SubscribedContent-338393Enabled -Value 0
Set-ItemProperty -Path $path -Name SubscribedContent-353694Enabled -Value 0
Set-ItemProperty -Path $path -Name SubscribedContent-353696Enabled -Value 0

Set-ItemProperty -Path "HKCU:\Software\Microsoft\Windows\CurrentVersion\UserProfileEngagement" -Name ScoobeSystemSettingEnabled -Value 0
Set-ItemProperty -Path "HKCU:\Software\Microsoft\Windows\CurrentVersion\AdvertisingInfo" -Name Enabled -Value 0
Set-ItemProperty -Path "HKCU:\SOFTWARE\Microsoft\Windows\CurrentVersion\Diagnostics\DiagTrack" -Name ShowedToastAtLevel -Value 1
Set-ItemProperty -Path "HKLM:\SOFTWARE\Microsoft\Windows\CurrentVersion\Policies\DataCollection" -Name AllowTelemetry -Value 0
Set-ItemProperty -Path "HKCU:\Software\Microsoft\Windows\CurrentVersion\Privacy" -Name TailoredExperiencesWithDiagnosticDataEnabled -Value 0



New-Item -Path "HKCU:\Software\Classes\CLSID\{86ca1aa0-34aa-4e8b-a509-50c905bae2a2}\InprocServer32" -Value "" -Force

# Disable "Let websites show me locally relevant content by accessing my language list"
# https://www.elevenforum.com/t/enable-or-disable-website-access-to-language-list-in-windows-11.3733/
Set-ItemProperty -Path "HKCU:\Control Panel\International\User Profile" -Name HttpAcceptLanguageOptOut -Type DWord -Value 1

# Disable "Store my activity history on this device"
# https://www.elevenforum.com/t/enable-or-disable-store-activity-history-on-device-in-windows-11.7812/
Set-ItemProperty -Path  "HKLM:\SOFTWARE\Policies\Microsoft\Windows\System" -Name PublishUserActivities -Value 0

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant