Seite 1 von 1

Windows 11 25H2: Microsoft Store will nach Update immer wieder die Copilot mit WinAppRuntime.Main.1.8 aktualisieren

Verfasst: 21.06.2026, 20:41
von Thalmi
Kürzlich, am Donnerstag oder Freitag, erhielt ich auf allen meiner 3 Geräte ein Microsoft Store Update auf die neuste Version 22605.1401.12.0. Seither spinnt der Microsoft Store und auch ein Löschen des Store-Caches mit wsreset.exe als Administrator, ein Zurücksetzen des Microsoft Stores sowie eine De- und Neuinstallation lösen das Problem nicht, welches auf meinen 3 Laptops Folgendes ist:
Suche ich im Microsoft Store manuell nach Updates, erscheint immer Copilot Update verfügbar. Lade ich das Update herunter, führt es das Update zusammen mit WinAppRuntime.Main.1.8 aus und beide Apps erscheinen unter Downlaods.
Kaum schliesse ich den Microsoft Store und öffne ich ihn wieder erneut, erscheinen beide Apps nicht mehr unter Downloads und wenn ich ereut manuell nach Updates suche, wird mir die Copilot App wieder zum Update angeboten (Update verfügbar).
Das Ganze ist wie eine Endlosschlaufe. Auch eine De- und Neuinstallation der Copilot App via Microsoft Store löst das Problem nicht.
Vor 1 1/2 Wochen hatte ich im Store bereits grössere Probleme bei der WinAppRuntime.Main.1.8 und der WinAppRuntime.Singleton App. Das Update konnte nicht heruntergeladen werden und es gab immer eine Fehlermeldung heraus: Es ist ein Problem aufgetreten... Bitte versuchen Sie es später erneut. Nach über 30 Versuchen klappte irgendwann der Download per Zufall. Ich musste jedoch zusätzlich eine Reparaturinstallation von Windows 11 25H2 auf allen Geräten durchführen, damit dieses Update im Store nicht wieder erneut angeboten wurde. Und nun bin ich 1 Woche später wieder fast gleich weit, dass die Copilot App und scheinbar WinAppRuntime.Main.1.8 wieder Aktualisierungsprobleme haben.
Sind meine WinAppRuntime.Main.1.8 und meine WinAppRuntime.Singleton-Apps veraltet? Wo kann ich diese manuell updaten?
Kann mir Jemand helfen, dieses Problem mit der Copilot-App zu lösen?
Screenshot (21).png
Screenshot (34).png
Screenshot (8).png

Re: Windows 11 25H2: Microsoft Store will nach Update immer wieder die Copilot mit WinAppRuntime.Main.1.8 aktualisieren

Verfasst: 21.06.2026, 20:48
von Holgi
bei mir nutze ich das hier. Keine Ahnung, ob das bei dir passt. Auf eigene Gefahr!!
Disable-Copilot.cmd

Code: Alles auswählen

@echo off
setlocal EnableExtensions

:: =========================================================
:: Disable-Copilot-Hardening.cmd
:: CMD-basiertes Hardening gegen Microsoft Copilot App
:: =========================================================

echo.
echo [1/8] Setze Policies gegen Consumer-/Cloud-Content ...
reg add "HKLM\SOFTWARE\Policies\Microsoft\Windows\CloudContent" /v DisableWindowsConsumerFeatures /t REG_DWORD /d 1 /f >NUL 2>&1
reg add "HKLM\SOFTWARE\Policies\Microsoft\Windows\CloudContent" /v DisableCloudOptimizedContent /t REG_DWORD /d 1 /f >NUL 2>&1
reg add "HKLM\SOFTWARE\Policies\Microsoft\Windows\CloudContent" /v DisableConsumerAccountStateContent /t REG_DWORD /d 1 /f >NUL 2>&1
reg add "HKLM\SOFTWARE\Policies\Microsoft\Windows\CloudContent" /v DisableSoftLanding /t REG_DWORD /d 1 /f >NUL 2>&1

