Added option to disable Windows copilot, and some other minor changes

All changes:
* Added option to disable Windows Copilot
* Condensed options in custom mode
* Added new outlook app to appslist, it's not removed by default
* Added some missing info to README.md
This commit is contained in:
Raphire
2023-09-27 02:45:34 +02:00
parent b62b36263a
commit 14246951fa
5 changed files with 50 additions and 15 deletions

View File

@@ -0,0 +1,13 @@
Windows Registry Editor Version 5.00
; Disable Copilot button on taskbar
[HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\Advanced]
"ShowCopilotButton"=dword:00000000
; Disable Copilot service for current user
[HKEY_CURRENT_USER\Software\Policies\Microsoft\Windows\WindowsCopilot]
"TurnOffWindowsCopilot"=dword:00000001
; Disable Copilot service for all users
[HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Microsoft\Windows\WindowsCopilot]
"TurnOffWindowsCopilot"=dword:00000001

View File

@@ -0,0 +1,13 @@
Windows Registry Editor Version 5.00
; Enable Copilot button on taskbar
[HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\Advanced]
"ShowCopilotButton"=dword:00000001
; Enable Copilot service for current user
[HKEY_CURRENT_USER\Software\Policies\Microsoft\Windows\WindowsCopilot]
"TurnOffWindowsCopilot"=-
; Enable Copilot service for all users
[HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Microsoft\Windows\WindowsCopilot]
"TurnOffWindowsCopilot"=-