Situatie
Nu se poate scrie in bara de cautare in Windows 10.
Solutie
Pasi de urmat
Metoda 1:
- Se deschide Command prompt cu drept de administrator.
- Se scrie comanda urmatoare si se apasa enter: PowerShell -ExecutionPolicy Unrestricted
- In fereastra PowerShell se scrie comanda urmatoare si se apasa enter: Get-AppXPackage -AllUsers |Where-Object {$_.InstallLocation -like “*SystemApps*”} | Foreach {Add-AppxPackage -DisableDevelopmentMode -Register “$($_.InstallLocation)AppXManifest.xml”}
Metoda 2
- Se deschide Task manager
- Se da click pe File – Run New Task
- Se bifeaza “Create this task with administrative privileges”
- Se scrie Poweshell, click Ok
- In fereastra Powershell se scrie urmatoarea comanda si se apasa enter: $manifest = (Get-AppxPackage Microsoft.WindowsStore).InstallLocation + ‘AppxManifest.xml’ ; Add-AppxPackage -DisableDevelopmentMode -Register $manifest
- Se inchide fereastra Powershell
- Se reporneste computer-ul
Leave A Comment?