echo [2/8] Setze Legacy-Copilot-Policies ...
reg add "HKLM\SOFTWARE\Policies\Microsoft\Windows\WindowsCopilot" /v TurnOffWindowsCopilot /t REG_DWORD /d 1 /f >NUL 2>&1
reg add "HKCU\SOFTWARE\Policies\Microsoft\Windows\WindowsCopilot" /v TurnOffWindowsCopilot /t REG_DWORD /d 1 /f >NUL 2>&1

:: Optional: Taskleisten-/UX-bezogene Nebeneffekte minimieren
reg add "HKLM\SOFTWARE\Microsoft\PolicyManager\default\Experience\AllowCopilot" /v value /t REG_DWORD /d 0 /f >NUL 2>&1
reg add "HKLM\SOFTWARE\Policies\Microsoft\Edge" /v HubsSidebarEnabled /t REG_DWORD /d 0 /f >NUL 2>&1

echo [3/8] Deaktiviere automatische Store-App-Updates ...
reg add "HKLM\SOFTWARE\Policies\Microsoft\WindowsStore" /v AutoDownload /t REG_DWORD /d 2 /f >NUL 2>&1

:: OPTIONAL aber fuer "dauerhaft" meist sinnvoll:
:: sperrt den Microsoft Store komplett; dadurch sind auch Store-App-Updates blockiert
echo [4/8] Sperre Microsoft Store ...
reg add "HKLM\SOFTWARE\Policies\Microsoft\WindowsStore" /v RemoveWindowsStore /t REG_DWORD /d 1 /f >NUL 2>&1
reg add "HKCU\SOFTWARE\Policies\Microsoft\WindowsStore" /v RemoveWindowsStore /t REG_DWORD /d 1 /f >NUL 2>&1

echo [5/8] Entferne installierte Copilot-App(s) fuer vorhandene Benutzer ...
powershell -NoProfile -ExecutionPolicy Bypass -Command "Get-AppxPackage -AllUsers *Copilot* | %% { try { Remove-AppxPackage -Package $_.PackageFullName -AllUsers -ErrorAction Stop } catch {} }" >NUL 2>&1

echo [6/8] Entferne Copilot aus Provisioned Packages (fuer neue Benutzer) ...
powershell -NoProfile -ExecutionPolicy Bypass -Command "Get-AppxProvisionedPackage -Online | ? { $_.DisplayName -like '*Copilot*' } | %% { try { Remove-AppxProvisionedPackage -Online -PackageName $_.PackageName -ErrorAction Stop | Out-Null } catch {} }" >NUL 2>&1

echo [7/8] Erstelle Persistenz-Script und Scheduled Task ...
if not exist "C:\ProgramData\CopilotHardening" md "C:\ProgramData\CopilotHardening" >NUL 2>&1

