
Windows 10 Settings Not Opening - Open Working Fixed - 4 Fix
If Windows 10 settings not opening from start menu when you want to open advanced system settings, or network and internet settings, or change adapter or Bluetooth settings app does not open or flashes and closes instantaneously usual after windows update this video will help you to fix this issue and help loading your setting without error.
No matter which computer you are using AMD or Intel, or which graphics card you are suing Radeon or NVDA we will help you to solve windows 10 settings not responding problems.
Command In YouTube Video
# 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
}
This video will help to solve this error on computers, laptops, desktops running Windows 10. Works on all computers and laptops (HP, Dell, Asus, Acer, Lenovo, Samsung, Toshiba).
#SettingsNotOpening #Windows10SettingsNotOpening