When I try Method 1 above, this is the result:
PS C:\WINDOWS\system32> Get-AppXPackage -AllUsers |Where-Object {$_.InstallLocation -like "*SystemApps*"} | Foreach {Add-AppxPackage -DisableDevelopmentMode -Register "$($_.InstallLocation)\AppXManifest.xml"} Add-AppxPackage
: Deployment failed with HRESULT: 0x80073D02, The package could not be installed because resources it modifies are currently in use. error 0x80073D02: Unable to install
because the following apps need to be closed InputApp_1000.18362.449.0_neutral_neutral_cw5n1h2txyewy. NOTE: For additional information, look for [ActivityId]
02f0fb84-d79d-0000-aa14-f1029dd7d501 in the Event Log or use the command line Get-AppPackageLog -ActivityID 02f0fb84-d79d-0000-aa14-f1029dd7d501 At line:1 char:94
- ... | Foreach {Add-AppxPackage -DisableDevelopmentMode -Register "$($_.I ... + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + CategoryInfo
: NotSpecified: (C:\Windows\Syst...ppXManifest.xml:String) [Add-AppxPackage], Exception + FullyQualifiedErrorId : DeploymentError,Microsoft.Windows.Appx.PackageManager.Commands.AddAppxPackageCommand
Add-AppxPackage : Deployment failed with HRESULT: 0x80073D02, The package could not be installed because resources it
modifies are currently in use.
error 0x80073D02: Unable to install because the following apps need to be closed
Microsoft.Windows.StartMenuExperienceHost_10.0.18362.449_neutral_neutral_cw5n1h2txyewy.
NOTE: For additional information, look for [ActivityId] 02f0fb84-d79d-0001-951a-f1029dd7d501 in the Event Log or use
the command line Get-AppPackageLog -ActivityID 02f0fb84-d79d-0001-951a-f1029dd7d501
At line:1 char:94
- ... | Foreach {Add-AppxPackage -DisableDevelopmentMode -Register "$($_.I ...
+ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
+ CategoryInfo : NotSpecified: (C:\Windows\Syst...ppXManifest.xml:String) [Add-AppxPackage], Exception
+ FullyQualifiedErrorId : DeploymentError,Microsoft.Windows.Appx.PackageManager.Commands.AddAppxPackageCommand
When I try Method 2 and restart the computer, I still can't type into the Windows 10 search box. What I'm trying to do is go to Control Panel. Is there an alternate route that does not involve the search bar?
Thanks!