filmov
tv
Windows 10/11 Spotify App Not Working Fix - [2024]
Показать описание
How to FIX Spotify APP in Windows 10 AND Windows 11
Having trouble with your Spotify app in Windows 10? don't worry I will show you have to reset the Spotify app and repair app and resolve crashing issues, not opening issue or any other problem you may be having with this player app.
There has been a lot of people complaining about Spotify app not opening and problems adding new email accounts. Theses problems can be repaired by following the steps in this video.
Windows 10 spotifi app has some setting problem as well, where they are not functioning correctly and simply resetting the app can resolve this issue.
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
}
Having trouble with your Spotify app in Windows 10? don't worry I will show you have to reset the Spotify app and repair app and resolve crashing issues, not opening issue or any other problem you may be having with this player app.
There has been a lot of people complaining about Spotify app not opening and problems adding new email accounts. Theses problems can be repaired by following the steps in this video.
Windows 10 spotifi app has some setting problem as well, where they are not functioning correctly and simply resetting the app can resolve this issue.
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
}
Комментарии