Skip to content

Commit

Permalink
feat: add optioon to disable Windows Copilot: closes undergroundwires…
Browse files Browse the repository at this point in the history
  • Loading branch information
selivan committed Oct 3, 2023
1 parent e5f6edf commit d44abe9
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions src/application/collections/windows.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7317,6 +7317,15 @@ actions:
-
category: Preinstalled
children:
-
name: Windows Copilot on Windows 11
docs: https://www.neowin.net/guides/how-to-turn-off-or-remove-windows-copilot-on-windows-11/
code: |-
reg add "HKLM\SOFTWARE\Policies\Microsoft\Windows\WindowsCopilot" /v "TurnOffWindowsCopilot" /t "REG_DWORD" /d "1" /f
reg add "HKCU\SOFTWARE\Policies\Microsoft\Windows\WindowsCopilot" /v "TurnOffWindowsCopilot" /t "REG_DWORD" /d "1" /f
revertCode: |-
reg delete "HKLM\SOFTWARE\Policies\Microsoft\Windows\WindowsCopilot" /v "TurnOffWindowsCopilot" /f 2>nul
reg delete "HKCU\SOFTWARE\Policies\Microsoft\Windows\WindowsCopilot" /v "TurnOffWindowsCopilot" /f 2>nul
-
name: DirectX Configuration Database capability
call:
Expand Down

0 comments on commit d44abe9

Please sign in to comment.