> "C:\ProgramData\CopilotHardening\Enforce-CopilotHardening.cmd" (
    echo @echo off
    echo reg add "HKLM\SOFTWARE\Policies\Microsoft\Windows\CloudContent" /v DisableWindowsConsumerFeatures /t REG_DWORD /d 1 /f ^>NUL 2^>^&1
    echo reg add "HKLM\SOFTWARE\Policies\Microsoft\Windows\CloudContent" /v DisableCloudOptimizedContent /t REG_DWORD /d 1 /f ^>NUL 2^>^&1
    echo reg add "HKLM\SOFTWARE\Policies\Microsoft\Windows\CloudContent" /v DisableConsumerAccountStateContent /t REG_DWORD /d 1 /f ^>NUL 2^>^&1
    echo reg add "HKLM\SOFTWARE\Policies\Microsoft\Windows\CloudContent" /v DisableSoftLanding /t REG_DWORD /d 1 /f ^>NUL 2^>^&1
    echo reg add "HKLM\SOFTWARE\Policies\Microsoft\Windows\WindowsCopilot" /v TurnOffWindowsCopilot /t REG_DWORD /d 1 /f ^>NUL 2^>^&1
    echo reg add "HKLM\SOFTWARE\Policies\Microsoft\WindowsStore" /v AutoDownload /t REG_DWORD /d 2 /f ^>NUL 2^>^&1
    echo reg add "HKLM\SOFTWARE\Policies\Microsoft\WindowsStore" /v RemoveWindowsStore /t REG_DWORD /d 1 /f ^>NUL 2^>^&1
    echo reg add "HKLM\SOFTWARE\Policies\Microsoft\Edge" /v HubsSidebarEnabled /t REG_DWORD /d 0 /f ^>NUL 2^>^&1
    echo powershell -NoProfile -ExecutionPolicy Bypass -Command "Get-AppxPackage -AllUsers ^| Where-Object { $_.Name -eq 'Microsoft.Copilot' -or $_.Name -like '*Copilot*' -or $_.PackageFamilyName -like '*Microsoft.Copilot*' } ^| ForEach-Object { try { Remove-AppxPackage -Package $_.PackageFullName -AllUsers -ErrorAction Stop } catch { try { Remove-AppxPackage -Package $_.PackageFullName -ErrorAction SilentlyContinue } catch {} } }" ^>NUL 2^>^&1
    echo powershell -NoProfile -ExecutionPolicy Bypass -Command "$pkgs = Get-AppxProvisionedPackage -Online ^| Where-Object { $_.DisplayName -eq 'Microsoft.Copilot' -or $_.DisplayName -like '*Copilot*' -or $_.PackageName -like '*Microsoft.Copilot*' }; foreach ($p in $pkgs) { try { Remove-AppxProvisionedPackage -Online -PackageName $p.PackageName -ErrorAction Stop ^| Out-Null } catch {} }" ^>NUL 2^>^&1
    echo exit /b 0
)

schtasks /Delete /TN "Enforce-CopilotHardening" /F >NUL 2>&1
schtasks /Create /TN "Enforce-CopilotHardening" /SC ONSTART /RU SYSTEM /RL HIGHEST /TR "\"C:\ProgramData\CopilotHardening\Enforce-CopilotHardening.cmd\"" /F >NUL 2>&1
pause
echo [8/8] Optional: AppLocker-Regel gegen Microsoft.Copilot setzen ...
sc query AppIDSvc | find /I "RUNNING" >NUL
if errorlevel 1 (
    sc config AppIDSvc start=auto >NUL 2>&1
    net start AppIDSvc >NUL 2>&1
)

> "C:\ProgramData\CopilotHardening\Copilot-AppLocker.xml" (
    echo ^<?xml version="1.0" encoding="utf-8"?^>
    echo ^<AppLockerPolicy Version="1"^>
    echo   ^<RuleCollection Type="Appx" EnforcementMode="Enabled"^>
    echo     ^<FilePublisherRule Id="{A1B2C3D4-E5F6-4711-9000-000000000001}" Name="Deny Microsoft Copilot" Description="Block Microsoft Copilot packaged app" UserOrGroupSid="S-1-1-0" Action="Deny"^>
    echo       ^<Conditions^>
    echo         ^<FilePublisherCondition PublisherName="O=MICROSOFT CORPORATION, L=REDMOND, S=WASHINGTON, C=US" ProductName="MICROSOFT.COPILOT" BinaryName="*"^>
    echo           ^<BinaryVersionRange LowSection="0.0.0.0" HighSection="*" /^>
    echo         ^</FilePublisherCondition^>
    echo       ^</Conditions^>
    echo     ^</FilePublisherRule^>
    echo   ^</RuleCollection^>
    echo ^</AppLockerPolicy^>
)

powershell -NoProfile -ExecutionPolicy Bypass -Command ^
"try { Set-AppLockerPolicy -XmlPolicy 'C:\ProgramData\CopilotHardening\Copilot-AppLocker.xml' -Merge -ErrorAction Stop } catch { exit 0 }" >NUL 2>&1

echo.
echo Fertig.
echo Ein Neustart wird empfohlen.
echo.
echo Hinweise:
echo - Wenn AppLocker auf der Edition / dem Geraet nicht greift, bleiben die anderen Schutzmassnahmen aktiv.
echo - Fuer maximale Wirkung das Script moeglichst bereits waehrend Deployment / vor Benutzeranmeldung ausfuehren.
echo.
exit /b 0
bei mir kommt so etwas jedenfalls nicht im Store.