Can't type in Windows 10 Search Bar? If you are unable to type on windows 10 search bar or windows 10 search bar is not working, then you can fix this issue by following the guide on this video. Most people are unable to type on search bar on windows 10 and some are unable to use cortana and start menu.
Scripts used in the Powershell
First Script:
PowerShell -ExecutionPolicy Unrestricted
Second Script:
Get-AppXPackage -AllUsers |Where-Object {$_.InstallLocation -like "*SystemApps*"} | Foreach {Add-AppxPackage -DisableDevelopmentMode -Register "$($_.InstallLocation)\AppXManifest.xml"}
Third Script:
$manifest = (Get-AppxPackage Microsoft.WindowsStore).InstallLocation + '\AppxManifest.xml' ; Add-AppxPackage -DisableDevelopmentMode -Register $manifest
Scripts used in the Powershell
First Script:
PowerShell -ExecutionPolicy Unrestricted
Second Script:
Get-AppXPackage -AllUsers |Where-Object {$_.InstallLocation -like "*SystemApps*"} | Foreach {Add-AppxPackage -DisableDevelopmentMode -Register "$($_.InstallLocation)\AppXManifest.xml"}
Third Script:
$manifest = (Get-AppxPackage Microsoft.WindowsStore).InstallLocation + '\AppxManifest.xml' ; Add-AppxPackage -DisableDevelopmentMode -Register $manifest
Comments
Post a Comment