Comment désactiver les résultats de recherche Internet dans le menu Démarrer après la Creators Update ?
Comment désactiver les résultats de recherche Internet dans le menu Démarrer après la Creators Update ?
It [used to be possible](http://www.windowscentral.com/how-disable-bing-search-windows-10-start-menu) to disable internet search results in menu Démarrer searches before the Windows 10 Creators Update, but I've just clean installed a new Windows 10 Pro image and that setting is gone. Is there some way to disable it through editing le registre/etc?
Re: Comment désactiver les résultats de recherche Internet dans le menu Démarrer après la Creators Update ?
The article
[The Windows 10 spring update no longer lets you disable web search in Start - workaround](https://www.neowin.net/news/the-windows-10-spring-update-no-longer-lets-you-disable-web-search-in-start) reports that the following registry update
is required in Windows 10 version 1803 :
```
Windows Registry Editor Version 5.00
[HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Search]
"BingSearchEnabled"=dword:00000000
"AllowSearchToUseLocation"=dword:00000000
"CortanaConsent"=dword:00000000
```
It remarks :
>
those entries are completely missing from the "Search" registry key, so vous pouvez safely delete them should you want to revert.
I would still recommend to au moins create a system restore point before doing
any registry modifications.
A reboot might be required.
User @mtd has contributed below these commands for applying the updates to
le registre:
```
reg add HKCU\SOFTWARE\Microsoft\Windows\CurrentVersion\Search /f /v BingSearchEnabled /t REG_DWORD /d 0
reg add HKCU\SOFTWARE\Microsoft\Windows\CurrentVersion\Search /f /v AllowSearchToUseLocation /t REG_DWORD /d 0
reg add HKCU\SOFTWARE\Microsoft\Windows\CurrentVersion\Search /f /v CortanaConsent /t REG_DWORD /d 0
```
EDIT1 : There are reports that Windows 10 version 2004 has broken the above fix.
The article
[Disable Web Search in Taskbar in Windows 10 Version 2004](https://winaero.com/blog/disable-web-search-in-taskbar-in-windows-10-version-2004/)
has a summary of the current state of the problem.
The current solution seems to be to download and run this
[PowerShell script](https://winaero.com/request.php?2378)
as Administrator:
```
Set-ExecutionPolicy Unrestricted -Scope Process
.\disable-web-search.ps1
```
As only a workaround, this PowerShell script blocks the online search using
Windows Firewall rules, so forcing the search to operate in offline mode.
EDIT2: Reports now say that these registry modification are working for
Windows versions 2004 and 20H2 without reboot.
EDIT3: Windows 11 21H2 - it has been reported that it is
also required to create in le registre key
`HKEY_CURRENT_USER\Software\Policies\Microsoft\Windows\Explorer`,
a DWORD32 value named `DisableSearchBoxSuggestions`
and set its value to `1`.
More information in the article
[Comment Disable Web Search Results in menu Démarrer on Windows 11](https://allthings.how/how-to-disable-web-search-results-in-start-menu-on-windows-11/).
[The Windows 10 spring update no longer lets you disable web search in Start - workaround](https://www.neowin.net/news/the-windows-10-spring-update-no-longer-lets-you-disable-web-search-in-start) reports that the following registry update
is required in Windows 10 version 1803 :
```
Windows Registry Editor Version 5.00
[HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Search]
"BingSearchEnabled"=dword:00000000
"AllowSearchToUseLocation"=dword:00000000
"CortanaConsent"=dword:00000000
```
It remarks :
>
those entries are completely missing from the "Search" registry key, so vous pouvez safely delete them should you want to revert.
I would still recommend to au moins create a system restore point before doing
any registry modifications.
A reboot might be required.
User @mtd has contributed below these commands for applying the updates to
le registre:
```
reg add HKCU\SOFTWARE\Microsoft\Windows\CurrentVersion\Search /f /v BingSearchEnabled /t REG_DWORD /d 0
reg add HKCU\SOFTWARE\Microsoft\Windows\CurrentVersion\Search /f /v AllowSearchToUseLocation /t REG_DWORD /d 0
reg add HKCU\SOFTWARE\Microsoft\Windows\CurrentVersion\Search /f /v CortanaConsent /t REG_DWORD /d 0
```
EDIT1 : There are reports that Windows 10 version 2004 has broken the above fix.
The article
[Disable Web Search in Taskbar in Windows 10 Version 2004](https://winaero.com/blog/disable-web-search-in-taskbar-in-windows-10-version-2004/)
has a summary of the current state of the problem.
The current solution seems to be to download and run this
[PowerShell script](https://winaero.com/request.php?2378)
as Administrator:
```
Set-ExecutionPolicy Unrestricted -Scope Process
.\disable-web-search.ps1
```
As only a workaround, this PowerShell script blocks the online search using
Windows Firewall rules, so forcing the search to operate in offline mode.
EDIT2: Reports now say that these registry modification are working for
Windows versions 2004 and 20H2 without reboot.
EDIT3: Windows 11 21H2 - it has been reported that it is
also required to create in le registre key
`HKEY_CURRENT_USER\Software\Policies\Microsoft\Windows\Explorer`,
a DWORD32 value named `DisableSearchBoxSuggestions`
and set its value to `1`.
More information in the article
[Comment Disable Web Search Results in menu Démarrer on Windows 11](https://allthings.how/how-to-disable-web-search-results-in-start-menu-on-windows-11/).