Advertisement
Python253

turn_off_windows_copilot

Mar 18th, 2024
909
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
REG 0.68 KB | None | 0 0
  1. """
  2. === DISCLAIMER ===
  3. The following comments are for reference only.
  4. Do not include them in the saved script.
  5.  
  6. File Data:
  7. - Filename: turn_off_windows_copilot.reg
  8. - Version: 1.00
  9. - Author: Jeoi Reqi
  10.  
  11. Registry Modification Notes:
  12. - This '.reg' file disables Windows CoPilot AI by editing the Windows registry.
  13. - It is recommended to create a backup of the registry before making any changes.
  14. ==================
  15. """
  16.  
  17. Windows Registry Editor Version 5.00
  18.  
  19. [HKEY_CURRENT_USER\Software\Policies\Microsoft\Windows\WindowsCopilot]
  20. "TurnOffWindowsCopilot"=dword:00000001
  21.  
  22. [HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Microsoft\Windows\WindowsCopilot]
  23. "TurnOffWindowsCopilot"=dword:00000001
  24.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement