mirror of
https://github.com/Raphire/Win11Debloat.git
synced 2026-04-03 14:06:27 +00:00
Add option to disable WSAIFabric service from automatically starting (#501)
This commit is contained in:
@@ -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",
|
||||||
|
|||||||
@@ -45,6 +45,10 @@
|
|||||||
"Name": "DisableClickToDo",
|
"Name": "DisableClickToDo",
|
||||||
"Value": true
|
"Value": true
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
"Name": "DisableAISvcAutoStart",
|
||||||
|
"Value": true
|
||||||
|
},
|
||||||
{
|
{
|
||||||
"Name": "DisableWidgets",
|
"Name": "DisableWidgets",
|
||||||
"Value": true
|
"Value": true
|
||||||
|
|||||||
@@ -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)
|
||||||
|
|||||||
4
Regfiles/Disable_AI_Service_Auto_Start.reg
Normal file
4
Regfiles/Disable_AI_Service_Auto_Start.reg
Normal file
@@ -0,0 +1,4 @@
|
|||||||
|
Windows Registry Editor Version 5.00
|
||||||
|
|
||||||
|
[HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\WSAIFabricSvc]
|
||||||
|
"Start"=dword:00000003
|
||||||
4
Regfiles/Sysprep/Disable_AI_Service_Auto_Start.reg
Normal file
4
Regfiles/Sysprep/Disable_AI_Service_Auto_Start.reg
Normal file
@@ -0,0 +1,4 @@
|
|||||||
|
Windows Registry Editor Version 5.00
|
||||||
|
|
||||||
|
[HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\WSAIFabricSvc]
|
||||||
|
"Start"=dword:00000003
|
||||||
4
Regfiles/Undo/Enable_AI_Service_Auto_Start.reg
Normal file
4
Regfiles/Undo/Enable_AI_Service_Auto_Start.reg
Normal file
@@ -0,0 +1,4 @@
|
|||||||
|
Windows Registry Editor Version 5.00
|
||||||
|
|
||||||
|
[HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\WSAIFabricSvc]
|
||||||
|
"Start"=dword:00000002
|
||||||
@@ -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,
|
||||||
|
|||||||
@@ -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,
|
||||||
|
|||||||
Reference in New Issue
Block a user