kgash
Extraordinary Member
- Joined
- Jan 17, 2011
- Messages
- 43
- Thread Author
-
- #1
Windows mail does not work. I cannot Manage Accounts. When I open the Manage window and click on any account, nothing happens. I cannot add or delete accounts. Mail does not come in on the accounts I have previously set. One of my accounts can send messages but it does not receive them; the other account can neither send or receive.
I have already followed the instructions to remove Mail and reinstalled it from the WIndows store app download and the account settings (and the problems) came back as if they were never removed.
I don't use Mail very often so I am not sure when (and which build) the problem started.
I have already followed the instructions to remove Mail and reinstalled it from the WIndows store app download and the account settings (and the problems) came back as if they were never removed.
I don't use Mail very often so I am not sure when (and which build) the problem started.
Solution
My advice short of re-installing Windows as there may be some underlying issue with Windows would be to use a different email client. Thunderbird is free and works very well. Thunderbird — Software made to make email easier.
- Joined
- Jul 4, 2015
- Messages
- 8,998
You can try resetting the application
- Rename or delete "C:\Users\username\AppData\Local\Packages\microsoft.windowscommunicationsapps_8wekyb3d8bbwe" (I usually just append .old)
- Open a powershell prompt and type the following Add-AppxPackage -Path "C:\Program Files\WindowsApps\microsoft.windowscommunicationsapps_17.8730.21725.0_x64__8wekyb3d8bbwe\AppXManifest.xml" -Register -DisableDevelopmentMode
kgash
Extraordinary Member
- Joined
- Jan 17, 2011
- Messages
- 43
- Thread Author
-
- #3
Thank you for the suggestion. When I tried to rename the folder, I got the message that it can't rename because a file in it is open. How do I fix this?You can try resetting the application
- Rename or delete "C:\Users\username\AppData\Local\Packages\microsoft.windowscommunicationsapps_8wekyb3d8bbwe" (I usually just append .old)
- Open a powershell prompt and type the following Add-AppxPackage -Path "C:\Program Files\WindowsApps\microsoft.windowscommunicationsapps_17.8730.21725.0_x64__8wekyb3d8bbwe\AppXManifest.xml" -Register -DisableDevelopmentMode
kgash
Extraordinary Member
- Joined
- Jan 17, 2011
- Messages
- 43
- Thread Author
-
- #5
I ran the Powershell command and it failed:
PS C:\Users\kgash> Add-AppxPackage -Path "C:\Program Files\WindowsApps\microsoft.windowscommunicationsapps_17.8730.21725.0_x64__8wekyb3d8bbwe\AppXManifest.xml" -Register -DisableDevelopmentMode
Add-AppxPackage : Cannot find path 'C:\Program Files\WindowsApps\microsoft.windowscommunicationsapps_17.8730.21725.0_x64__8wekyb3d8bbwe\AppXManifest.xml' because it
does not exist.
At line:1 char:1
+ Add-AppxPackage -Path "C:\Program Files\WindowsApps\microsoft.windows ...
+ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
+ CategoryInfo : ObjectNotFound: (C:\Program File...ppXManifest.xml:String) [Add-AppxPackage], ItemNotFoundException
+ FullyQualifiedErrorId : PathNotFound,Microsoft.Windows.Appx.PackageManager.Commands.AddAppxPackageCommand
PS C:\Users\kgash> Add-AppxPackage -Path "C:\Program Files\WindowsApps\microsoft.windowscommunicationsapps_17.8730.21725.0_x64__8wekyb3d8bbwe\AppXManifest.xml" -Register -DisableDevelopmentMode
Add-AppxPackage : Cannot find path 'C:\Program Files\WindowsApps\microsoft.windowscommunicationsapps_17.8730.21725.0_x64__8wekyb3d8bbwe\AppXManifest.xml' because it
does not exist.
At line:1 char:1
+ Add-AppxPackage -Path "C:\Program Files\WindowsApps\microsoft.windows ...
+ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
+ CategoryInfo : ObjectNotFound: (C:\Program File...ppXManifest.xml:String) [Add-AppxPackage], ItemNotFoundException
+ FullyQualifiedErrorId : PathNotFound,Microsoft.Windows.Appx.PackageManager.Commands.AddAppxPackageCommand
- Joined
- Jul 4, 2015
- Messages
- 8,998
Try running this
Get-AppxPackage | ? { $_.Name -like "*commun*" } | select InstallLocation
If it returns a path see if it's different. If it is you'll need to substitute the path I gave you for that one.
Get-AppxPackage | ? { $_.Name -like "*commun*" } | select InstallLocation
If it returns a path see if it's different. If it is you'll need to substitute the path I gave you for that one.
kgash
Extraordinary Member
- Joined
- Jan 17, 2011
- Messages
- 43
- Thread Author
-
- #7
If I understand correctly, I ran the command and it returned a location. I pasted that path string in place of the path in the original
PS you sent and ran it. This is what I got in response:
PS C:\Users\kgash> Get-AppxPackage | ? { $_.Name -like "*commun*" } | select InstallLocation
InstallLocation
---------------
C:\Program Files\WindowsApps\microsoft.windowscommunicationsapps_17.8827.21345.0_x64__8wekyb3d8bbwe
PS C:\Users\kgash> Add-AppxPackage -Path "C:\Program Files\WindowsApps\microsoft.windowscommunicationsapps_17.8827.21345.0_x64__8wekyb3d8bbwe" -Register -DisableDevelopmentMode
Add-AppxPackage : An invalid manifest file name was passed to this function. This file must be named AppxManifest.xml
At line:1 char:1
+ Add-AppxPackage -Path "C:\Program Files\WindowsApps\microsoft.windows ...
+ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
+ CategoryInfo : NotSpecified: ) [Add-AppxPackage], ArgumentException
+ FullyQualifiedErrorId : System.ArgumentException,Microsoft.Windows.Appx.PackageManager.Commands.AddAppxPackageCommand
PS you sent and ran it. This is what I got in response:
PS C:\Users\kgash> Get-AppxPackage | ? { $_.Name -like "*commun*" } | select InstallLocation
InstallLocation
---------------
C:\Program Files\WindowsApps\microsoft.windowscommunicationsapps_17.8827.21345.0_x64__8wekyb3d8bbwe
PS C:\Users\kgash> Add-AppxPackage -Path "C:\Program Files\WindowsApps\microsoft.windowscommunicationsapps_17.8827.21345.0_x64__8wekyb3d8bbwe" -Register -DisableDevelopmentMode
Add-AppxPackage : An invalid manifest file name was passed to this function. This file must be named AppxManifest.xml
At line:1 char:1
+ Add-AppxPackage -Path "C:\Program Files\WindowsApps\microsoft.windows ...
+ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
+ CategoryInfo : NotSpecified:
+ FullyQualifiedErrorId : System.ArgumentException,Microsoft.Windows.Appx.PackageManager.Commands.AddAppxPackageCommand
kgash
Extraordinary Member
- Joined
- Jan 17, 2011
- Messages
- 43
- Thread Author
-
- #11
I went to Store and reinstalled Mail.
When I open it, I get a brand new screen with no accounts added. When I click on Add account, nothing happens!
This is the exact behavior I had with Mail before I went through this resetting process.
Apparently, there is something else wrong.
When I open it, I get a brand new screen with no accounts added. When I click on Add account, nothing happens!
This is the exact behavior I had with Mail before I went through this resetting process.
Apparently, there is something else wrong.
- Joined
- Jul 4, 2015
- Messages
- 8,998
My advice short of re-installing Windows as there may be some underlying issue with Windows would be to use a different email client. Thunderbird is free and works very well. Thunderbird — Software made to make email easier.
Similar threads
- Replies
- 0
- Views
- 45
- Replies
- 0
- Views
- 28
- Article
- Replies
- 0
- Views
- 163
- Article
- Replies
- 0
- Views
- 77
- Article
- Replies
- 0
- Views
- 35