ChrisTitusTech / winutil

Chris Titus Tech's Windows Utility - Install Programs, Tweaks, Fixes, and Updates
MIT License
24.21k stars 1.47k forks source link

Disable/Enable copilot and old context menu toggles #1725

Open ghost opened 7 months ago

ghost commented 7 months ago

Is your feature request related to a problem? Please describe. Not everyone wants ai stuff on their pc, especially I believe most of the powerusers

Describe the solution you'd like Toggle for copilot

I guess these can be helpful for implementation https://github.com/Atlas-OS/Atlas/tree/main/src/playbook/Executables/AtlasDesktop/4.%20Optional%20Tweaks/Windows%20Copilot

extra: old context menu (right click) toggle can also be implemented, because the modern one is just oversimplified and unintuitive imo: https://github.com/Atlas-OS/Atlas/tree/main/src/playbook/Executables/AtlasDesktop/4.%20Optional%20Tweaks/Windows%2011%20Context%20Menu

Credits to atlas os

ourichermath commented 7 months ago

I agree with this. I just closed my browser and found 1/3 of my screen taken up with Copilot (my guess is Edge updated itself in the background and then ran Copilot). I had to go to the Group Policy Editor to turn the thing off.

ModernTTY commented 7 months ago

extra: old context menu (right click) toggle can also be implemented, because the modern one is just oversimplified and unintuitive imo: https://github.com/Atlas-OS/Atlas/tree/main/src/playbook/Executables/AtlasDesktop/4.%20Optional%20Tweaks/Windows%2011%20Context%20Menu

That already is in the toolbox in the tweaks section.

IMG_2217

SkylerWallace commented 7 months ago

This can be added to disable Copilot from Taskbar:

Set-ItemProperty -Path "HKCU:\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\Advanced" -Name "ShowCopilotButton" -Type "DWord" -Value "0"

Disable Copilot system-wide:

Set-ItemProperty -Path "HKLM:\SOFTWARE\Policies\Microsoft\Windows\WindowsCopilot" -Name "TurnOffWindowsCopilot" -Type "DWord" -Value "1"

Unfortunately I only found a group policy method for disabling Copilot system-wide, hopefully Microsoft adds a bonafide setting in the future.

ModernTTY commented 7 months ago

I am working on removing Copilot, PR coming soon it will completely uninstall Copilot not just unpin.

Kyationa commented 4 months ago

is it safe to do the classic right click menu?

Real-MullaC commented 4 months ago

is it safe to do the classic right click menu?

Yes it is.