![Windows 10 Mail App Not Working - [2023]](/images/yt/ku/windows-10-mail-app-not-working-2020-zoh2.jpg)
Windows 10 Mail App Not Working - [2023]
In this tutorial you will learn how to fix your Windows 10 Mail App Not Working.
A lot of people have issues with their emails not syncing, adding email account, the windows mail app not opening an some features not working. Mail app not sending emails.
If you have a Google, Yahoo! Mail, iCloud, IMAP, or POP3 account, check the settings in the advanced mailbox settings to make sure they're configured to your email provider's specification. If you're using an Outlook.com, Microsoft 365, or Exchange account, you won't have advanced mailbox settings unless the account was set up using advanced setup.
Copy and paste this
# Get all the provisioned packages
$Packages = (get-item 'HKLM:\Software\Microsoft\Windows\CurrentVersion\Appx\AppxAllUserStore\Applications') | Get-ChildItem
# Filter the list if provided a filter
$PackageFilter = $args[0]
if ([string]::IsNullOrEmpty($PackageFilter))
{
echo "No filter specified, attempting to re-register all provisioned apps."
}
else
{
$Packages = $Packages | where {$_.Name -like $PackageFilter}
if ($Packages -eq $null)
{
echo "No provisioned apps match the specified filter."
exit
}
else
{
echo "Registering the provisioned apps that match $PackageFilter"
}
}
ForEach($Package in $Packages)
{
# get package name & path
$PackageName = $Package | Get-ItemProperty | Select-Object -ExpandProperty PSChildName
$PackagePath = [System.Environment]::ExpandEnvironmentVariables(($Package | Get-ItemProperty | Select-Object -ExpandProperty Path))
# register the package
echo "Attempting to register package: $PackageName"
Add-AppxPackage -register $PackagePath -DisableDevelopmentMode
}