Çözüldü Microsoft Store 0x80072EFD hatası

Bu konu çözüldü olarak işaretlenmiştir. Çözülmediğini düşünüyorsanız konuyu rapor edebilirsiniz.

Crownguard

Moderasyon Ekibi Üyesi
Kıdemli Moderatör
Katılım
27 Ocak 2022
Mesajlar
8.191
Makaleler
18
Çözümler
100
Daha fazla  
Cinsiyet
Erkek
Ne yapmam lazım? Herhangi bir şey indiremiyorum.

1743258896090.png


wsreset denedim, aşağıdaki kodu denedim, tarih ve saatim doğru.

Kod:
Get-AppxPackage -allusers *WindowsStore* | Foreach {Add-AppxPackage -DisableDevelopmentMode -Register "$($_.InstallLocation)\AppXManifest.xml"}

@Prime777 @Ellie Williams rahatsız ediyorum.
 
Çözüm
@turko35408 @Bayram Reis GPT 5 ile çözdüm. Çözümün ise özetini aşağıya ekledim. Lâkin aşağıdakilerden önce söylemem gerekir ki evvela 24H2 ISO'sunun içini açıp setup.exe'den kişisel dosyaları ve programları koruyarak yükseltme yaptım, olmadı. Ardından kişisel dosyaları koruyarak Ayarlar'dan sıfırlama yaptım, yine olmadı. Sonra aşağıdakilerini yaptım.

Çözüm, Microsoft Store uygulamasını ve çalışması için gerekli olan tüm temel "bağımlılık" paketlerini manuel olarak bulup indirmeye, kuruluma engel olan arka plan süreçlerini sonlandırmaya ve ardından PowerShell komutlarıyla tüm bileşenleri sisteme sırayla kurup kaydetmeye dayanıyordu.

