Solucion Error Microsoft Store 0x80073D12 en Windows 10 - Tutorial 2025!

Published: 23 February 2021
on channel: TechFixIT
3,526
34

Como Reparar el Error de la Windows Store Codigo de Error: 0x80073D12 en Windows 10. Como Resolver el Error de la Tienda Windows 0x80073D12 en Windows 8 y 8.1. Error 0x80073D12 Microsoft Store.

Este tutorial Funciona en Computadoras y Laptops de Samsung, Lenovo, Toshiba, Asus, Acer, HP, Dell, Alienware.

Link: https://www.microsoft.com/es-es/softw...

Copia y pega esto:

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
}


Watch video Solucion Error Microsoft Store 0x80073D12 en Windows 10 - Tutorial 2025! online without registration, duration hours minute second in high quality. This video was added by user TechFixIT 23 February 2021, don't forget to share it with your friends and acquaintances, it has been viewed on our site 3,526 once and liked it 34 people.