mirror of
https://github.com/W4RH4WK/Debloat-Windows-10.git
synced 2024-11-15 18:12:57 +00:00
extend privacy settings with general settings
This commit is contained in:
parent
c2e3e921a7
commit
2cb1177cff
@ -4,6 +4,33 @@
|
||||
echo "Defuse Windows search settings"
|
||||
Set-WindowsSearchSetting -EnableWebResultsSetting $false
|
||||
|
||||
echo "Set general privacy options"
|
||||
$reg = @"
|
||||
Windows Registry Editor Version 5.00
|
||||
|
||||
[HKEY_CURRENT_USER\Control Panel\International\User Profile]
|
||||
"HttpAcceptLanguageOptOut"=dword:00000001
|
||||
|
||||
[HKEY_CURRENT_USER\Printers\Defaults]
|
||||
"NetID"="{00000000-0000-0000-0000-000000000000}"
|
||||
|
||||
[HKEY_CURRENT_USER\SOFTWARE\Microsoft\Input]
|
||||
|
||||
[HKEY_CURRENT_USER\SOFTWARE\Microsoft\Input\TIPC]
|
||||
"Enabled"=dword:00000000
|
||||
|
||||
[HKEY_CURRENT_USER\SOFTWARE\Microsoft\Windows\CurrentVersion\AdvertisingInfo]
|
||||
"Enabled"=dword:00000000
|
||||
|
||||
[HKEY_CURRENT_USER\SOFTWARE\Microsoft\Windows\CurrentVersion\AppHost]
|
||||
"EnableWebContentEvaluation"=dword:00000000
|
||||
|
||||
"@
|
||||
$regfile = "$env:windir\Temp\registry.reg"
|
||||
$reg | Out-File $regfile
|
||||
regedit /s $regfile
|
||||
rm $regfile
|
||||
|
||||
echo "Disable synchronisation of settings"
|
||||
$reg = @"
|
||||
Windows Registry Editor Version 5.00
|
||||
@ -62,4 +89,4 @@ Windows Registry Editor Version 5.00
|
||||
$regfile = "$env:windir\Temp\registry.reg"
|
||||
$reg | Out-File $regfile
|
||||
regedit /s $regfile
|
||||
rm $regfile
|
||||
rm $regfile
|
||||
|
Loading…
Reference in New Issue
Block a user