Uygulanan Adımlar
  1. Gerekli Kurulum Paketlerinin Bulunması ve İndirilmesi:
    Microsoft'un sunucularından dosya indirme bağlantıları oluşturan store.rg-adguard.net sitesi kullanıldı.
    • Doğru Arama Yöntemi: En güvenilir sonuç için arama türü olarak "PackageFamilyName" seçildi ve arama kutusuna Microsoft.WindowsStore_8wekyb3d8bbwe yazıldı.
    • Gerekli Dosyalar İndirildi:Bu arama sonucunda çıkan listeden, x64 mimarisine uygun olan aşağıdaki temel paketlerin en güncel sürümleri indirildi:
      • Ana Store Paketi: Microsoft.WindowsStore_....msixbundle"
      • Bağımlılık 1 (VCLibs): Microsoft.VCLibs.140.00.UWPDesktop_..._x64__...appx
      • Bağımlılık 2 (UI.Xaml): Microsoft.UI.Xaml.2.x_..._x64__...appx
      • Bağımlılık 3 (.NET Native Runtime): Microsoft.NET.Native.Runtime.x.x_..._x64__...appx
      • Bağımlılık 4 (.NET Native Framework): Microsoft.NET.Native.Framework.x.x_..._x64__...appx
    • Dosyaların Toplanması: İndirilen tüm bu dosyalar, kolay erişim için bilgisayarda tek bir klasörde (ör: C:\StoreFix) bir araya getirildi.
  2. Adım 2: Kurulum Hatalarının Giderilmesi (Hata Kodu: 0x80073D02):
    İlk kurulum denemeleri, paketin değiştirmeye çalıştığı kaynakların başka uygulamalar tarafından kullanıldığını belirten 0x80073D02 hatasıyla başarısız oldu.
    Çözüm: Kuruluma başlamadan önce, bu kilitlenmeye neden olan arka plan uygulamalarını ve servisleri tespit edip durdurmak için özel bir PowerShell betiği çalıştırıldı. Bu betik, aşağıdaki gibi engelleyici olabilecek tüm süreçleri zorla sonlandırdı:
    • Oyun ile ilgili servisler (Xbox, Gaming Services)
    • Masaüstü uygulamaları (WhatsApp)
    • Windows arayüz bileşenleri (Widgets, Telefon Bağlantısı)
    • Genel olarak "WindowsApps" klasöründen çalışan tüm diğer süreçler.

      Bash:
      $ErrorActionPreference = "SilentlyContinue"
      
      # 1) Bloke edenleri kapat
      $blockers = "WhatsApp*","Xbox*","GameBar*","Gaming*","ScreenSketch",
                  "Widgets*","PhoneExperienceHost","YourPhone",
                  "DTSSoundUnbound","DTS*"
      foreach ($b in $blockers) {
        Get-Process -Name $b | Stop-Process -Force
      }
      Get-Process | Where-Object { $_.Path -like "*WindowsApps*" } | Stop-Process -Force
      Stop-Service -Name GamingServices,GamingServicesNet -Force
      
      # 2) Bağımlılıkları ve Store'u kur
      Add-AppxPackage -ForceApplicationShutdown -ForceUpdateFromAnyVersion .\Microsoft.VCLibs*.appx
      Add-AppxPackage -ForceApplicationShutdown -ForceUpdateFromAnyVersion .\Microsoft.UI.Xaml*.appx
      Add-AppxPackage -ForceApplicationShutdown -ForceUpdateFromAnyVersion .\Microsoft.NET.Native.Runtime*.appx
      Add-AppxPackage -ForceApplicationShutdown -ForceUpdateFromAnyVersion .\Microsoft.NET.Native.Framework*.appx
      Add-AppxPackage -ForceApplicationShutdown -ForceUpdateFromAnyVersion .\Microsoft.WindowsStore*.appxbundle -DeferRegistrationWhenPackagesAreInUse
      
      # 3) Store'u yeniden register et
      $store = Get-AppxPackage -AllUsers Microsoft.WindowsStore
      if ($store -and (Test-Path ($store.InstallLocation + "\AppxManifest.xml"))) {
        Add-AppxPackage -DisableDevelopmentMode -Register ($store.InstallLocation + "\AppxManifest.xml")
      }
      
      # 4) ms-windows-store protokolünü (kullanıcı için) oluştur/onar
      New-Item -Path "HKCU:\Software\Classes\ms-windows-store\shell\open\command" -Force | Out-Null
      New-ItemProperty -Path "HKCU:\Software\Classes\ms-windows-store" -Name "(default)" -Value "URL:ms-windows-store Protocol" -PropertyType String -Force | Out-Null
      New-ItemProperty -Path "HKCU:\Software\Classes\ms-windows-store" -Name "URL Protocol" -Value "" -PropertyType String -Force | Out-Null
      New-ItemProperty -Path "HKCU:\Software\Classes\ms-windows-store\shell\open\command" -Name "(default)" -Value "C:\Windows\explorer.exe ms-windows-store:" -PropertyType String -Force | Out-Null
      
      # 5) Önbellek ve test
      wsreset.exe
      start "ms-windows-store://home"

    • Fakat bu adımlara rağmen imleçte yükleniyor ikonu varken imleç hızlıca yanıp sönüyordu. Ardından aşağıdaki adıma geçildi.

  3. Adım 3: Nihai ve Kapsamlı Onarım Betiğinin Uygulanması:
    Tüm paketler hazırlandıktan ve engelleyici süreçler anlaşıldıktan sonra, onarımı başından sonuna kadar otomatikleştiren nihai bir PowerShell betiği kullanıldı. Bu betik sırasıyla aşağıdaki kritik işlemleri gerçekleştirdi:
    • Kilitleri Tekrar Temizledi: İkinci adımda olduğu gibi, arka planda çalışan ve kuruluma engel olabilecek tüm bilinen uygulamaları ve servisleri yeniden durdurarak temiz bir başlangıç sağladı.
    • Bağımlılıkları Kurdu: Öncelikle, indirilen VCLibs, UI.Xaml ve .NET Native paketlerini sisteme zorla kurdu. Bu işlem, Store'un çalışabilmesi için temel altyapıyı hazırladı.
    • Ana Store Paketini Kurdu: Bağımlılıklar yüklendikten sonra ana Microsoft.WindowsStore paketini sisteme yükledi.
    • Uygulamayı Yeniden Kaydetti (Register): Store'un sisteme düzgün bir şekilde tanıtılması ve sistemsel özelliklere erişebilmesi için paket manifest dosyasını (AppxManifest.xml) yeniden kaydetti. Bu adım, uygulamanın Başlat menüsünde görünmesini ve sistemle entegre olmasını sağlar.
    • Protokolü Onardı: En kritik sorunlardan biri olan ms-windows-store:// bağlantılarının çalışmamasını çözmek için Windows Kayıt Defteri'nde (Registry) bu protokolün işleyicilerini hem kullanıcı (HKCU) hem de sistem (HKLM) düzeyinde manuel olarak oluşturdu ve onardı.
    • Önbelleği Sıfırladı ve Başlattı: Son olarak, olası bozuk verileri temizlemek için wsreset.exe komutunu yürüttü, Windows Gezgini'ni yeniden başlatarak değişikliklerin tam olarak uygulanmasını sağladı ve ardından Microsoft Store'un gelmesini sağladı.

      Betik:
      Bash:
      # 1) Kilit tutabilecek her şeyi kapat$blockers = "WinStore*","WSReset","backgroundTaskHost","Xbox*","GameBar*",
                  "Gaming*","Widgets*","WidgetService","PhoneExperienceHost",
                  "YourPhone","NitroSense*","DTSSoundUnbound","DTS*"
      foreach($b in $blockers){ Get-Process -Name $b -ErrorAction SilentlyContinue | Stop-Process -Force -ErrorAction SilentlyContinue }
      Stop-Service -Name GamingServices,GamingServicesNet -Force -ErrorAction SilentlyContinue
      Get-Process | Where-Object { $_.Path -like "*WindowsApps*" } | Stop-Process -Force -ErrorAction SilentlyContinue
      
      # 2) (Varsa) bağımlılıkları yeniden zorla – zarar vermez
      Add-AppxPackage -ForceApplicationShutdown -ForceUpdateFromAnyVersion .\Microsoft.VCLibs*.appx
      $ux = Get-ChildItem . -Include "Microsoft.UI.Xaml.*_x64__8wekyb3d8bbwe.appx" | Sort-Object Name -Descending | Select-Object -First 1
      if($ux){ Add-AppxPackage -ForceApplicationShutdown -ForceUpdateFromAnyVersion $ux.FullName }
      Add-AppxPackage -ForceApplicationShutdown -ForceUpdateFromAnyVersion .\Microsoft.NET.Native.Runtime*_x64__8wekyb3d8bbwe.appx
      Add-AppxPackage -ForceApplicationShutdown -ForceUpdateFromAnyVersion .\Microsoft.NET.Native.Framework*_x64__8wekyb3d8bbwe.appx
      
      # 3) Asıl: Microsoft.WindowsStore bundle’ı kur
      $bundle = Get-ChildItem . -Include "Microsoft.WindowsStore*.msixbundle","Microsoft.WindowsStore*.appxbundle" | Sort-Object Name -Descending | Select-Object -First 1
      if(-not $bundle){ Write-Host ">>> Store bundle bulunamadı: Microsoft.WindowsStore*.msixbundle" -ForegroundColor Yellow; break }
      Add-AppxPackage -ForceApplicationShutdown -ForceUpdateFromAnyVersion $bundle.FullName -DeferRegistrationWhenPackagesAreInUse
      
      # 4) Store’u yeniden register et + protokolü onar
      $pkg = Get-AppxPackage -AllUsers Microsoft.WindowsStore
      if($pkg){ Add-AppxPackage -DisableDevelopmentMode -Register "$($pkg.InstallLocation)\AppxManifest.xml" }
      
      New-Item -Path "HKCU:\Software\Classes\ms-windows-store\shell\open\command" -Force | Out-Null
      New-ItemProperty -Path "HKCU:\Software\Classes\ms-windows-store" -Name "(default)" -Value "URL:ms-windows-store Protocol" -PropertyType String -Force | Out-Null
      New-ItemProperty -Path "HKCU:\Software\Classes\ms-windows-store" -Name "URL Protocol" -Value "" -PropertyType String -Force | Out-Null
      New-ItemProperty -Path "HKCU:\Software\Classes\ms-windows-store\shell\open\command" -Name "(default)" -Value "C:\Windows\explorer.exe ms-windows-store:" -PropertyType String -Force | Out-Null
      
      # 5) Explorer’ı yenile ve Store’u aç
      Stop-Process -Name explorer -Force
      Start-Process explorer.exe
      Start-Process "ms-windows-store://home"

