Browse Source

Update disable_searchfeatures.ps1

pull/19/head
narutards 9 years ago
parent
commit
32f53b5e25
  1. 8
      scripts/disable_searchfeatures.ps1

8
scripts/disable_searchfeatures.ps1

@ -1,12 +1,10 @@
# Description:
# This script will disable certain unwanted startmenu search features
if (-Not (Get-Item -Path 'HKLM:\Software\Policies\Microsoft\Windows\Windows Search\' -ErrorAction SilentlyContinue)) {
New-Item -Path 'HKLM:\SOFTWARE\Policies\Microsoft\Windows\Windows Search\'
}
Set-ItemProperty -Path 'HKLM:\SOFTWARE\Policies\Microsoft\Windows\Windows Search\' -Name AllowCortana -Value 0
Set-ItemProperty -Path 'HKLM:\SOFTWARE\Policies\Microsoft\Windows\Windows Search\' -Name DisableWebSearch -Value 1
Set-ItemProperty -Path 'HKLM:\SOFTWARE\Policies\Microsoft\Windows\Windows Search\' -Name AllowSearchToUseLocation -Value 0
Set-ItemProperty -Path 'HKLM:\SOFTWARE\Policies\Microsoft\Windows\Windows Search\' -Name ConnectedSearchUseWeb -Value 0
Set-ItemProperty -Path 'HKLM:\SOFTWARE\Wow6432Node\Policies\Microsoft\Windows\Windows Search\' -Name AllowCortana -Value 0
Set-ItemProperty -Path 'HKLM:\SOFTWARE\Wow6432Node\Policies\Microsoft\Windows\Windows Search\' -Name DisableWebSearch -Value 1
Set-ItemProperty -Path 'HKLM:\SOFTWARE\Wow6432Node\Policies\Microsoft\Windows\Windows Search\' -Name AllowSearchToUseLocation -Value 0
Set-ItemProperty -Path 'HKLM:\SOFTWARE\Wow6432Node\Policies\Microsoft\Windows\Windows Search\' -Name ConnectedSearchUseWeb -Value 0

Loading…
Cancel
Save