diff --git a/winutil.ps1 b/winutil.ps1
index d1eb6b51..73fe2233 100644
--- a/winutil.ps1
+++ b/winutil.ps1
@@ -10346,6 +10346,25 @@ $sync.configs.tweaks = '{
"
]
},
+ "WPFTweaksRemoveCopilot": {
+ "Content": "Disables Microsoft Copilot",
+ "Description": "Disables MS Copilot AI built into Windows since 23H2.",
+ "category": "z__Advanced Tweaks - CAUTION",
+ "panel": "1",
+ "Order": "a025_",
+ "InvokeScript": [
+ "
+ Set-ItemProperty -Path \"HKCU:\\Software\\Microsoft\\Windows\\CurrentVersion\\Explorer\\Advanced\" -Name \"ShowCopilotButton\" -Type \"DWord\" -Value \"0\"
+ New-Item \"HKCU:\\SOFTWARE\\Policies\\Microsoft\\Windows\\WindowsCopilot\" -Force | New-ItemProperty -Name \"TurnOffWindowsCopilot\" -Value \"1\" -Force -Type \"DWord\"
+ "
+ ],
+ "UndoScript": [
+ "
+ Set-ItemProperty -Path \"HKCU:\\Software\\Microsoft\\Windows\\CurrentVersion\\Explorer\\Advanced\" -Name \"ShowCopilotButton\" -Type \"DWord\" -Value \"1\"
+ Remove-Item \"HKCU:\\SOFTWARE\\Policies\\Microsoft\\Windows\\WindowsCopilot\" -Force
+ "
+ ]
+ },
"WPFTweaksRemoveOnedrive": {
"Content": "Remove OneDrive",
"Description": "Copies OneDrive files to Default Home Folders and Uninstalls it.",
@@ -12513,6 +12532,7 @@ $inputXML = '
+
diff --git a/xaml/inputTweaks.xaml b/xaml/inputTweaks.xaml
index db7e918e..63db69c6 100644
--- a/xaml/inputTweaks.xaml
+++ b/xaml/inputTweaks.xaml
@@ -25,6 +25,7 @@
+