İlk tıklayışta açılmadı, bir müddet bekleyince açıldı, ikonu güncellendi ve birazdan düzeldi.

Ayrıca Windows Update de hata veriyordu önceden, bu adımları uyguladıktan sonra Windows Update'de "Onarmak ister misiniz?" tarzı sarı renkli bir uyarı belirdi. Ben de hazır gelmiş, onayladım. Şu an o da %94'te.

1755686838752.png
@Crownguard

 
Ne yapmam lazım? Herhangi bir şey indiremiyorum.

Eki Görüntüle 2456958

wsreset denedim, aşağıdaki kodu denedim, tarih ve saatim doğru.

Kod:
Get-AppxPackage -allusers *WindowsStore* | Foreach {Add-AppxPackage -DisableDevelopmentMode -Register "$($_.InstallLocation)\AppXManifest.xml"}

@Prime777 @Ellie Williams rahatsız ediyorum.
@Crownguard

Bu yöntem ile çözülmezse alternatif yöntemleri söyleyeceğim.
 
@Crownguard

Tabi, deniyorum hemen. Müsait değildim.

@turko35408 @Bayram Reis çalışmadı maalesef.

Yaptıktan sonra wsreset de yaptım, olmadı.
 
Tabi, deniyorum hemen. Müsait değildim.

@turko35408 @Bayram Reis çalışmadı maalesef.

Yaptıktan sonra wsreset de yaptım, olmadı.
VPN veya DNS aracı varsa kapatın.
Ağ ayarlarını sıfırlayın.
Yönetici izinli CMD ye:
Kod:
sc stop msiserver
sc stop InstallService
sc stop MicrosoftEdgeElevationService
sc stop edgeupdate
sc stop edgeupdatem
sc start msiserver
sc start InstallService
sc start MicrosoftEdgeElevationService
sc start edgeupdate
sc start edgeupdatem
netsh winsock reset
netsh int ip reset
ipconfig /release
ipconfig /renew
ipconfig /flushdns
wsreset
Get-AppXPackage -AllUsers | Foreach {Add-AppxPackage -DisableDevelopmentMode -Register "$($_.InstallLocation)\AppXManifest.xml"}
Bu işlemlerden sonra düzelmesi gerek.
 
