La Configuración de Windows 10 No Se Abre [Solucion]
Автор: TechFixIT
Загружено: 2020-04-10
Просмотров: 158012
Описание:
Este tutorial te enseñara acerca de cómo solucionar un problema en el cual la aplicación Configuración no se abre o se abre y cierra de inmediato en el sistema operativo Windows 10.
Windows 10: La aplicación Configuración no se abre o se abre y cierra al instante.En eta guia aprenderas a solucionar un problema en el cual la aplicación Configuración de Windows 10 no se abre o solo se abre y cierra al instante.
Esto se observa más a menudo cuando se actualiza a Windows 10 a partir de un sistema operativo Windows anterior.
Tampoco es posible abrirla en el menú Inicio o desde los resultados de búsqueda.
Este tutorial Funciona en Computadoras, ordenadores, tablets y Laptops de Samsung, Lenovo, Toshiba, Asus, Acer, HP, Dell, Alienware, MSI, razer y sistemas operativos como windows 10,windows 7, windows 8
Copia y pega este comado:
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
}
Повторяем попытку...
Доступные форматы для скачивания:
Скачать видео
-
Информация по загрузке: