Add option to disable WSAIFabric service from automatically starting (#501)

This commit is contained in:
Jeffrey
2026-03-07 20:28:58 +01:00
committed by GitHub
parent ad0b49060a
commit 70f8170e81
8 changed files with 32 additions and 0 deletions

View File

@@ -476,6 +476,19 @@
"MinVersion": 22621, "MinVersion": 22621,
"MaxVersion": null "MaxVersion": null
}, },
{
"FeatureId": "DisableAISvcAutoStart",
"Label": "AI service from starting automatically",
"ToolTip": "This will set the WSAIFabricSvc service to manual startup, preventing the service from starting automatically with Windows.",
"Category": "AI",
"Action": "Prevent",
"RegistryKey": "Disable_AI_Service_Auto_Start.reg",
"ApplyText": "> Preventing AI service from starting automatically...",
"UndoAction": "Allow",
"RegistryUndoKey": "Enable_AI_Service_Auto_Start.reg",
"MinVersion": 22621,
"MaxVersion": null
},
{ {
"FeatureId": "DisableDVR", "FeatureId": "DisableDVR",
"Label": "Xbox game/screen recording", "Label": "Xbox game/screen recording",

View File

@@ -45,6 +45,10 @@
"Name": "DisableClickToDo", "Name": "DisableClickToDo",
"Value": true "Value": true
}, },
{
"Name": "DisableAISvcAutoStart",
"Value": true
},
{ {
"Name": "DisableWidgets", "Name": "DisableWidgets",
"Value": true "Value": true

View File

@@ -99,6 +99,7 @@ Below is an overview of the key features and functionality offered by Win11Deblo
- Disable & remove Microsoft Copilot. - Disable & remove Microsoft Copilot.
- Disable Windows Recall. (W11 only) - Disable Windows Recall. (W11 only)
- Disable Click to Do, AI text & image analysis tool. (W11 only) - Disable Click to Do, AI text & image analysis tool. (W11 only)
- Prevent AI service (WSAIFabricSvc) from starting automatically. (W11 only)
- Disable AI Features in Edge. (W11 only) - Disable AI Features in Edge. (W11 only)
- Disable AI Features in Paint. (W11 only) - Disable AI Features in Paint. (W11 only)
- Disable AI Features in Notepad. (W11 only) - Disable AI Features in Notepad. (W11 only)

View File

@@ -0,0 +1,4 @@
Windows Registry Editor Version 5.00
[HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\WSAIFabricSvc]
"Start"=dword:00000003

View File

@@ -0,0 +1,4 @@
Windows Registry Editor Version 5.00
[HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\WSAIFabricSvc]
"Start"=dword:00000003

View File

@@ -0,0 +1,4 @@
Windows Registry Editor Version 5.00
[HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\WSAIFabricSvc]
"Start"=dword:00000002

View File

@@ -60,6 +60,7 @@ param (
[switch]$DisableCopilot, [switch]$DisableCopilot,
[switch]$DisableRecall, [switch]$DisableRecall,
[switch]$DisableClickToDo, [switch]$DisableClickToDo,
[switch]$DisableAISvcAutoStart,
[switch]$DisablePaintAI, [switch]$DisablePaintAI,
[switch]$DisableNotepadAI, [switch]$DisableNotepadAI,
[switch]$DisableEdgeAI, [switch]$DisableEdgeAI,

View File

@@ -63,6 +63,7 @@ param (
[switch]$DisableCopilot, [switch]$DisableCopilot,
[switch]$DisableRecall, [switch]$DisableRecall,
[switch]$DisableClickToDo, [switch]$DisableClickToDo,
[switch]$DisableAISvcAutoStart,
[switch]$DisablePaintAI, [switch]$DisablePaintAI,
[switch]$DisableNotepadAI, [switch]$DisableNotepadAI,
[switch]$DisableEdgeAI, [switch]$DisableEdgeAI,