Disable Microsoft Store app suggestions in search
Start Menu & SearchVersão Mínima do Windows: 22621
This will disable the Microsoft Store app suggestions in Windows search.
Código para Aplicar
Este ajuste usa comandos PowerShell diretamente (sem alterações no Registry).
Disable Microsoft Store app suggestions in searchPowerShell
# Disable Microsoft Store search suggestions in the Start Menu
# Denies access to the Store app database file to prevent search suggestions
$storeDbPath = "$env:LOCALAPPDATA\Packages\Microsoft.WindowsStore_8wekyb3d8bbwe\LocalState\store.db"
if (-not (Test-Path $storeDbPath)) {
Write-Host "Store database not found, creating placeholder to prevent Windows from recreating it..." -ForegroundColor Yellow
$storeDbDir = Split-Path -Path $storeDbPath -Parent
if (-not (Test-Path $storeDbDir)) {
New-Item -Path $storeDbDir -ItemType Directory -Force | Out-Null
}
New-Item -Path $storeDbPath -ItemType File -Force | Out-Null
}
# Deny FullControl for EVERYONE on the Store database file
$AccountSid = [System.Security.Principal.SecurityIdentifier]::new('S-1-1-0')
$Acl = Get-Acl -Path $storeDbPath
$Ace = [System.Security.AccessControl.FileSystemAccessRule]::new($AccountSid, 'FullControl', 'Deny')
$Acl.SetAccessRule($Ace) | Out-Null
Set-Acl -Path $storeDbPath -AclObject $Acl | Out-Null
Write-Host "Disabled Microsoft Store search suggestions" -ForegroundColor GreenQuer combinar isso com outros ajustes?
Abrir ConfiguradorAjustes Relacionados
Clear Start Menu Remove all pinned apps from the start menu for this user only
Clear Start Menu (All Users) Remove all pinned apps from the start menu for all existing and new users
Hide recommended section in the start menu
This will hide the recommended section in the start menu, which shows recently added apps, recently opened files and app recommendations. This feature uses policies, which will lock down certain settings.
Hide 'All Apps' section in the start menu
This will hide the 'All Apps' section in the start menu, which shows all installed apps. WARNING: Hiding this section may make it harder to find installed apps on your system. This feature uses policies, which will lock down certain settings.
Disable Phone Link integration in the start menu
This will remove the Phone Link integration in the start menu when you have a mobile device linked to your PC.