mirror of
https://github.com/Raphire/Win11Debloat.git
synced 2026-02-16 23:46:25 +00:00
Add option to disable BitLocker automatic device encryption (#451)
This commit is contained in:
@@ -609,6 +609,18 @@
|
||||
"MinVersion": null,
|
||||
"MaxVersion": null
|
||||
},
|
||||
{
|
||||
"FeatureId": "DisableBitlockerAutoEncryption",
|
||||
"Label": "BitLocker automatic device encryption",
|
||||
"Category": "System",
|
||||
"Action": "Disable",
|
||||
"RegistryKey": "Disable_Bitlocker_Auto_Encryption.reg",
|
||||
"ApplyText": "> Disabling BitLocker automatic device encryption...",
|
||||
"UndoAction": "Enable",
|
||||
"RegistryUndoKey": "Enable_Bitlocker_Auto_Encryption.reg",
|
||||
"MinVersion": 22000,
|
||||
"MaxVersion": null
|
||||
},
|
||||
{
|
||||
"FeatureId": "DisableModernStandbyNetworking",
|
||||
"Label": "Modern Standby network connectivity",
|
||||
|
||||
1
Get.ps1
1
Get.ps1
@@ -23,6 +23,7 @@ param (
|
||||
[switch]$DisableGameBarIntegration,
|
||||
[switch]$DisableTelemetry,
|
||||
[switch]$DisableFastStartup,
|
||||
[switch]$DisableBitlockerAutoEncryption,
|
||||
[switch]$DisableModernStandbyNetworking,
|
||||
[switch]$DisableBing,
|
||||
[switch]$DisableDesktopSpotlight,
|
||||
|
||||
@@ -108,6 +108,7 @@ Below is an overview of the key features and functionality offered by Win11Deblo
|
||||
- Turn off Enhance Pointer Precision, also known as mouse acceleration.
|
||||
- Disable the Sticky Keys keyboard shortcut. (W11 only)
|
||||
- Disable fast start-up to ensure a full shutdown.
|
||||
- Disable BitLocker automatic device encryption.
|
||||
- Disable network connectivity during Modern Standby to reduce battery drain. (W11 only)
|
||||
|
||||
#### Windows Update
|
||||
|
||||
4
Regfiles/Disable_Bitlocker_Auto_Encryption.reg
Normal file
4
Regfiles/Disable_Bitlocker_Auto_Encryption.reg
Normal file
@@ -0,0 +1,4 @@
|
||||
Windows Registry Editor Version 5.00
|
||||
|
||||
[HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\BitLocker]
|
||||
"PreventDeviceEncryption"=dword:00000001
|
||||
4
Regfiles/Sysprep/Disable_Bitlocker_Auto_Encryption.reg
Normal file
4
Regfiles/Sysprep/Disable_Bitlocker_Auto_Encryption.reg
Normal file
@@ -0,0 +1,4 @@
|
||||
Windows Registry Editor Version 5.00
|
||||
|
||||
[HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\BitLocker]
|
||||
"PreventDeviceEncryption"=dword:00000001
|
||||
4
Regfiles/Undo/Enable_Bitlocker_Auto_Encryption.reg
Normal file
4
Regfiles/Undo/Enable_Bitlocker_Auto_Encryption.reg
Normal file
@@ -0,0 +1,4 @@
|
||||
Windows Registry Editor Version 5.00
|
||||
|
||||
[HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\BitLocker]
|
||||
"PreventDeviceEncryption"=-
|
||||
@@ -25,6 +25,7 @@ param (
|
||||
[switch]$DisableGameBarIntegration,
|
||||
[switch]$DisableTelemetry,
|
||||
[switch]$DisableFastStartup,
|
||||
[switch]$DisableBitlockerAutoEncryption,
|
||||
[switch]$DisableModernStandbyNetworking,
|
||||
[switch]$DisableBing,
|
||||
[switch]$DisableDesktopSpotlight,
|
||||
|
||||
Reference in New Issue
Block a user