From a44ef1519cfa0584498d3563ee7903c6390e3327 Mon Sep 17 00:00:00 2001 From: zoicware <118035521+zoicware@users.noreply.github.com> Date: Tue, 26 Nov 2024 23:24:12 -0500 Subject: [PATCH] Disable Image Creator In Paint --- RemoveAi.ps1 | 3 +++ 1 file changed, 3 insertions(+) diff --git a/RemoveAi.ps1 b/RemoveAi.ps1 index e9ecd9a..1a590ec 100644 --- a/RemoveAi.ps1 +++ b/RemoveAi.ps1 @@ -30,6 +30,9 @@ foreach ($hive in $hives) { Reg.exe add "$hive\SOFTWARE\Policies\Microsoft\Windows\WindowsCopilot" /v 'TurnOffWindowsCopilot' /t REG_DWORD /d '1' /f *>$null Reg.exe add "$hive\SOFTWARE\Policies\Microsoft\Windows\WindowsAI" /v 'DisableAIDataAnalysis' /t REG_DWORD /d '1' /f *>$null Reg.exe add "$hive\SOFTWARE\Policies\Microsoft\Windows\WindowsAI" /v 'AllowRecallEnablement' /t REG_DWORD /d '0' /f *>$null + #disable ai image creator in paint + Reg.exe add "$hive\SOFTWARE\Policies\Microsoft\Windows\WindowsAI" /v 'DisableCocreator' /t REG_DWORD /d '1' /f *>$null + Reg.exe add "$hive\SOFTWARE\Policies\Microsoft\Windows\WindowsAI" /v 'DisableImageCreator' /t REG_DWORD /d '1' /f *>$null } Reg.exe add 'HKCU\Software\Microsoft\Windows\CurrentVersion\Explorer\Advanced' /v 'ShowCopilotButton' /t REG_DWORD /d '0' /f *>$null Reg.exe add 'HKCU\Software\Microsoft\input\Settings' /v 'InsightsEnabled' /t REG_DWORD /d '0' /f *>$null