Advertisement
Python253

disable_windows_copilot

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