VPN veya DNS aracı varsa kapatın.
Ağ ayarlarını sıfırlayın.
Yönetici izinli CMD ye:
Kod:
sc stop msiserver
sc stop InstallService
sc stop MicrosoftEdgeElevationService
sc stop edgeupdate
sc stop edgeupdatem
sc start msiserver
sc start InstallService
sc start MicrosoftEdgeElevationService
sc start edgeupdate
sc start edgeupdatem
netsh winsock reset
netsh int ip reset
ipconfig /release
ipconfig /renew
ipconfig /flushdns
wsreset
Get-AppXPackage -AllUsers | Foreach {Add-AppxPackage -DisableDevelopmentMode -Register "$($_.InstallLocation)\AppXManifest.xml"}
Bu işlemlerden sonra düzelmesi gerek.
CMD mi PowerShell mi?

@Bayram Reis iki türlü de denedim, olmadı maalesef. Bir de şöyle çıktı da aldım.

Kod:
Add-AppxPackage : Deployment failed with HRESULT: 0x80073CFD, Yüklemenin bir önkoşulu karşılanamadı.                    Package Microsoft.549981C3F5F10_3.2204.14815.0_x64__8wekyb3d8bbwe is end of life and can no longer be installed.        NOTE: For additional information, look for [ActivityId] 63f5e961-a0e0-000c-00fc-fd63e0a0db01 in the Event Log or use th e command line Get-AppPackageLog -ActivityID 63f5e961-a0e0-000c-00fc-fd63e0a0db01                                       At line:17 char:38                                                                                                      + ...  | Foreach {Add-AppxPackage -DisableDevelopmentMode -Register "$($_.I ...                                         +                 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~                                                 + CategoryInfo          : NotSpecified: (C:\Program File...ppXManifest.xml:String) [Add-AppxPackage], Exception         + FullyQualifiedErrorId : DeploymentError,Microsoft.Windows.Appx.PackageManager.Commands.AddAppxPackageCommand                                                                                                                              Add-AppxPackage : Deployment failed with HRESULT: 0x80073D06, Bu paketin daha sonraki bir sürümü zaten yüklü olduğundan  paket yüklenemedi.                                                                                                     Windows cannot install package Microsoft.VCLibs.140.00_14.0.30704.0_x64__8wekyb3d8bbwe because it has version 14.0.3070 4.0. A higher version 14.0.33519.0 of this package is already installed.                                                NOTE: For additional information, look for [ActivityId] 63f5e961-a0e0-0009-957c-fd63e0a0db01 in the Event Log or use th e command line Get-AppPackageLog -ActivityID 63f5e961-a0e0-0009-957c-fd63e0a0db01                                       At line:17 char:38                                                                                                      + ...  | Foreach {Add-AppxPackage -DisableDevelopmentMode -Register "$($_.I ...                                         +                 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~                                                 + CategoryInfo          : NotSpecified: (C:\Program File...ppXManifest.xml:String) [Add-AppxPackage], Exception         + FullyQualifiedErrorId : DeploymentError,Microsoft.Windows.Appx.PackageManager.Commands.AddAppxPackageCommand                                                                                                                              Add-AppxPackage : Deployment failed with HRESULT: 0x80073D02, Paket, değiştirdiği kaynaklar şu anda kullanımda olduğund an yüklenemedi.                                                                                                         error 0x80073D02: Unable to install because the following apps need to be closed 5319275A.WhatsAppDesktop_2.2506.4.0_x6 4__cv1g1gvanyjgm Microsoft.WindowsStore_22502.1401.4.0_x64__8wekyb3d8bbwe SAMSUNGELECTRONICSCO.LTD.GalaxyBuds_6.6.4.0_x 64__3c1yjt4zspk6g Microsoft.GamingServices_27.99.7001.0_x64__8wekyb3d8bbwe.                                             NOTE: For additional information, look for [ActivityId] 63f5e961-a0e0-0001-01d0-0f64e0a0db01 in the Event Log or use th e command line Get-AppPackageLog -ActivityID 63f5e961-a0e0-0001-01d0-0f64e0a0db01                                       At line:17 char:38                                                                                                      + ...  | Foreach {Add-AppxPackage -DisableDevelopmentMode -Register "$($_.I ...                                         +                 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~                                                 + CategoryInfo          : NotSpecified: (C:\Program File...ppXManifest.xml:String) [Add-AppxPackage], Exception         + FullyQualifiedErrorId : DeploymentError,Microsoft.Windows.Appx.PackageManager.Commands.AddAppxPackageCommand                                                                                                                              Add-AppxPackage : Deployment failed with HRESULT: 0x80073D02, Paket, değiştirdiği kaynaklar şu anda kullanımda olduğund an yüklenemedi.                                                                                                         error 0x80073D02: Unable to install because the following apps need to be closed 5319275A.WhatsAppDesktop_2.2506.4.0_x6 4__cv1g1gvanyjgm Microsoft.WindowsStore_22502.1401.4.0_x64__8wekyb3d8bbwe SAMSUNGELECTRONICSCO.LTD.GalaxyBuds_6.6.4.0_x 64__3c1yjt4zspk6g Microsoft.GamingServices_27.99.7001.0_x64__8wekyb3d8bbwe.                                             NOTE: For additional information, look for [ActivityId] 63f5e961-a0e0-0005-030e-fe63e0a0db01 in the Event Log or use th e command line Get-AppPackageLog -ActivityID 63f5e961-a0e0-0005-030e-fe63e0a0db01                                       At line:17 char:38                                                                                                      + ...  | Foreach {Add-AppxPackage -DisableDevelopmentMode -Register "$($_.I ...                                         +                 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~                                                 + CategoryInfo          : NotSpecified: (C:\Program File...ppXManifest.xml:String) [Add-AppxPackage], Exception         + FullyQualifiedErrorId : DeploymentError,Microsoft.Windows.Appx.PackageManager.Commands.AddAppxPackageCommand                                                                                                                              Add-AppxPackage : Deployment failed with HRESULT: 0x80073D06, Bu paketin daha sonraki bir sürümü zaten yüklü olduğundan  paket yüklenemedi.                                                                                                     Windows cannot install package Microsoft.UI.Xaml.2.8_8.2310.30001.0_x64__8wekyb3d8bbwe because it has version 8.2310.30 001.0. A higher version 8.2501.31001.0 of this package is already installed.                                            NOTE: For additional information, look for [ActivityId] 63f5e961-a0e0-0007-1828-0d64e0a0db01 in the Event Log or use th e command line Get-AppPackageLog -ActivityID 63f5e961-a0e0-0007-1828-0d64e0a0db01                                       At line:17 char:38                                                                                                      + ...  | Foreach {Add-AppxPackage -DisableDevelopmentMode -Register "$($_.I ...                                         +                 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~                                                 + CategoryInfo          : NotSpecified: (C:\Program File...ppXManifest.xml:String) [Add-AppxPackage], Exception         + FullyQualifiedErrorId : DeploymentError,Microsoft.Windows.Appx.PackageManager.Commands.AddAppxPackageCommand                                                                                                                              Add-AppxPackage : Deployment failed with HRESULT: 0x80073D02, Paket, değiştirdiği kaynaklar şu anda kullanımda olduğund an yüklenemedi.                                                                                                         error 0x80073D02: Unable to install because the following apps need to be closed 5319275A.WhatsAppDesktop_2.2506.4.0_x6 4__cv1g1gvanyjgm Microsoft.WindowsStore_22502.1401.4.0_x64__8wekyb3d8bbwe MicrosoftWindows.Client.WebExperience_525.130 1.30.0_x64__cw5n1h2txyewy SAMSUNGELECTRONICSCO.LTD.GalaxyBuds_6.6.4.0_x64__3c1yjt4zspk6g ULICTekInc.NitroSenseforNotebo ok_5.0.1452.0_x64__nt9dgb7efx6bt.                                                                                       NOTE: For additional information, look for [ActivityId] 63f5e961-a0e0-0007-102c-0d64e0a0db01 in the Event Log or use th e command line Get-AppPackageLog -ActivityID 63f5e961-a0e0-0007-102c-0d64e0a0db01                                       At line:17 char:38                                                                                                      + ...  | Foreach {Add-AppxPackage -DisableDevelopmentMode -Register "$($_.I ...                                         +                 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~                                                 + CategoryInfo          : NotSpecified: (C:\Program File...ppXManifest.xml:String) [Add-AppxPackage], Exception         + FullyQualifiedErrorId : DeploymentError,Microsoft.Windows.Appx.PackageManager.Commands.AddAppxPackageCommand                                                                                                                              Add-AppxPackage : Deployment failed with HRESULT: 0x80073D02, Paket, değiştirdiği kaynaklar şu anda kullanımda olduğund an yüklenemedi.                                                                                                         error 0x80073D02: Unable to install because the following apps need to be closed DTSInc.DTSSoundUnbound_2023.3.1.0_x64_ _t5j2fzbtdg37r.                                                                                                         NOTE: For additional information, look for [ActivityId] 63f5e961-a0e0-000c-1015-fe63e0a0db01 in the Event Log or use th e command line Get-AppPackageLog -ActivityID 63f5e961-a0e0-000c-1015-fe63e0a0db01                                       At line:17 char:38                                                                                                      + ...  | Foreach {Add-AppxPackage -DisableDevelopmentMode -Register "$($_.I ...                                         +                 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~                                                 + CategoryInfo          : NotSpecified: (C:\Program File...ppXManifest.xml:String) [Add-AppxPackage], Exception         + FullyQualifiedErrorId : DeploymentError,Microsoft.Windows.Appx.PackageManager.Commands.AddAppxPackageCommand                                                                                                                              Add-AppxPackage : Cannot find path 'C:\AppXManifest.xml' because it does not exist.                                     At line:17 char:38                                                                                                      + ...  | Foreach {Add-AppxPackage -DisableDevelopmentMode -Register "$($_.I ...                                         +                 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~                                                 + CategoryInfo          : ObjectNotFound: (C:\AppXManifest.xml:String) [Add-AppxPackage], ItemNotFoundException         + FullyQualifiedErrorId : PathNotFound,Microsoft.Windows.Appx.PackageManager.Commands.AddAppxPackageCommand                                                                                                                                 Add-AppxPackage : Cannot find path 'C:\AppXManifest.xml' because it does not exist.                                     At line:17 char:38                                                                                                      + ...  | Foreach {Add-AppxPackage -DisableDevelopmentMode -Register "$($_.I ...                                         +                 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~                                                 + CategoryInfo          : ObjectNotFound: (C:\AppXManifest.xml:String) [Add-AppxPackage], ItemNotFoundException         + FullyQualifiedErrorId : PathNotFound,Microsoft.Windows.Appx.PackageManager.Commands.AddAppxPackageCommand                                                                                                                                 Add-AppxPackage : Deployment failed with HRESULT: 0x80073D02, Paket, değiştirdiği kaynaklar şu anda kullanımda olduğund an yüklenemedi.                                                                                                         error 0x80073D02: Unable to install because the following apps need to be closed microsoft.windowscommunicationsapps_16 005.14326.20544.0_x64__8wekyb3d8bbwe.                                                                                   NOTE: For additional information, look for [ActivityId] 63f5e961-a0e0-000a-2177-0b64e0a0db01 in the Event Log or use th e command line Get-AppPackageLog -ActivityID 63f5e961-a0e0-000a-2177-0b64e0a0db01                                       At line:17 char:38                                                                                                      + ...  | Foreach {Add-AppxPackage -DisableDevelopmentMode -Register "$($_.I ...                                         +                 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~                                                 + CategoryInfo          : NotSpecified: (C:\Program File...ppXManifest.xml:String) [Add-AppxPackage], Exception         + FullyQualifiedErrorId : DeploymentError,Microsoft.Windows.Appx.PackageManager.Commands.AddAppxPackageCommand                                                                                                                              Add-AppxPackage : Deployment failed with HRESULT: 0x80073CFD, Yüklemenin bir önkoşulu karşılanamadı.                    Package Microsoft.Getstarted_1.3.42522.0_neutral_split.scale-200_8wekyb3d8bbwe is end of life and can no longer be inst alled.                                                                                                                  NOTE: For additional information, look for [ActivityId] 63f5e961-a0e0-000a-db77-0b64e0a0db01 in the Event Log or use th e command line Get-AppPackageLog -ActivityID 63f5e961-a0e0-000a-db77-0b64e0a0db01                                       At line:17 char:38                                                                                                      + ...  | Foreach {Add-AppxPackage -DisableDevelopmentMode -Register "$($_.I ...                                         +                 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~                                                 + CategoryInfo          : NotSpecified: (C:\Program File...ppXManifest.xml:String) [Add-AppxPackage], Exception         + FullyQualifiedErrorId : DeploymentError,Microsoft.Windows.Appx.PackageManager.Commands.AddAppxPackageCommand                                                                                                                              Add-AppxPackage : Cannot find path 'C:\Windows\SystemApps\LKG\MicrosoftWindows.LKG.Search_cw5n1h2txyewy\AppXManifest.xm l' because it does not exist.                                                                                           At line:17 char:38                                                                                                      + ...  | Foreach {Add-AppxPackage -DisableDevelopmentMode -Register "$($_.I ...                                         +                 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~                                                 + CategoryInfo          : ObjectNotFound: (C:\Windows\Syst...ppXManifest.xml:String) [Add-AppxPackage], ItemNotFou     ndException                                                                                                              + FullyQualifiedErrorId : PathNotFound,Microsoft.Windows.Appx.PackageManager.Commands.AddAppxPackageCommand                                                                                                                                 Add-AppxPackage : Cannot find path 'C:\Windows\SystemApps\NcsiUwpApp_8wekyb3d8bbwe\AppXManifest.xml' because it does no t exist.                                                                                                                At line:17 char:38                                                                                                      + ...  | Foreach {Add-AppxPackage -DisableDevelopmentMode -Register "$($_.I ...                                         +                 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~                                                 + CategoryInfo          : ObjectNotFound: (C:\Windows\Syst...ppXManifest.xml:String) [Add-AppxPackage], ItemNotFou     ndException                                                                                                              + FullyQualifiedErrorId : PathNotFound,Microsoft.Windows.Appx.PackageManager.Commands.AddAppxPackageCommand                                                                                                                                 Add-AppxPackage : Deployment failed with HRESULT: 0x80073D02, Paket, değiştirdiği kaynaklar şu anda kullanımda olduğund an yüklenemedi.                                                                                                         error 0x80073D02: Unable to install because the following apps need to be closed ULICTekInc.NitroSenseforNotebook_5.0.1 452.0_x64__nt9dgb7efx6bt.                                                                                               NOTE: For additional information, look for [ActivityId] 63f5e961-a0e0-000a-a997-0b64e0a0db01 in the Event Log or use th e command line Get-AppPackageLog -ActivityID 63f5e961-a0e0-000a-a997-0b64e0a0db01                                       At line:17 char:38                                                                                                      + ...  | Foreach {Add-AppxPackage -DisableDevelopmentMode -Register "$($_.I ...                                         +                 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~                                                 + CategoryInfo          : NotSpecified: (C:\Program File...ppXManifest.xml:String) [Add-AppxPackage], Exception         + FullyQualifiedErrorId : DeploymentError,Microsoft.Windows.Appx.PackageManager.Commands.AddAppxPackageCommand                                                                                                                              Add-AppxPackage : Cannot find path 'C:\Windows\SystemApps\MicrosoftWindows.Client.AIX_cw5n1h2txyewy\AppXManifest.xml' b ecause it does not exist.                                                                                               At line:17 char:38                                                                                                      + ...  | Foreach {Add-AppxPackage -DisableDevelopmentMode -Register "$($_.I ...                                         +                 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~                                                 + CategoryInfo          : ObjectNotFound: (C:\Windows\Syst...ppXManifest.xml:String) [Add-AppxPackage], ItemNotFou     ndException                                                                                                              + FullyQualifiedErrorId : PathNotFound,Microsoft.Windows.Appx.PackageManager.Commands.AddAppxPackageCommand                                                                                                                                 Add-AppxPackage : Deployment failed with HRESULT: 0x80073D02, Paket, değiştirdiği kaynaklar şu anda kullanımda olduğund an yüklenemedi.                                                                                                         error 0x80073D02: Unable to install because the following apps need to be closed SAMSUNGELECTRONICSCO.LTD.GalaxyBuds_6. 6.4.0_x64__3c1yjt4zspk6g.                                                                                               NOTE: For additional information, look for [ActivityId] 63f5e961-a0e0-0008-0b4f-fd63e0a0db01 in the Event Log or use th e command line Get-AppPackageLog -ActivityID 63f5e961-a0e0-0008-0b4f-fd63e0a0db01                                       At line:17 char:38                                                                                                      + ...  | Foreach {Add-AppxPackage -DisableDevelopmentMode -Register "$($_.I ...                                         +                 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~                                                 + CategoryInfo          : NotSpecified: (C:\Program File...ppXManifest.xml:String) [Add-AppxPackage], Exception         + FullyQualifiedErrorId : DeploymentError,Microsoft.Windows.Appx.PackageManager.Commands.AddAppxPackageCommand                                                                                                                              Add-AppxPackage : Deployment failed with HRESULT: 0x80073D06, Bu paketin daha sonraki bir sürümü zaten yüklü olduğundan  paket yüklenemedi.                                                                                                     Windows cannot install package Microsoft.WindowsAppRuntime.1.5_5001.311.2039.0_x64__8wekyb3d8bbwe because it has versio n 5001.311.2039.0. A higher version 5001.373.1736.0 of this package is already installed.                               NOTE: For additional information, look for [ActivityId] 63f5e961-a0e0-0001-0f6d-1064e0a0db01 in the Event Log or use th e command line Get-AppPackageLog -ActivityID 63f5e961-a0e0-0001-0f6d-1064e0a0db01                                       At line:17 char:38                                                                                                      + ...  | Foreach {Add-AppxPackage -DisableDevelopmentMode -Register "$($_.I ...                                         +                 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~                                                 + CategoryInfo          : NotSpecified: (C:\Program File...ppXManifest.xml:String) [Add-AppxPackage], Exception         + FullyQualifiedErrorId : DeploymentError,Microsoft.Windows.Appx.PackageManager.Commands.AddAppxPackageCommand                                                                                                                              Add-AppxPackage : Deployment failed with HRESULT: 0x80073D02, Paket, değiştirdiği kaynaklar şu anda kullanımda olduğund an yüklenemedi.                                                                                                         error 0x80073D02: Unable to install because the following apps need to be closed Microsoft.WindowsTerminal_1.21.3231.0_ x64__8wekyb3d8bbwe.                                                                                                     NOTE: For additional information, look for [ActivityId] 63f5e961-a0e0-0009-6ad3-fd63e0a0db01 in the Event Log or use th e command line Get-AppPackageLog -ActivityID 63f5e961-a0e0-0009-6ad3-fd63e0a0db01                                       At line:17 char:38                                                                                                      + ...  | Foreach {Add-AppxPackage -DisableDevelopmentMode -Register "$($_.I ...                                         +                 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~                                                 + CategoryInfo          : NotSpecified: (C:\Program File...ppXManifest.xml:String) [Add-AppxPackage], Exception         + FullyQualifiedErrorId : DeploymentError,Microsoft.Windows.Appx.PackageManager.Commands.AddAppxPackageCommand                                                                                                                              Add-AppxPackage : Deployment failed with HRESULT: 0x80073D02, Paket, değiştirdiği kaynaklar şu anda kullanımda olduğund an yüklenemedi.                                                                                                         error 0x80073D02: Unable to install because the following apps need to be closed MicrosoftWindows.Client.WebExperience_ 525.1301.30.0_x64__cw5n1h2txyewy.                                                                                       NOTE: For additional information, look for [ActivityId] 63f5e961-a0e0-0009-9ae1-fd63e0a0db01 in the Event Log or use th e command line Get-AppPackageLog -ActivityID 63f5e961-a0e0-0009-9ae1-fd63e0a0db01                                       At line:17 char:38                                                                                                      + ...  | Foreach {Add-AppxPackage -DisableDevelopmentMode -Register "$($_.I ...                                         +                 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~                                                 + CategoryInfo          : NotSpecified: (C:\Program File...ppXManifest.xml:String) [Add-AppxPackage], Exception         + FullyQualifiedErrorId : DeploymentError,Microsoft.Windows.Appx.PackageManager.Commands.AddAppxPackageCommand                                                                                                                              Add-AppxPackage : Deployment failed with HRESULT: 0x80073D02, Paket, değiştirdiği kaynaklar şu anda kullanımda olduğund an yüklenemedi.                                                                                                         error 0x80073D02: Unable to install because the following apps need to be closed 5319275A.WhatsAppDesktop_2.2506.4.0_x6 4__cv1g1gvanyjgm.                                                                                                       NOTE: For additional information, look for [ActivityId] 63f5e961-a0e0-000f-06e5-0264e0a0db01 in the Event Log or use th e command line Get-AppPackageLog -ActivityID 63f5e961-a0e0-000f-06e5-0264e0a0db01                                       At line:17 char:38                                                                                                      + ...  | Foreach {Add-AppxPackage -DisableDevelopmentMode -Register "$($_.I ...                                         +                 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~                                                 + CategoryInfo          : NotSpecified: (C:\Program File...ppXManifest.xml:String) [Add-AppxPackage], Exception         + FullyQualifiedErrorId : DeploymentError,Microsoft.Windows.Appx.PackageManager.Commands.AddAppxPackageCommand                                                                                                                              Add-AppxPackage : Deployment failed with HRESULT: 0x80073D02, Paket, değiştirdiği kaynaklar şu anda kullanımda olduğund an yüklenemedi.                                                                                                         error 0x80073D02: Unable to install because the following apps need to be closed Microsoft.DesktopAppInstaller_1.25.340 .0_x64__8wekyb3d8bbwe.                                                                                                  NOTE: For additional information, look for [ActivityId] 63f5e961-a0e0-0003-d0ab-fe63e0a0db01 in the Event Log or use th e command line Get-AppPackageLog -ActivityID 63f5e961-a0e0-0003-d0ab-fe63e0a0db01                                       At line:17 char:38                                                                                                      + ...  | Foreach {Add-AppxPackage -DisableDevelopmentMode -Register "$($_.I ...                                         +                 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~                                                 + CategoryInfo          : NotSpecified: (C:\Program File...ppXManifest.xml:String) [Add-AppxPackage], Exception         + FullyQualifiedErrorId : DeploymentError,Microsoft.Windows.Appx.PackageManager.Commands.AddAppxPackageCommand

Add-AppxPackage : Deployment failed with HRESULT: 0x80073D02, Paket, değiştirdiği kaynaklar şu anda kullanımda olduğund
an yüklenemedi.
error 0x80073D02: Unable to install because the following apps need to be closed Microsoft.WindowsStore_22502.1401.4.0_
x64__8wekyb3d8bbwe.
NOTE: For additional information, look for [ActivityId] 63f5e961-a0e0-000e-0735-0164e0a0db01 in the Event Log or use th
e command line Get-AppPackageLog -ActivityID 63f5e961-a0e0-000e-0735-0164e0a0db01
At line:17 char:38
+ ...  | Foreach {Add-AppxPackage -DisableDevelopmentMode -Register "$($_.I ...
+                 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    + CategoryInfo          : NotSpecified: (C:\Program File...ppXManifest.xml:String) [Add-AppxPackage], Exception
    + FullyQualifiedErrorId : DeploymentError,Microsoft.Windows.Appx.PackageManager.Commands.AddAppxPackageCommand
 
Son düzenleme:

Bu konuyu görüntüleyen kullanıcılar

Technopat Haberler

Geri
Yukarı