From 88e889c75f0d4e6e76a8a6a67863a50a3a3630e2 Mon Sep 17 00:00:00 2001 From: zoicware <118035521+zoicware@users.noreply.github.com> Date: Thu, 5 Mar 2026 00:17:33 -0500 Subject: [PATCH] enable supressfirstlaunch for gaming copilot to hide on new machines --- RemoveWindowsAi.ps1 | 3 +++ 1 file changed, 3 insertions(+) diff --git a/RemoveWindowsAi.ps1 b/RemoveWindowsAi.ps1 index e6c07ea..32794d2 100644 --- a/RemoveWindowsAi.ps1 +++ b/RemoveWindowsAi.ps1 @@ -1031,6 +1031,9 @@ function Disable-Registry-Keys { #this prop needs to be true to hide from favorites $jsonObj.profile.settingsStorage.$($hasGamingCopilot.Name).$($prop.Name) = $true } + elseif ($prop.Name -eq 'suppressFirstLaunch') { + $jsonObj.profile.settingsStorage.$($hasGamingCopilot.Name).$($prop.Name) = $true + } else { $jsonObj.profile.settingsStorage.$($hasGamingCopilot.Name).$($prop.Name) = $false }