I tried to "fix" it by re-registing my Cortana download by executing the powershell command:
Get-AppXPackage | Foreach {Add-AppxPackage -DisableDevelopmentMode -Register C:\Windows\SystemApps\Microsoft.Windows.Cortana_cw5n1h2txyewy
Didn't work, received all sorts of invalid manifest errors in angry red. More research yielded a similar thing for the "reinstall" of a corrupted Windows Calendar. I modified the powershell script and executed:
Get-AppXPackage -Name Microsoft.Windows.Cortana | Foreach {Add-AppxPackage -DisableDevelopmentMode -Register "$($_.InstallLocation)\AppXManifest.xml"}
SUCCESS!
A few notes:
- You push run powershell as administrator
- You must have the windows firewall turned on
- You must have the windows store bound to a valid account.
No comments:
Post a Comment