From 07514f80066a93b02b669338301618c931b4f29f Mon Sep 17 00:00:00 2001 From: zoicware <118035521+zoicware@users.noreply.github.com> Date: Sun, 2 Nov 2025 16:19:17 -0500 Subject: [PATCH] attempt to disable gaming copilot --- RemoveWindowsAi.ps1 | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/RemoveWindowsAi.ps1 b/RemoveWindowsAi.ps1 index 4292cce..917487e 100644 --- a/RemoveWindowsAi.ps1 +++ b/RemoveWindowsAi.ps1 @@ -370,6 +370,12 @@ function Disable-Registry-Keys { } } } + + #disable gaming copilot + #found from: https://github.com/meetrevision/playbook/issues/197 + #not sure this really does anything in my testing gaming copilot still appears + $command = "reg add 'HKLM\SOFTWARE\Microsoft\WindowsRuntime\ActivatableClassId\Microsoft.Xbox.GamingAI.Companion.Host.GamingCompanionHostOptions' /v 'ActivationType' /t REG_DWORD /d 0 /f" + Run-Trusted -command $command -psversion $psversion #force policy changes Write-Status -msg 'Applying Registry Changes...'