How to Fix Apps Missing After Updating Windows 10 - [2024 Tutorial]

TechFixIT
TechFixIT
9.1 هزار بار بازدید - 5 سال پیش - After Upating the Windows 10
After Upating the Windows 10 May Update, some apps are missing from the Start Menu. The missing apps are no longer pinned in the Start Menu, nor are they in the list of apps. If I search for the app, Cortana won't able to find it and instead takes me to the Store to install it. But the Store says that the app is already installed.

Works on Laptops, PCs, Desktop Computers, Tablets running Windows 10 and made by Samsung, Lenovo, Toshiba, Asus, Acer, HP, Dell, Alienware, Razer, MSI, etc.

Copy and Paste this 1:
Get-AppXPackage -AllUsers -Name Microsoft.WindowsStore | Foreach {Add-AppxPackage -DisableDevelopmentMode -Register "$($_.InstallLocation)\AppXManifest.xml" -Verbose}

Copy and paste this 2:

Get all the provisioned packages
$Packages = (get-item 'HKLM:\Software\Microsoft\Windows\CurrentVersion\Appx\AppxAllUserStore\Applications') | Get-ChildItem

Filter the list if provided a filter
$PackageFilter = $args[0]
if ([string]::IsNullOrEmpty($PackageFilter))
{
echo "No filter specified, attempting to re-register all provisioned apps."
}
else
{
$Packages = $Packages | where {$_.Name -like $PackageFilter}

if ($Packages -eq $null)
{
 echo "No provisioned apps match the specified filter."
 exit
}
else
{
 echo "Registering the provisioned apps that match $PackageFilter"
}
}

ForEach($Package in $Packages)
{
get package name & path
$PackageName = $Package | Get-ItemProperty | Select-Object -ExpandProperty PSChildName
$PackagePath = [System.Environment]::ExpandEnvironmentVariables(($Package | Get-ItemProperty | Select-Object -ExpandProperty Path))

register the package
echo "Attempting to register package: $PackageName"

Add-AppxPackage -register $PackagePath -DisableDevelopmentMode
}
5 سال پیش در تاریخ 1398/03/22 منتشر شده است.
9,193 بـار بازدید شده
... بیشتر